Afternoon, looking to do some real basic logging for our webservers.  They are all running ubuntu-server 8.10, and I have a standalone box which will act as the &#39;log server&#39;.  They have webmin installed, so I setup using that as it seemed pretty straight forward.  <br>
<br>So the server is running and when I start one of the webservers which I configured, I recive the following error;<br> * Starting system logging syslog-ng Error binding socket; addr=&#39;AF_UNIX(/var/log/apache2/ws8.mydomain.com-access_log)&#39;, error=&#39;Address already in use (98)&#39;<br>
<br>I thought it might be due to apache running, so stopped that, but still the same error.<br><br><br>the conf file is HUGE, and 95% is a stock install, so I will just put what the client / server has that is specific to this item I wish to remote log.<br>
<br>Client:<br>destination WFLogger {<br>  udp(192.168.2.60);<br>  };<br>source domain_access {<br>  unix-stream(&quot;/var/log/apache2/ws8.domain.com-access_log&quot;);<br>  };<br>log {<br>  source(domain_access);<br>  destination(WFLogger);<br>
  flags(catchall);<br>  };<br><br>On the server, I don&#39;t see anything that stands out that say&#39;s &quot;accept connections&quot; so not sure if there is anything special that has to be done, but the error on the client is immediate so that part seems to be a local issue.<br>
<br>Thanks<br><br>