Skip to main content

Application is running on port?

Comments

6 comments

  • quietFinn

    For example this:
    lsof -i :8080

    0
  • toplisek

    If I like to test different account within cPanel, how to execute particular account?

    lsof -i :8080

    0
  • cPRex Jurassic Moderator

    toplisek - I'm not sure what you mean in your reply - can you let me know specifically what you're trying to test?

    0
  • toplisek

    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
  • cPRex Jurassic Moderator

    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
  • itx_sumeet

    Run this command to check whether anything is running on port 8080:

    ss -tulpn | grep 8080

    It will show the process if the application is active on that port.

    0

Please sign in to leave a comment.