码迷,mamicode.com
首页 >  
搜索关键字:ps top jobs    ( 33074个结果
Linux查看端口占用进程
查看程序对应的进程号: ps -ef | grep 进程名字 查看端口号所占用的进程: netstat -nltp | grep 端口 或者 netstat -anp | grep 端口 杀死进程 kill pid ...
分类:系统相关   时间:2021-03-02 12:19:11    阅读次数:0
linux命令
cd,pwd,ls,cp,mv,history,ps,top,netstat,grep,tar-cvf/xvf,这些是基本的 touch,cat,head,tail,跟文件相关 vim命令 vi,进入文件页, i,插入 esc,切换插入模式和命令模式,然后:wq,保存后退出 最近重点学习了awk命令 ...
分类:系统相关   时间:2021-03-02 11:57:34    阅读次数:0
Java概要
Java概要 Java三大版本 JavaSE:标准版(桌面程序、控制台开发...) JavaME:嵌入式开发(手机、家电...)ps: 几乎无人使用 JavaEE:E企业级开发(Web端、服务器开发...) JDK、JRE、JVM JDK:Java Development Kit(Java开发工具) ...
分类:编程语言   时间:2021-03-02 11:55:49    阅读次数:0
进程管理
1.定时任务 crontab -e s m h d month w cmd 2.任务后台执行 command & 3.查看进程 ps -ef|grep prcss 4.杀死进程 kill -9 pid 5.服务状态 service prcss_name status|start|stop|resta ...
分类:系统相关   时间:2021-03-01 14:17:23    阅读次数:0
influxdb备份和恢复数据
InfluxDB操作 1. 显示数据库 > show databases > create database test > drop database test 2. 显示说有表 > show measurements InfluxDB数据备份和恢复 备份元数据 1、influxd backup - ...
分类:数据库   时间:2021-03-01 13:29:57    阅读次数:0
Oracle 常用操作
Docker 环境部署的oracle #查询oracle 实例 docker ps -a #进入实例 docker exec -it 58aca4848691 /bin/bash #切换oracle用户 su - oracle #设置oracle 环境变量 export ORACLE_HOME=/u ...
分类:数据库   时间:2021-02-25 11:52:18    阅读次数:0
Best PDF Document Viewers for Linux Systems
This article is the continuation of our ongoing series about Linux Top Tools, in this series we will introduce you most famous open source tools for L ...
分类:系统相关   时间:2021-02-24 13:22:40    阅读次数:0
linux取消挂载命令
一、简单用法 挂载 $ mount /dev/hda2 /home 第一个叁数是与包括文件系统的磁盘或分区相关的设备文件。 第二个叁数是要mount到的目录。 卸载挂载点 $ umount /dev/hda2 $ umount /usr 参数可以是设备文件或安装点。 二、mount详细介绍 如果想在 ...
分类:系统相关   时间:2021-02-22 11:53:11    阅读次数:0
python脚本中的awk命令
see https://www.cnpython.com/qa/221588 key point: run('docker ps -a | grep {} | awk "{print $1}"'.format(container_name)) KeyError: 'print $1'solution ...
分类:编程语言   时间:2021-02-22 11:52:53    阅读次数:0
linux停止服务命令
\1. 查看Linux启动的服务 . 代码如下: chkconfig --list 查询出所有当前运行的服务 chkconfig --list atd 查询atd服务的当前状态 2.停止所有服务并且在下次系统启动时不再启动,如下所示: . 代码如下: chkconfig --levels 12345 ...
分类:系统相关   时间:2021-02-22 11:50:57    阅读次数:0
33074条   上一页 1 ... 27 28 29 30 31 ... 3308 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!