Jump to content

Start @ background


Recommended Posts

Hello, can someone help me with this little problem?

I want to start the mta-server in background... but how?

i tried

./mta-server

(starts perfect) <---- normal start

i tried

screen -A -m -d -S mtaserver ./mta-server

(no connection possible [server timed out])<--- screen start

i tried

./mta-server > /dev/null 2>&1 &

(no connection possible[server timed out]) <--- /dev/null start

is there any option to start mta-server in background?

Link to comment

type

screen -S mta

(it will make a new screen session called mta)

then start your server with just

./mta-server

(navigate to the directory if needed)

now to "minimise" it, press CTRL+A+D

if you want to resume it

screen -R mta

if it doesn't work, make sure you have screen installed.

apt-get update

apt-get install screen

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...