Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got three different error messages in my apache error log every time I'm starting apache. I've read the mod_mono configuration section multiple times so please give me a hint how to get rid of theses messages. The applications (3 asp.net projects) are running fine though.

first:

Listening on: /tmp/mod_mono_server_global
Root directory: /
Error: Address already in use

second:

Error: There's already a server listening on /tmp/mod_mono_server_global

third:

Listening on: /tmp/mod_mono_server_example.com
Root directory: /srv/www/vhosts/example.com
Error: There's already a server listening on /tmp/mod_mono_server_example.com

vhost config

MonoServerPath example.com "/usr/bin/mod-mono-server4"
MonoDebug example.com false
MonoSetEnv example.com MONO_IOMAP=all

MonoApplications example.com "/:/srv/www/vhosts/example.com"

 <Directory "/srv/www/vhosts/example.com">
     MonoSetServerAlias example.com
     SetHandler mono
 </Directory>

OpenSuse 11.4, Mono 2.10.2

share|improve this question
did you solve the problem? – Răzvan Panda Feb 10 at 20:04
no, still see them in my logs every time I'm starting the apache service, but the applications are running fine. I'm just ignoring the messages until someone tells me a fix. – Epstone Feb 23 at 11:13

1 Answer

You may have conflicting Listen directives in your Apache configuration. If that doens't help, try to strace Apache and see which socket or file the error pops up on. I've written a tutorial on strace, you may want to check it out.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.