3. How to install/upgrade/remove mfserv metwork module (with internet access)¶
3.1. Prerequisites¶
You must:
have configured the metwork yum repository. Please see the corresponding document document to do that.
have an internet access on this computer
3.2. Install mfserv metwork module¶
3.3. Full installation¶
You just have to execute the following command (as root
user):
yum install metwork-mfserv
3.4. Minimal installation¶
If you prefer to start with a minimal installation, you have to execute the following command
(as root
user):
yum install metwork-mfserv-minimal
3.5. Optional Addons¶
3.5.1. Optional dependencies addons¶
# To install some devtools
yum install metwork-mfext-layer-devtools
yum install metwork-mfext-layer-python3_devtools
yum install metwork-mfext-layer-python3_devtools_jupyter
# To install some scientific libraries
yum install metwork-mfext-layer-scientific
yum install metwork-mfext-layer-python3_scientific
# To install python2 support
# (including corresponding scientific and devtools addons)
yum install metwork-mfext-python2
yum install metwork-mfext-python2_scientific
yum install metwork-mfext-python2_devtools
3.5.2. Optional mfserv addons¶
# To install python2 support
# (see above to install full scientific and devtools support)
yum install metwork-mfserv-python2
# To install nodejs support
yum install metwork-mfserv-nodejs
3.6. Services¶
You can start corresponding services with the root command:
service metwork start
Or you can also reboot your computer (because metwork services are started automatically on boot).
3.7. Uninstall mfserv metwork module¶
To uninstall mfserv metwork module, please stop corresponding metwork services with the root
command:
service metwork stop mfserv
Then, use the following command (still as root
user):
yum remove "metwork-mfserv*"
3.8. Upgrade mfserv metwork module¶
To upgrade mfserv metwork module, use the following commands (still as root
user):
# We stop mfserv services
service metwork stop mfserv
# We upgrade mfserv metwork module
yum upgrade "metwork-mfserv*"
# We start mfserv services
service metwork start mfserv
3.9. Uninstall all metwork modules¶
To uninstall all metwork modules, use following root commands:
# We stop metwork services
service metwork stop
# we remove metwork modules
yum remove "metwork-*"
3.10. Upgrade all metwork modules¶
The same idea applies to upgrade.
For example, to upgrade all metwork modules on a computer, use following root commands:
# We stop metwork services
service metwork stop
# We upgrade metwork modules
yum upgrade "metwork-*"
# We start metwork services
service metwork start