I was trying to do apache jailing on centos 6.7 with modsec. I already built everything even the jail directory and remodeled the config files. httpd(apache) says it started nicely, however its dead. When i try to see its status it says httpd dead but subsys locked.
Asked
Active
Viewed 155 times
1 Answers
0
Ensure that httpd is stopped
service httpd stop
Remove any stale lock files
rm -f /var/lock/subsys/httpd
Ensure there are no httpd processes running
ps -ef | grep httpd
if there are kill them
pkill httpd
Now start httpd
service start httpd

user9517
- 115,471
- 20
- 215
- 297