linux下MySQL、Tomcat、Redis、Nginx停止和重启
MySql
一、启动方式
1、使用linux命令service 启动:
service mysqld start
2、使用 mysqld 脚本启动:
/etc/inint.d/mysqld start
二、停止
1、使用 service 启动:
service mysqld stop
2、使用 mysqld 脚本启动:
/etc/inint.d/mysqld stop
三、重启
1、使用 service 启动:
service mysqld restart
2、使用 mysqld 脚本启动:
/etc/inint.d/mysqld restart
备注:查看mysql端口是否已经使用,使用netstat -anp 命令查看服务器端口使用情况。
其他
systemctl enable mysql.service ---设置开启自启动
systemctl start mysql.service ----开启此服务
systemctl stop mysql.service -----关闭此服务
systemctl status mysql.service -----查看服务状态
Tomcat
启动-你的安装目录/bin/startup.sh
停止-你的安装目录/bin/shutdown.sh
Nginx
启动 - 你的make目录/sbin/nginx
停止 -/ sbin/nginx -s stop #停止服务
重读配置文件 - /sbin/nginx -s reload #重新加载配置
Redis
开启 - /安装目录/bin/redis-server /安装目录/bin/redis.conf
关闭 - /安装目录/bin/redis-cli shutdown