http://t.zoukankan.com/forest-sunshine-p-14357115.html
一、重启activemq服务
1.查看服务:ps -ef | grep activemq
2.查看服务目录:ll /proc/28317
3.进入服务目录
停止服务:./activemq stop
启动服务:./activemq start
查看队列:./activemq dstat
方式二、linux下启动acitvemq
1、使用cd命令进入到acitvemq的bin文件夹 cd /home/apache-activemq-5.13.32、输入 ./activemq start 启动activemq
3、输入 ./activemq stop 关闭activemq 二、重启redis服务器 https://blog.csdn.net/m0_67391907/article/details/124492364 https://blog.csdn.net/iijik55/article/details/123836968?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~default-1-123836968-blog-124016193.pc_relevant_aa2&spm=1001.2101.3001.4242.2&utm_relevant_index=4 history
1、# 关闭redis服务器
2、redis-cli -h 127.0.0.1 -p 6379 shutdown
3、# 杀死redis服务器《比较暴力,谨慎使用)
4、 kill -g pid 进程号
5、# 指定配置文件启动redis
redis-server /etc/redis/redis .conf
6、# 查看redis服务器进程
7、ps -ef grep redis
8、ps aux grep redis
9、# 启动redis客户端
10、redis-cli
redis-cli -h ip地址
redis-cli -p 端口号
三、重启nginx服务器
http://wjhsh.net/liyang6-p-11642069.html
service nginx restart
nginx -V
systemctl restart nginx #nginx centos7
service nginx restart #nginx centos6
Nginx的启动、停止与重启
启动
启动代码格式:nginx安装目录地址 -c nginx配置文件地址
例如:
[root@localhost sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
或者
./nginx -c /usr/local/nginx/conf/nginx.conf
停止
nginx的停止有三种方式:
从容停止
1、查看进程号
[root@loalhost ~]# ps -ef|grep nginx
2、杀死进程
[root@localhost ~]# kill -9 11550
快速停止
1、查看进程号
[root@localhsot ~]# ps -ef|grep nginx
2、杀死进程
[root@localhost ~]# kill -TERM 11550
或 [root@localhost ~]# kill -INT 11550
强制停止
[root@localhost ~]# pkill -9 nginx
重启
1、验证nginx配置文件是否正确
方法一:进入nginx安装目录sbin下,输入命令./nginx -t
看到如下显示nginx.conf syntax is ok
nginx.conf test is successful
说明配置文件正确!
方法二:在启动命令-c前加-t
2、重启Nginx服务
方法一:进入nginx可执行目录sbin下,输入命令./nginx -s reload 即可
方法二:查找当前nginx进程号,然后输入命令:kill -HUP 进程号 实现重启nginx服务
如果出现这种情况的话,解决如下
报错信息
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] socket() [::]:80 failed (97: Address family not supported by protocol)
定位方法
1.先使用ps -e | grep nginx查看是否已经启动了nginx
2.如果没有的话则按照提示,查看0.0.0.0:80端口谁占用了,使用netstat -ltunp命令,可以看到
可以看到0.0.0.0:80端口被httpd这个进程占用了(也就是apcache占用)
关闭httpd服务即可: service httpd stop