sallex
sallex

Reputation: 21

.net vNext Fedora issue

I tried to install vNext on Fedora 20 following this tutorial: http://www.ganshani.com/blog/2014/12/shell-script-to-setup-net-on-linux/ but when I start HelloWeb example from aspnet github repo I get this message:

System.NullReferenceException: Object reference not set to an instance of an object
      at Microsoft.AspNet.Server.Kestrel.Networking.Libuv.loop_size () [0x00000] in :0 
      at Microsoft.AspNet.Server.Kestrel.Networking.UvLoopHandle.Init (Microsoft.AspNet.Server.Kestrel.Networking.Libuv uv) [0x00000] in :0 
      at Microsoft.AspNet.Server.Kestrel.KestrelThread.ThreadStart (System.Object parameter) [0x00000] in :0 
    [root@localhost HelloWeb]# k kestrel
    System.NullReferenceException: Object reference not set to an instance of an object
      at Microsoft.AspNet.Server.Kestrel.Networking.Libuv.loop_size () [0x00000] in :0 
      at Microsoft.AspNet.Server.Kestrel.Networking.UvLoopHandle.Init (Microsoft.AspNet.Server.Kestrel.Networking.Libuv uv) [0x00000] in :0 
      at Microsoft.AspNet.Server.Kestrel.KestrelThread.ThreadStart (System.Object parameter) [0x00000] in :0

I belive that problem is in wrong libuv library. Can you help me?

Upvotes: 2

Views: 309

Answers (1)

agua from mars
agua from mars

Reputation: 17434

try to follow the procedure explain here, I'd the same issue on ubuntu

Anyway I prefer to use Firefly which is much more performant

Upvotes: 2

Related Questions