1. 程式人生 > >linux 查看mysql 、nginx用戶和組

linux 查看mysql 、nginx用戶和組

logs sta 替換 gin 命令 nginx 用戶 inux tar

  1. 查看是否存在MySQL組:
  2. [root@tsxs home]# grep mysql /etc/group
  3. 不存在創建MySQL組:
  4. [root@tsxs home]# groupadd mysql
  5. 查看是否存在MySQL用戶:
  6. [root@tsxs home]# grep mysql /etc/passwd
  7. 不存在創建MySQL用戶:
  8. [root@tsxs ~]# useradd mysql -g mysql -M -s /sbin/nologin
  9. 檢查:
  10. [root@tsxs sbin]# grep mysql /etc/passwd
  11. mysql:x:500:500::/home/mysql:/sbin/nologin
  12. 使用groups查看用戶mysql所在的組
  13. [root@tsxs sbin]# groups mysql
  14. mysql : mysql

註:-g:指定新用戶所屬的用戶組(group); -M:不建立根目錄;-s:定義其使用的shell,/sbin/nologin代表用戶不能登錄系統。

查nginx 可替換命令後面的mysql

參考:https://www.cnblogs.com/zhuiluoyu/p/5453579.html

linux 查看mysql 、nginx用戶和組