0505.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Setup GoAccess (CowAxess) Web Log Analyzer on Windows</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Apache HTTPD,GoAccess,Open Source,Web Analyzer,Web Server Monitoring,XAMPP,Windows,Microsoft Windows,Web Server,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Setup GoAccess (CowAxess) Web Log Analyzer on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="10/27/2023 02:07:40 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Setup GoAccess (CowAxess) Web Log Analyzer on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is GoAccess?</h2>
  26. <p><em>GoAccess is an open source real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser. It provides fast and valuable HTTP statistics for system administrators that require a visual server report on the fly.</em> - <a href="https://goaccess.io/" target="_blank">https://goaccess.io/</a></p>
  27. <h2>Installing GoAccess (CowAxess)</h2>
  28. <ol>
  29. <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
  30. <li>Download CowAxess <a href="https://itefix.net/cowaxess" target="_blank">Download</a></li>
  31. <li><label for="cb_li_917989_0">Download Microsoft Visual C++ </label><label for="cb_li_917989_0"><a href="https://aka.ms/vs/16/release/vc_redist.x64.exe" target="_blank">Download</a></label></li>
  32. <li>Install Microsoft Visual C++</li>
  33. <li>Right click the downloaded XAMPP .zip file &gt; Extract All...</li>
  34. <li>Right click the downloaded CowAxess .zip file &gt; Extract All...</li>
  35. <li>Run the CowAxess installer, install to C:\Program Files\CowAxess</li>
  36. <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
  37. <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
  38. <li>Run XAMPP/xampp-control.exe</li>
  39. <li>Click the Start button next to Apache</li>
  40. <li>Navigate to C:\Program Files\CowAxess</li>
  41. <li>Double click the cowaxess.cmd file</li>
  42. <li>Paste the following command to start the real-time monitor, changing the paths to access.log and monitor.html as needed
  43. <div class="codeBlock">goaccess &quot;C:\\Program Files\\xampp\\apache\\logs\\access.log&quot; -o &quot;C:\\Program Files\\xampp\\htdocs\\monitor.html&quot; --log-format=COMBINED --real-time-html</div>
  44. </li>
  45. <li>Open a web browser and navigate to http://DNSorIP/monitor.html</li>
  46. <li>Welcome to GoAccess hosted on Windows</li>
  47. </ol> </div>
  48. </div>
  49. </body>
  50. </html>