分享

程序员必须要知道的CentOS7必备技能(防火墙开关,vim等的安装)

 昵称11935121 2018-03-01

系统版本

Centos7.2

库的安装(Root用户安装)

基础库

yum install epel-release

yum install vim

yum install bash-completion

修改hosts文件与主机名一致

hostnamectl --static set-hostname chentongwei

新增用户

useradd -d /chentongwei -m chentongwei

useradd chentongwei

passwd chentongwei

输入密码:

123456

给用户授予sudo命令的权限(root用户)

visudo

再打开的文件中找到

root ALL=(ALL) ALL

并在这句话下面写上

chentongwei ALL=(ALL) ALL

查看selinux是否关闭

getenforce

关闭selinux

vim /etc/selinux/config 文件

将SELINUX=enforcing改为SELINUX=disabled

reboot

防火墙相关

开启端口

firewall-cmd --zone=public --add-port=80/tcp --permanent

查看已经开放的端口:

firewall-cmd --list-ports

重启firewall

firewall-cmd --reload

停止firewall

systemctl stop firewalld.service

开启 firewall

systemctl start firewalld.service

防火墙状态

firewall-cmd –state

禁止firewall开机启动

systemctl disable firewalld.service

开机自启动

systemctl enable firewalld.service

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多