防火墙
) 重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off ) 即时生效,重启后失效 开启: service iptables start 关闭: service iptables stop 需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。 在开启了防火墙时,做如下设置,开启相关端口, 修改/etc/sysconfig/iptables 文件,添加以下内容: -A RH-Firewall--INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A RH-Firewall--INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
用户
查看用户 cat /etc/passwd
查看某一个用户 cat /etc/passwd|grep javaluna
新增用户 useradd xxx
更新密码 passwd xxx
删除用户及相关配置 userdel -r xxx