Это новая установка Mindtouch Core в Ubuntu 10.04. Я слежу за Инструкция по установке на сайте сообщества Mindtouch.
Когда я пытаюсь запустить сервис dekiwiki, он вылетает со следующей ошибкой:
** (/var/www/dekiwiki/bin/mindtouch.host.exe:14465): WARNING **: The following assembly referenced from /var/www/dekiwiki/bin/mindtouch.core.dll could not be loaded:
Assembly: System.Web.Routing (assemblyref_index=2)
Version: 3.5.0.0
Public Key: 31bf3856ad364e35
The assembly was not found in the Global Assembly Cache, a path listed in the MONO_PATH environment variable, or in the location of the executing assembly (/var/www/dekiwiki/bin).
** (/var/www/dekiwiki/bin/mindtouch.host.exe:14465): WARNING **: Could not load file or assembly 'System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies.
Unhandled Exception: MindTouch.Dream.DreamAbortException: HTTP Status: InternalError(500)
Server stack trace:
at MindTouch.Dream.DreamHostService+<StartService>d__68.MoveNext () [0x00000]
at MindTouch.Tasking.Coroutine.Continue () [0x00000]
Exception rethrown at [0]:
at MindTouch.Dream.DreamHostService+<StartService>d__68.MoveNext () [0x00000]
at MindTouch.Tasking.Coroutine.Continue () [0x00000]
Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object
at (wrapper delegate-invoke) System.MulticastDelegate:invoke_void_object_EventArgs (object,System.EventArgs)
at (wrapper delegate-invoke) System.MulticastDelegate:invoke_void_object_EventArgs (object,System.EventArgs)
at (wrapper delegate-invoke) System.MulticastDelegate:invoke_void_object_EventArgs (object,System.EventArgs)
at (wrapper delegate-invoke) System.MulticastDelegate:invoke_void_object_EventArgs (object,System.EventArgs)
at System.Collections.Generic.List`1[MindTouch.Tasking.TaskTimerFactory].AddEnumerable (IEnumerable`1 ) [0x00000]
at System.Collections.Generic.List`1[MindTouch.Tasking.TaskTimerFactory]..ctor (IEnumerable`1 ) [0x00000]
at System.Linq.Enumerable.ToArray[TaskTimerFactory] (IEnumerable`1 source) [0x00000]
at MindTouch.Tasking.TaskTimerFactory.get_Factories () [0x00000]
at MindTouch.Tasking.TaskTimerFactory.ShutdownAll () [0x00000]
at MindTouch.Dream.DreamConsoleHost.Main (System.String[] args) [0x00000]
Я дважды проверил, у меня установлен Mono 2.10 и сборка System.Web.Routing определенно присутствует, Mindtouch ее просто не находит.
Любые идеи?
Догадаться.
Внизу инструкций по установке есть примечание, в котором говорится, что нужно проверить моно-версию, запустив mono --version
.
Конечно же, /usr/bin/mono
все еще работал Mono 1.x.
Я сделал следующее, чтобы убедиться, что Mono 2.10 запускается и все запускается как шарм.
mv mono mono.old
mv gmcs gmcs.old
ln -s /opt/mono-2.10/bin/mono /usr/bin/mono
ln -s /opt/mono-2.10/bin/gmcs /usr/bin/gmcs