Plesk for Linux
kb: technical
ABT: Group B
Applicable to:
- Plesk Onyx for Linux
- Plesk for Linux
Symptoms
-
nginx fails to start:
# service nginx starts:
nginx: [emerg] bind() to 203.0.113.2:443 failed (98: Address already in use) -
There are running nginx processes on the server:
# ps aux | grep nginx
root 6927 0.0 0.1 38604 4752 ? Ss 06:27 0:00 nginx: master process /usr/sbin/nginx
Cause
nginx
processes are stuck.
Resolution
-
Login server via SSH.
-
Find the stuck
nginx
processes:# # ps aux | grep nginx
root 6927 0.0 0.1 38604 4752 ? Ss 06:27 0:00 nginx: master process /usr/sbin/nginx -
Kill the stuck processes using the ID(s) taken from the output of the previous command:
# kill -9 6927
-
Restart nginx:
# service nginx restart
Comments
0 comments
Please sign in to leave a comment.