Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • It is strongly recommended that you are not logged in as root
  • It is not mandatory to install JADE with root permissions.
  • The setup.sh script has the option -u
    • If you use the option -u then the installer is started with the current user.
      In this case, you have to make sure that this user has sufficient write permissions to create the installation path.
    • If you don't use the option -u then the installer calls sudo to get root permissions. The current user has to be configured as sudoer.
      In this case the installation path is arbitrary.
Code Block
languagebash
titleSetup with option -u
[test@wilma jade_client.1.8-RC1]$ ./setup.sh -u jade_client_install.xml
java -Dizpack.mode=privileged -jar ./jade_client.1.8.jar jade_client_install.xml
[ Starting automated installation ]
[ Starting to unpack ]
[ Processing package: package.jade_client (1/1) ]
[ Unpacking finished ]
[ Starting processing ]
+-----------------------------------------------------------
|   Update jar files in ./lib
+-----------------------------------------------------------
... trying to delete obsolete jar files
... trying to install new SOS jar files
... trying to update 3rd-party jar files
... done
+-----------------------------------------------------------
|   Change owner in /home/test/sos-berlin.com/jade/jade_client.1.8 to test
+-----------------------------------------------------------
... nothing to do
[ Processing finished ]
[ Writing the uninstaller data ... ]
[ Automated installation done ]
Code Block
languagebash
titleSetup without option -u
[test@wilma jade_client.1.8-RC1]$ ./setup.sh jade_client_install.xml
sudo java -jar ./jade_client.1.8.jar jade_client_install.xml
Password:
[ Starting automated installation ]
[ Starting to unpack ]
[ Processing package: package.jade_client (1/1) ]
[ Unpacking finished ]
[ Starting processing ]
+-----------------------------------------------------------
|   Update jar files in ./lib
+-----------------------------------------------------------
... trying to delete obsolete jar files
... trying to install new SOS jar files
... trying to update 3rd-party jar files
... done
+-----------------------------------------------------------
|   Change owner in /home/test/sos-berlin.com/jade/jade_client.1.8 to test
+-----------------------------------------------------------
... the user group of "test" is "test".
... done
[ Processing finished ]
[ Writing the uninstaller data ... ]
[ Automated installation done ]

...