Richard G
Verified User
I've got Directadmin and want to run an application via my admin useraccount.
I can start the application using a shell script like this.
./run.sh
And the run.sh contains:
#!/bin/sh
./appbinary
The application is running, which I can see with ps x as well if I'm logged in as root and as admin.
Problem is that users need to be able to reach the application from outside for example on poort 2080.
But when I open port 2080 incoming and outgoing, the application is still not reachable.
What am I doing wrong of what am I forgetting?
I can start the application using a shell script like this.
./run.sh
And the run.sh contains:
#!/bin/sh
./appbinary
The application is running, which I can see with ps x as well if I'm logged in as root and as admin.
Problem is that users need to be able to reach the application from outside for example on poort 2080.
But when I open port 2080 incoming and outgoing, the application is still not reachable.
What am I doing wrong of what am I forgetting?