方法一:
根据pid
ps -aux|grep 你的进程
方法二:
删除pid文件
[root@localhost ~]# /etc/init.d/redis_6380 start
/var/run/redis_6380.pid exists, process is already running or crashed
[root@localhost ~]# ps -a|grep 6380
[root@localhost ~]# rm -rf /var/run/redis_6380.pid #直接删除该pid文件
[root@localhost ~]# /etc/init.d/redis_6380 start
Starting Redis server...
[root@localhost ~]# netstat -tlnp|grep 6380
tcp 0 0 0.0.0.0:6380 0.0.0.0:* LISTEN 122
06/redis-server tcp6 0 0 :::6380 :::* LISTEN 122
06/redis-server [root@localhost ~]#
相关文章
- Linux 杀死进程方法大全(kill,killall)
- Linux杀死进程,查看进程
- linux杀死进程方法
- linux 编译kernel与svn版本冲突解决方法 [drivers/gpu/mali/mali/common/mali_kernel_core.o] 错误 1
- linux下清除Squid缓存的方法记录
- Android IPC机制(三)在Android Studio中使用AIDL实现跨进程方法调用
- Linux(入门基础):90---进程的查看(ps、top、pstree命令)
- 在Android Studio中使用Method trace,查看某进程的所有线程trace的方法
- linux系统下U盘查看和mount挂载方法说明
- linux下gdb的安装方法