Node js +Fehler: hören Sie EADDRINUSE + Unbehandelte 'Fehler' Ereignis

Ich bin mit nodeclipse plugin für eclipse, um mein node js Projekt.Folgende js-Datei richtig arbeitet, aber h1 tag ist nicht arbeiten .Ich kann nur einen einfachen text.außerdem bin ich immer diese Ausnahme, die in der Laufzeit.bitte helfen Sie mir.

javascript-Datei

   var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/html'});
    response.end('<html><body><h1>Home</h1> URL was: ' + request.url + '</body></html>');
}).listen(3000, 'localhost');

console.log('Server running at http://localhost:3000/');

Ausnahme

 events.js:72
        throw er; //Unhandled 'error' event
              ^
Error: listen EADDRINUSE
    at errnoException (net.js:904:11)
    at Server._listen2 (net.js:1042:14)
    at listen (net.js:1064:10)
    at net.js:1146:9
    at dns.js:72:18
    at process._tickCallback (node.js:415:13)
    at Function.Module.runMain (module.js:499:11)
    at startup (node.js:119:16)
    at node.js:902:3

InformationsquelleAutor Amila Iddamalgoda | 2014-02-24

Schreibe einen Kommentar