I can't access the web interface. |
- First check if Apache web server is running.
ps -ax | grep apache
- Check Apache log files.
less /var/log/apache/error.log
and/or
less /var/log/apache/access.log
- Check if file /etc/netflow
/apache.conf is included in Apache configuration. You can include contents of this file directly into your web server configuration. You can use this file per each virtual host.
- Check if PHP scripting is enabled in your web server (refer PHP documentation and Apache documentation).
|