lsof -i:8080
result:
node 32419 root 6u IPv4 122865 TCP localhost.localdomain:webcache (LISTEN)
the result is different from
lsof -i:80
result:
nginx 32029 root 6u IPv4 121546 TCP *:http (LISTEN)
nginx 32030 nginx 6u IPv4 121546 TCP *:http (LISTEN)
nginx is : "TCP *", but node's process "localhost.localdomain". what does it mean, localhost.localdomain? it means the process can access from localhost only?
I have a troble to access node process from another server via 8080 port.
any comments plz~