Application is running on port?
How to execute Linux command and see if application is running on port 8080?
-
For example this:
lsof -i :80800 -
If I like to test different account within cPanel, how to execute particular account?
lsof -i :8080
0 -
toplisek - I'm not sure what you mean in your reply - can you let me know specifically what you're trying to test?
0 -
I have to set virtual URL. So, Port should be defined on which application is running.
ProxyPass /.well-known !
ProxyPass / http://ip:port/
ProxyPassReverse / http://ip:port/0 -
I'm still not sure what that means - if you just want to see if a port is open you can use netstat like this:
netstat -lpn | grep 80
that would show everything running on port 80.
0 -
Run this command to check whether anything is running on port 8080:
ss -tulpn | grep 8080It will show the process if the application is active on that port.
0
Please sign in to leave a comment.
Comments
6 comments