ECONNREFUSED means no server is listening at the given address and port.
Assuming you are using the same installation as your previous post
you are doing the same error as before. You are using the default port 27017 rather than the port used by the server, that is the one specified in the configuration file. From your previous post this port is 10000.
But since you
the cause might be different. In your other post, you also mentioned using 2 machines. May be the mongo log message you see is from a machine different from the machine with the host name tutorial.
Basically, ECONNREFUSED means wrong address, wrong port or no listener. You seem to have a listener on the correct port, so the address must be wrong.