1. How to change the port of ssh:
(default port: 22)
1. vim /etc/ssh/sshd_config
2.
* Port can change to the number close to 65535.
2. How to manage the accounts of server system:
2.1 How to use root account
1) how to change the password of root
sudo passwd root
2) how to change to root
su root
3) create user
adduser test (better)
useradd -m test (-m: create user folder /home/test)
4) delete user
userdel -r test (-r: also delete folder /home/test)
5) change password of user
passwd test
2.2 How to add sudoer
1) "su root"
2) "visudo" (open /etc/sudoers)
3) add "user ALL=(ALL) ALL"
2.3 How to check which user has sudo right
usermod -aG sudo test (add 'test' into sudo group)
getent group sudo
* 通常root账号就只通过密钥登陆,只有一人掌握密钥;
开通1-2个sudo账号,用于管理权限;
开通若干普通账号,用于部署等操作。
No comments:
Post a Comment