文章出處
文章列表
//現有用戶加到組
sudo usermod -a -G groupname username;
//添加用戶到組
useradd -G {group-name} username
//查看當前用戶屬于哪個組
groups
//給組加讀寫權限
chmod g+rw conf/*
//防火墻加規則 互相信任
sudo firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="120.132.30.86" accept'
//加減端口
firewall-cmd --zone=public --add-port=22/tcp --permanent
firewall-cmd --zone=public --remove-port=22/tcp --permanent
firewall-cmd --permanent --add-port=8003/tcp
//查看防火墻端口情況
firewall-cmd --list-ports
文章列表
全站熱搜
留言列表