I checked the port number used by the Node app when launched using Passenger is 57911.
$ netstat -atpee|grep node Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 *:57911 *:* LISTEN xxxxx 917107 29318/node
I want to make sure that I do not use the ports used by Passenger in any other application. So wanted to check if the range of port numbers that Passenger may use to launch Express app, is it documented somewhere?
Thanks, Puneet
Hongli Lai
unread,
Sep 13, 2013, 4:26:16 PM9/13/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to phusion-passenger
Phusion Passenger uses a random available port. It does so by binding
to port 0, and then the OS tells it which port was chosen.