httpd dead but pid file exists
-
Yeah, looks like the Oracle DB client is installed.
-
backup the file
sudo cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak
the pop it in
vi
/nano
and look for not default things.also rename anything in
/etc/httpd/conf.d
sudo mv /etc/httpd/conf.d/wtf.conf /etc/httpd/conf.d/wtf.conf.bak
then restart apache
sudo service stop httpd sudo service start httpd
In fact, I would rename anything in
conf.d
first, and restart. -
Assuming that doesn't work, then you can do the same with the
php.ini
-
@JaredBusch said in httpd dead but pid file exists:
backup the file
sudo cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak
the pop it in
vi
/nano
and look for not default things.also rename anything in
/etc/httpd/conf.d
sudo mv /etc/httpd/conf.d/wtf.conf /etc/httpd/conf.d/wtf.conf.bak
then restart apache
sudo service stop httpd sudo service start httpd
In fact, I would rename anything in
conf.d
first, and restart.I put in a change request for this. Thanks
-
@JaredBusch said in httpd dead but pid file exists:
In fact, I would rename anything in conf.d first, and restart.
You could do something like this...
mv conf.d conf.d.orig
mkdir conf.dThat way you have an empty folder, but can replace it with the old one in a snap all at once.