Linux常用命令 Linux防火墙iptables的启动与关闭

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weisong530624687/article/details/81002202

记录下自己平时使用过程中遇到的一些命令,方便查找。

linux下将目录授权给其他用户的步骤


1.更改目录所有者命令:
chown -R 用户名称 目录名称
2.更改目录权限命令:
chmod -R 755 目录名称

rpm方式安装JDK

rpm -ivh jdk-7u71-linux-x64.rpm

Linux防火墙iptables的启动与关闭

CentOS7

[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)

1.关闭firewall

[root@localhost ~]# systemctl stop firewalld.service            //停止firewall
[root@localhost ~]# systemctl disable firewalld.service        //禁止firewall开机启动

2.安装iptables

[root@localhost ~]# yum install iptables-services            //安装

[root@localhost ~]# systemctl restart iptables.service #重启防火墙使配置生效

[root@localhost ~]# systemctl enable iptables.service #设置防火墙开机启动

[root@localhost ~]# systemctl disable iptables.service #禁止防火墙开机启动


CentOS6


[root@localhost ~]# service iptable status      ---查看防火墙状态

[root@localhost ~]#servcie iptables stop           --临时关闭防火墙

[root@localhost ~]#service iptables start          --临时启动防火墙

[root@localhost ~]#service iptables restart          --重启防火墙

[root@localhost ~]#chkconfig iptables off          --永久关闭防火墙

[root@localhost ~]#chkconfig iptables on          --永久开启防火墙



猜你喜欢

转载自blog.csdn.net/weisong530624687/article/details/81002202