Check whether there are apache processes running at the OS level.
ps -ef | grep -i apache
You can stop and start Apache using the following commands
cd /<apache_installation_directory>/bin
./apachectl stop
./apachectl start
Check this guide
Regards
RB