Manager Service check
DFServer
- The server runs a number of processes based on the values set in the configuration file (/usr/local/dfserver/conf/config.xml).
[root@DeepFinder license]# ps -ef | grep -E "server\s(worker|master)"
root 210559 1 0 Jan03 ? 00:00:36 server master
root 210560 210559 0 Jan03 ? 00:01:30 server worker tcp -p 10013
root 210561 210559 0 Jan03 ? 00:01:13 server worker ssl -p 10014
- The Server can be controlled using the SERVICE command.
[root@localhost~]# service dfserver start
- When starting the Server, a Bind Error may occur if previous processes were not terminated properly.
[root@localhost~]# service dfserver stop
[root@localhost~]# ps -ef | grep -E "server\s(worker|master)"
[root@localhost~]# service dfserver start
For other issues, please check the log file (/usr/local/dfserver/log/server.log) or contact Secuon Cloud (tech@secuon.co.kr).
DB
- Check Postgres
[root@localhost~]# ps –ef | grep postgres
- Postgres can be controlled using the Service command.
[root@localhost~]# service dfserver-postgres start
- Check Elastic Search
[root@localhost~]# ps –ef | elastic
- Elastic Search can be controlled using the Service command.
[root@localhost~]# service dfserver-elastic start
API
- The API is serviced via uwsgi and can be checked using the PS command.
[root@localhost~]# ps –ef | grep uwsgi
- The API can be controlled using the SERVICE command.
[root@localhost~]# service dfserver-uwsgi start
Nginx
- Nginx is installed automatically during the API installation and can be checked using the PS command.
[root@localhost~]# ps –ef | grep nginx
- Nginx can be controlled using the Service command.
[root@localhost~]# service dfserver-nginx start
Scheduler(Tomcat)
- The Scheduler can be checked using the PS command.
[root@localhost~]# ps –ef | grep tomcat
- The Scheduler can be controlled using the Service command.
[root@localhost~]# service dfserver-tomcat start