Linux学习笔记一:CentOS7.2的常用命令

Linux学习笔记一:CentOS7.2的常用命令

文章目录

        • Linux学习笔记一:CentOS7.2的常用命令
          • 一、一些基本常用命令:
          • 二、防火墙方面:

一、一些基本常用命令:
  1. 查看tomcat运行日志:

tail -f catalina.out 或者 tail -200 catalina.out

  1. 拷贝文件路径:

cp /xx /xx 注意:第一个需要从根路径开始。

  1. 启动jar文件:

nohup java -jar xxx.jar &

  1. 查看java运行日志

tail -f nohup.out 或者:tail -200 nohup.out

  1. 删除文件:

rm -rf xxx

  1. 查看当前路径:

pwd

  1. 查找java执行进程:

netstat -lnp|grep java

  1. 杀死某个进程:

kill -9 xxxx

二、防火墙方面:
  1. 查看防火墙状态: systemctl status firewalld.service
  2. 关闭防火墙: systemctl stop firewalld.service
  3. 开启防火墙:systemctl start firewalld.service
  4. 开启开机启动防火墙:systemctl enable firewalld.service
  5. 关闭开机启动防火墙:systemctl disable firewalld.service
  6. 查看防火墙开启的所有端口号:firewall-cmd --zone=public --list-ports
  7. 更新防火墙规则:firewall-cmd --reload
  8. linux开启一个端口:firewall-cmd --zone=public --add-port=80/tcp --permanent (–permanent永久生效,没有此参数重启后失效)
  9. 查看端口是否开启:firewall-cmd --zone= public --query-port=80/tcp
  10. 删除某个防火墙开放的端口:firewall-cmd --zone= public --remove-port=80/tcp --permanent

你可能感兴趣的:(linux学习笔记)