【Linux】修改Linux远程登录用户并授权,禁止root远程登录,修改Linux登录端口

一、修改Linux远程登录用户并授权

添加一个新的普通用户 用如下命令
adduser newuser
修改密码
passwd newuser 根据提示 输入密码
赋予newuser root 权限
修改 /etc/sudoers 文件 找到如下一行 ,取消注释
##Allows people in group wheel to run all commands
%wheel ALL=(ALL) ALL
修改用户的用户组, 使其属于root组(wheel),命令如下:
usermod -g root newuser
修改完毕之后,就可以使用newuser 账号登录, 然后用命令 su root ,即可获取root权限进行操作了
二、禁止root远程登录
1.需要编辑/etc/ssh/sshd_config。
vim /etc/ssh/sshd_config 找到 PermitRootLogin 改为 PermitRootLogin no
2.重启 service sshd restart


三、修改Linux登录端口
修改sshd_config
vim /etc/ssh/sshd_config
在port后面添加端口即可,这些端口都是并列的,添加后如下
Port 22
Port 443
重启ssh服务
systemctl restart sshd
 

你可能感兴趣的:(云原生,Linux,技术研发,linux,服务器,运维)