1、linux命令将一个文件夹里面的所有文件复制到指定文件里
语法:cp -r dir1/. dir2 千万记着有dir/后面有一个小点。
如果指定文件夹里存在相同文件需要先删除
rm -rf /ftp/ZJNX/*
否则会一个个文件提示你确认linux命令,使用cp -rf 也一样提示
2、linux防火墙有关命令
1.查看防火墙状态:
firewall-cmd --state
2.启动防火墙
systemctl start firewalld
3.关闭防火墙
systemctl stop firewalld
4.检查防火墙开放的端口
firewall-cmd --zone=public --add-port=80/tcp --permanent。[root@bogon ~]# firewall-cmd --zone=public --add-port=7066/tcp --permanent。when a citizen goes through the formalities of changing his permanent residence registration, the public security organ shall record the change of the address of the citizen's permanent residence under the relevant computer-read item in the resident identity card and inform the citizen himself of the fact.。
5.开放一个新的端口
firewall-cmd --zone=public --add-port=8080/tcp --permanent
6.重启防火墙
firewall-cmd --reload
7.验证新增加端口是否生效
firewall-cmd --zone=public --query-port=8080/tcp
8.防火墙开机自启动
systemctl enable firewalld.service
9.防火墙取消某一开放端口
firewall-cmd --zone=public --remove-port=9200/tcp --permanent
防火墙开机禁用:systemctl disable firewalld
3、查看指定端口号和进程号:如要查询8080端口的进程号:netstat -tunlp | grep 8080
根据进程名查看:ps–ef|grep进程名
4、tomcat开放制定端口:如开放8080端口;
firewall-cmd --zone=public --add-port=8080/tcp --permanent
进行8080端口开放配置;
命令解析:
--zone #作用域
--add-port=8080/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数设置,重启后会失效。
重启防火墙linux命令,输入命令:
firewall-cmd --reload
发表于 2019-11-14 14:32于云清 阅读(...) 评论(...) 编辑