系统版本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 关闭selinuxvim /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 |
|
来自: 昵称11935121 > 《未命名》