Is it bad Apache listen :80
Is it bad Apache listen :80
Hello,
I always use
In case of vesta, it won't work because apache is not listening on default port.
Can i make apache listen on port 80,
in status.conf:
Thanks!
I always use
for httpd monitoring.service httpd fullstatus
In case of vesta, it won't work because apache is not listening on default port.
Can i make apache listen on port 80,
in status.conf:
Will it give me problems with the nginx?Listen 127.0.0.1:8081
Listen 127.0.0.1:80
Thanks!
Re: Is it bad Apache listen :80
You can't have both apache and nginx listening to the same port.
Use netstat -anp | grep httpd to see what ports apache is listening to.
Use netstat -anp | grep httpd to see what ports apache is listening to.
Re: Is it bad Apache listen :80
Thanks, Milka.
I know which ports apache is listening. My problem was that
Won't work with custom Apache port.
Anyway i found better solution to monitor Web server- apachetop
I know which ports apache is listening. My problem was that
Code: Select all
service httpd fullstatus
Anyway i found better solution to monitor Web server- apachetop
Code: Select all
yum install apachetop
apachetop $(find /var/log/httpd \( -name \*.log -o -name \*_log \) -print | sed 's/^/-f '/)
Re: Is it bad Apache listen :80
If monitoring is important to you, why not monitor more than just apache and use Nagios (or any other good monitoring solution)?
Re: Is it bad Apache listen :80
I monitor all of the services. Apachetop just allows to see what user is getting most traffic realtime (almost).