linux 常用命令

关机命令:shutdown -h now
查询IP:ifconfig

删除命令:rm -rf 目录

创建文件:mkdir 名称

复制:cp 复制文件 复制到的目录 mv 移动文件

解压gz文件:tar zxvf 解压文件

解压zip文件 :unzip 文件名

安装软件:执行rpm -ivh rpm包名

不保存退出 q!

保存退出 wq

查看tomcat日子 tail -f catalina.out


jdk环境变量设置:

#vi /etc/profile

tomcat配置:

修改profile文件此命令生效:source /etc/profile


查看端口占用:
ps -ef | grep tomcat
杀掉进程:
kill -9 进程ID

查看进程列表并过滤:
ps -ef | grep nginx

ps -ef:列出进程列表

grep:过滤

添加端口:
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 写入修改

/etc/init.d/iptables save 保存修改

service iptables restart 重启防火墙,修改生效

查看磁盘剩余空间 df -h

 

远程连接:ssh root@ip

posted @ 2019-01-25 16:34  铅笔coding  阅读(123)  评论(0编辑  收藏  举报