Solving ASP.NET MVC project runtime errors on Mono

xameeramir
HackerNoon.com
2 min readJan 2, 2017

--

courtesy

In case we’re running an ASP.NET application on Mono using Monodevelop for the first time, we may receive the below error:

In some cases, the problem is incorrect installation of xsp4 server.

Install it using:

sudo apt-get install mono-xsp4

This solved the above error.

Optional: get it from Ubuntu software center by searching for xsp4

After the xsp4 server is installed and ready. The project will start running at http://127.0.0.1:8080/

A directory access error saying Access to the path “/etc/mono/registry” is denied may also show up which can be solved by simply creating the folder using mkdir

sudo mkdir /etc/mono/registry

and setting the right permissions using chmod

sudo chmod uog+rw /etc/mono/registry

Photos

Originally published at xameeramir.github.io.

--

--