Linux常用軟體啟動、停止、重啟命令

dreams7433發表於2018-07-19

一、PHP

啟動命令:

/usr/local/php5/sbin/php-fpm

停止命令:

pkill php-fpm

二、MySQL

啟動命令:

/etc/init.d/mysqld start 

停止命令:

/etc/init.d/mysqld stop

重啟命令:

/etc/init.d/mysqld restart 

三、Apache

啟動命令:

/usr/local/apache2/bin/apachectl start

停止命令:

/usr/local/apache2/bin/apachectl stop

重啟命令:

/usr/local/apache2/bin/apachectl restart

四、Nginx

啟動命令:

/usr/local/nginx/sbin/nginx 

停止命令:

/usr/local/nginx/sbin/nginx -s stop 

重啟命令:

/usr/local/nginx/sbin/nginx -s reload 

五、MemCached

啟動命令:

memcached -d -m 10 -u root -l 192.168.0.122 -p 11200 -c 256 -P /tmp/memcached.pid

停止命令:

kill `cat /tmp/memcached.pid`

六、Redis

啟動命令:

redis-server redis.conf

停止命令:

redis-cli -h 127.0.0.1 -p 6379 shutdown

七、MongoDB

啟動命令:

/usr/local/mongodb/bin/mongod -f /etc/mongodb.conf

停止命令:

pkill mongod 

 

相關文章