查看容器及运行进程 docker ps 查看容器内部信息 docker inspect container_id 进入容器 docker attach container_id 退出容器 docker kill container_id 查看日志 docker logs container_id
分类:
其他好文 时间:
2016-02-16 13:29:04
阅读次数:
140
#待用 linux 查看tomcat进程 ps -ef | grep tomcat linux 查看java进程 ps -ef | grep java linux 查看名为xx的进程 ps -ef | grep xx 强制杀掉进程 kill -9 进程号(可通过上面的命令得到) 查看所有用户的进程
分类:
系统相关 时间:
2016-02-16 11:36:17
阅读次数:
199
要对系统中进程进行监测控制,查看状态,内存,CPU的使用情况,使用命令:/bin/ps (1) ps :是显示瞬间进程的状态,并不动态连续; (2) top:如果想对进程运行时间监控,应该用 top 命令; (3) kill 用于杀死进程或者给进程发送信号; (4) 查看文章最后的man手册,可以查
分类:
其他好文 时间:
2016-02-14 20:59:29
阅读次数:
259
1.问题 笔者在linux下发现使用tomcat6.0.41自带的./shutdown.sh常常无法停止进程,导致各种问题的发生,令笔者相当反感! 2.解决方式一: 查找到全部的tomcat进程 $ ps -ef | grep tomcat 然后逐一杀死它们 $ kill -9 pid 3.解决方式
分类:
系统相关 时间:
2016-02-14 16:55:24
阅读次数:
269
一、Linux进程概念1.进程:Process,是运行中的程序的一个副本,有生命周期,都由其父进程创建Linux内核存储进程信息的固定格式:taskstruct多个任务的的taskstruct组件的链表:tasklist2.进程优先级:0-1390:一般不使用1-99:实时优先级;数字越大优先级越高,系统自动安排10..
分类:
系统相关 时间:
2016-02-14 08:02:40
阅读次数:
513
Season 1, Episode 20: Tonight -Pope: I want him under 24hour surveillance. surveillance: 监视 保证24小时监视住他 -Sarah: I have to be there when they kill this
分类:
其他好文 时间:
2016-02-13 18:20:22
阅读次数:
964
Season 1, Episode 4: Cute Poison [Previously on Prison Break] previously: 以前地 前情提要 -Burrows: I didn't kill that man, Michael 那人不是我杀的 Michael -Michael:
分类:
其他好文 时间:
2016-02-13 18:16:17
阅读次数:
240
Season 1, Episode 21: Go -Michael: I need you to let me get us out of here. 我需要你帮我出去 -Patoshik: If you try to screw me over again, I'll kill you screw
分类:
其他好文 时间:
2016-02-13 18:16:07
阅读次数:
159
df -lh lsof | grep delete kill -9 $program_id df -lh # 搞定问题
分类:
其他好文 时间:
2016-02-07 21:18:20
阅读次数:
246
CREATE OR REPLACE PROCEDURE SOLVE_LOCK AS V_SQL VARCHAR2(3000); --定义 v_sql 接受抓取锁的sql语句V_SQL02 VARCHAR2(3000); KILL_SID NUMBER;KILL_SERIAL NUMBER; CUR_
分类:
其他好文 时间:
2016-02-02 16:27:54
阅读次数:
182