Ukuser32
Ukuser32

Reputation: 2189

Return to command prompt when started mysql

Is there a way in Centos7/Linux to return to the command line once you've started mysqld with the various config options? For me it just sits there and nothing I type/do will return to the command line.

Upvotes: 0

Views: 201

Answers (1)

Alessandro De Vito
Alessandro De Vito

Reputation: 101

Try to put & character at the end of line.

For example, to start MySQL Server, run:

mysqld <options> &

The command above will allow you to run MySQL Server in background and you will be able to use the command line.

Upvotes: 3

Related Questions