Starting and Stopping FME Server Manually
![Closed](../../Skins/Default/Stylesheets/Images/transparent.gif)
Although the FME Server System Services start automatically, you can start and stop the services manually in the following ways:
- From the Services window (the procedure for accessing the services may vary by Windows version):
Control Panel > Administrative Tools > Services
Or
Start > Run > services.msc
In the Services window, select the FME Server Application Server, FME Server Core, FME Server Database, or FME Server Engines, and start or stop as required.
Note: On Windows 8, you must be running as Administrator to start or stop the FME Server System Services.
![Closed](../../Skins/Default/Stylesheets/Images/transparent.gif)
Although you can configure FME Server to start automatically, you can start it manually by running the following shell script as the root user:
<FMEServerDir>/Server/startServer.sh
This script starts all the FME Server System Services in the necessary order. Alternatively, to start each service individually, run the following scripts, located in the same directory:
startCore.sh
: FME Server Core servicestartEngines.sh
: FME EnginesstartDatabaseServer.sh
: FME Server DatabasestartApplicationServer.sh
: FME Server Web Application ServerstartWebSocketServer.sh
: FME Server WebSocket ServerstartCleanup.sh
: FME Server Cleanup servicestartRootServices.sh
- Starts all the services that run as the root user. This script callsstartWebSocketServer.sh
,startCleanup.sh
, andstartApplicationServer.sh
.
To stop FME Server, run the following script as the root user:
<FMEServerDir>/Server/stopServer.sh
Alternatively, stop the services individually with these scripts:
stopCore.sh
stopEngines.sh
stopDatabaseServer.sh
stopApplicationServer.sh
stopWebSocketServer.sh
stopCleanup.sh
stopRootServices.sh