常用Linux命令(后续在补)

鉴于最近在使用Linux装设环境整理一下Linux常用命令
首先声明Linux使用的CentOS7

查询防火墙状态

systemctl status firewalld
firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled)
   Active: active (running) since 一 2015-05-25 22:53:54 CST; 3min 18s ago
 Main PID: 979 (firewalld)
   CGroup: /system.slice/firewalld.service
           └─979 /usr/bin/python -Es /usr/sbin/firewalld --nofork --nopid
5月 25 22:53:54 localhost.localdomain systemd[1]: Started firewalld - dynami...
Hint: Some lines were ellipsized, use -l to show in full.

关闭防火墙

systemctl stop firewalld

打开文件过多

ulimit -n

ulimit -n 65536

可以通信的服务器之间数据传递

 scp -r Cloud30FSPF20210205FDGSCloud建筑行业共享202102.gs/ root@192.168.11.234:/opt/gscloud/tools/update/patchfiles

以nohub的方式打开脚本并且在后台运行

nohup ./startup-linux.sh &

查看数据库日志

tail -f nohup.out

搜索

netstat -nlp | grep 5200 | grep -v grep

搜索端口为5200的应用信息的pid
然后强(杀)了他
kill -9 pid

上一篇:笔记--linux系统配置


下一篇:13.LINUX——引导过程与服务控制