Wiki source code of Starting And Stopping The iSymphony Server
Last modified by michaely on 2021/09/09 20:55
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | **//On this page~://** | ||
| 2 | |||
| 3 | |||
| 4 | |||
| 5 | {{toc/}} | ||
| 6 | |||
| 7 | Starting and stopping the iSymphony Server can be done via the server command line. | ||
| 8 | |||
| 9 | = Starting The iSymphony Server = | ||
| 10 | |||
| 11 | To start the iSymphony Server run the following command. The command will differ depending on the type of install you have. | ||
| 12 | |||
| 13 | === RPM === | ||
| 14 | |||
| 15 | {{code language="bash"}} | ||
| 16 | service iSymphonyServerV3 start | ||
| 17 | {{/code}} | ||
| 18 | |||
| 19 | === Tarball === | ||
| 20 | |||
| 21 | {{code language="bash"}} | ||
| 22 | /opt/isymphony3/server/startup.sh | ||
| 23 | {{/code}} | ||
| 24 | |||
| 25 | = Stopping The iSymphony Server = | ||
| 26 | |||
| 27 | To stop the iSymphony Server run the following command. The command will differ depending on the type of install you have. | ||
| 28 | |||
| 29 | === RPM === | ||
| 30 | |||
| 31 | {{code language="bash"}} | ||
| 32 | service iSymphonyServerV3 stop | ||
| 33 | {{/code}} | ||
| 34 | |||
| 35 | === Tarball === | ||
| 36 | |||
| 37 | {{code language="bash"}} | ||
| 38 | /opt/isymphony3/server/shutdown.sh | ||
| 39 | {{/code}} | ||
| 40 | |||
| 41 | = Restarting The iSymphony Server = | ||
| 42 | |||
| 43 | To restart the iSymphony Server run the following commands. The commands will differ depending on the type of install you have. | ||
| 44 | |||
| 45 | === RPM === | ||
| 46 | |||
| 47 | {{code language="bash"}} | ||
| 48 | service iSymphonyServerV3 restart | ||
| 49 | {{/code}} | ||
| 50 | |||
| 51 | === Tarball === | ||
| 52 | |||
| 53 | {{code language="bash"}} | ||
| 54 | /opt/isymphony3/server/shutdown.sh | ||
| 55 | /opt/isymphony3/server/startup.sh | ||
| 56 | {{/code}} | ||
| 57 | |||
| 58 | = Checking The Status Of The iSymphony Server = | ||
| 59 | |||
| 60 | To check to see if the iSymphony Server is running or not run the following command: | ||
| 61 | |||
| 62 | {{info}} | ||
| 63 | This command can only be used when you are using an RPM based install of iSymphony | ||
| 64 | {{/info}} | ||
| 65 | |||
| 66 | {{code language="bash"}} | ||
| 67 | service iSymphonyServerV3 status | ||
| 68 | {{/code}} |