centos install(160112更新)

centos安装之后:

更新

yum update

新增用户:

useradd myuser
passwd myuser

添加sudo:

usermod -a -G wheel myuser

//visudo #visudo命令是用来编辑修改/etc/sudoers配置文件
//root ALL=(ALL) ALL 之后添加
//... ALL=(ALL) ALL

生产机器禁止ROOT远程SSH登录:

vim /etc/ssh/sshd_config

PermitRootLogin yes
改为
PermitRootLogin no
重启sshd服务

service sshd restart

posted @ 2016-01-10 10:43  forDawn  阅读(149)  评论(0编辑  收藏  举报