1. 程式人生 > >linux重灌後

linux重灌後

1、新增使用者
    useradd xxx 
    passwd  xxx 
    usermod -G root newuser     將newuser新增到root組中
2、修改登入埠相關的配置檔案
    vim /etc/ssh/sshd_config
    新增Port xxx 
    下面的PermitRootLogin no 禁止root使用者登入
    MaxAuthTries 3          嘗試次數3
3、開啟firewalld並新增所需的埠
    service firewalld start   開啟
    service firewalld status  看狀態
    firewall-cmd
--permanent --add-port=xxxx/tcp 新增配置檔案中的埠 systemctl restart firewalld.service 重啟firewalld 不重啟也行 service sshd restart 應用ssh服務

許可權備份