Check Apache in Linux environment.
$ netstat -lnp | grep 80 #Check the process number
$ ps -ef |grep process number
reference netstat --Check host network statistics and status Process confirmation command ps option memorandum --Qiita
$ find / -name httpd.conf
$ cat /path/to/httpd.conf | grep CustomLog
tailf /path/to/access_log
$ /etc/init.d/httpd configtest #Verification
$ /etc/init.d/httpd reload
Recommended Posts