shutting server down on linux system
shutting server down on linux system
How do i shut down the free basic version on a linux system?
You can shut it down remotely from a windows or Macintosh machine.
Just run the AdminTool, and in the first screen you see there's a big "Halt" button.
If you don't use the AdminTool you must kill the process, like this:
Where processId is the number assigned by the operating system. How to find it? Type:
this will list all the java applications running with their process ids. Look for SmartFoxServer and kill it.
hope it helps
Just run the AdminTool, and in the first screen you see there's a big "Halt" button.
If you don't use the AdminTool you must kill the process, like this:
Code: Select all
kill processId
Code: Select all
ps aux |grep java
hope it helps