0

I installed xampp and now I want start apache and mysql from command line and also I won't install services. I use some command and it's worked but after start mysql (for example) cmd is open, I want close but after close cmd mysql stopped.

4

2 回答 2

0

你不能。要么从命令行运行它,必须保持外壳打开,要么将它作为服务运行,之后你可以关闭 cmd(如果你使用过 cmd 的话)。

我会选择后者,我不明白你为什么不将它安装为服务。

于 2012-12-05T10:03:54.547 回答
0

如果您使用 XAMPP,您可以通过以下方式启动服务器:

sudo /opt/lampp/lampp start

否则,您可以使用以下服务器启动服务器:

sudo service apache2 start && sudo service mysql start

于 2019-12-04T22:00:47.433 回答