Starting and Stopping FME Server Manually
Although the FME Server 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, FME Server Engines, or FME Server SMTP Relay entry, and start or stop as required.
Note: On Windows 8, you must be running as Administrator to start or stop the FME Server services.
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 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 servicestartDatabaseServer.sh
: FME Server DatabasestartApplicationServer.sh
: FME Server Web Application ServerstartFMEServerSMTPRelay.sh
: FME Server SMTP Relay servicestartWebSocketServer.sh
: FME Server WebSocket ServerstartCleanup.sh
: FME Server Cleanup service
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
stopDatabaseServer.sh
stopApplicationServer.sh
stopFMEServerSMTPRelay.sh
stopWebSocketServer.sh
stopCleanup.sh