About 207,000 results
Open links in new tab
  1. Where are Apache file access logs stored?

    210 Does anyone know where file access logs are stored, so I can run a tail -f command in order to see who is accessing a particular file. I have XAMPP, which is an Apache server installed …

  2. Where are the Apache and PHP log files? - Ask Ubuntu

    I've installed Apache, PHP, and MySQL on Ubuntu 10.10 desktop edition, and it's working fine. Except I have no clue where to look for Apache or PHP log files.

  3. How do I find where Apache keeps the log files?

    3 Look in your apache config for the string ErrorLog. Usually there's one for the Apache process itself. Each VirtualHost can also define its own log files so check those as well. If the …

  4. server - Can't access apache error logs - Ask Ubuntu

    You need to go to /var/log/apache2. If you dont have the rights to enter the folder, open a root terminal. do sudo -i and the go to cd /var/log/apache2 and take a look at the files there.

  5. How do I grep server logs for IP adresses? - Ask Ubuntu

    Nov 2, 2024 · This answer is specific to the apache web server log file. From a real log file, an example one was created, including specific lines that challenged some of the answers …

  6. Need to grab IP of visitors from the Apache logs

    Jul 13, 2016 · though they'll be in the order they first appear in the log file, not ascii sorted. Also, this assumes that the first field in the log is the IP address, which is the default for many newer …

  7. "Unable to open logs" error when I try to restart Apache

    Are you trying to start apache as a non-root user? It's possible you don't have permission to bind Apache to ports lower than 1024 (generally only possible by the root-user) and the log files are …

  8. 14.04 - Why Apache2 does not write logs? - Ask Ubuntu

    Unless you’re running multiple instances of Apache, SUFFIX will be an empty string so the log file directory is, by default, configured to be /var/log/apache2.

  9. I always get "No such file or directory: apache2: could not open …

    No such file or directory: apache2: could not open error log file /etc/apache2/$ apache_log_dir /error.log This meas, I should have a path like this /etc/apache2/var/log/apache2/ but in …

  10. How would I extract the user agent strings from a log file?

    grep "17\/Jul\/2011" other_vhosts_access.log | awk '{print $8}' | sort | uniq -c | sort -nr I want to now see the user agent strings, but the problem is they include several spaces. Here is a …