corey, thanks for your input.

Originally Posted by
coreyg
Just encountered an issue like this with a customer. Here are some steps to check:
check /etc/dekiwiki and make sure that mindtouch.host.conf exists
Exists.

Originally Posted by
coreyg
If it does then move on and check /etc/init.d/dekiwiki and see if you find a line like this:
source /etc/dekiwiki/mindtouch.host.conf
Deki has to be run as a launch daemon in OS X, that's why there's no init.d script for it. (An identical copy of the same launch daemon runs on an ordinary OS X since weeks. No problem there.)
Here's the daemon:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.mindtouch.deki</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/mono</string>
<string>/MindTouchDeki/bin/mindtouch.host.exe</string>
<string>apikey</string>
<string>xxx</string>
<string>script</string>
<string>/etc/dekiwiki/mindtouch.deki.startup.xml</string>
<string>path-prefix</string>
<string>@api</string>
<string>http-port</string>
<string>8081</string>
<string>ip</string>
<string>localhost</string>
<string>notty</string>
<string>connect-limit</string>
<string>-5</string>
</array>
<key>StandardOutPath</key>
<string>/var/log/deki-api.log</string>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>

Originally Posted by
coreyg
Once that is done type hostname in the console and make sure that whatever comes up has an entry in your /etc/hosts file
example if the hostname is dekiwiki make sure your /etc/hosts includes:
127.0.0.1 dekiwiki
There's an entry and it can be properly resolved.

Originally Posted by
coreyg
Let me know if this resolves your issue
Unfortunately that doesn't solve this mono issue.
As said above, the same configuration runs properly on OS X since weeks now. It's just the server version of OS X where mono doesn't seem to work as expected.
Steve's workaround helps, though... But I can't tell if it has any side effects as I left the Server version aside (mono seems to be too flaky for production on OS X Server - see this thread's issue) and am using Deki on an ordinary Leopard now. So running on Server is still interesting for the future, of course, but no issue for me at the very moment.
Steve - any news on the mono front on this issue?