|
Installing ElectroServer on a Unix server that supports RPM files is quite simple. The server will deploy the correct version of the Java runtime for you automatically.
| 2. | Pull up a command-prompt on your server.
You can do this with telnet, SSH, or any number of other techniques. |
| 3. | Navigate to the folder where you saved the RPM file. |
| 4. | Run the following command, replacing <file name> with the actual name of the file you downloaded:
rpm -i <file name> |
| 5. | That's it!
The server and JVM will deploy automatically into the "/opt/ElectroServer_<Version>" folder. To start the server, you simply need to execute "./ElectroServer" (without the quotes) from within that folder.
To prevent the server from stopping when you close the console, you need to use the nohup command. It would look like this in that case:
nohup ./ElectroServer &
|
|