Node.js renvoie l'événement d'erreur Unhandled

J'ai installé nœud, mnp dans mon serveur Centos 6, et je suis en utilisant mastic pour l'exécution de commandes sur le serveur.

Nœud est correctement installé à la racine et en cours d'exécution génial à n'importe où sur le serveur.

mon projet est dans /home/shaadise/public_html/Ikon

J'ai créé un hello.js fichier /home/shaadise/public_html/Ikon

var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World\n');
}).listen(8080);

console.log('Server started');

lors de l'exécution js:

root@vps [/home/shaadise/public_html/Ikon]# node hello.js
Server started

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 Server.listen (net.js:1138:5)
    at Object.<anonymous> (/home/shaadise/public_html/Ikon/hello.js:6:4)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
root@vps [/home/shaadise/public_html/Ikon]#  throw er; //Unhandled 'error' event
-bash: throw: command not found
-bash: //: is a directory

Question: où je dois mettre mon node js fichier et comment puis-je y accéder????

j'ai testé pour exécuter la commande:

root@vps [/home/shaadise/public_html/Ikon]# netstat -plnt | grep ':8080'
tcp        0      0 0.0.0.0:8080                0.0.0.0:*                   LISTEN      27111/nginx

source d'informationauteur Manwal