linux新建使用者及許可權

2021-10-05 23:43:46 字數 1178 閱讀 9474

1、增加使用者

# useradd test
2、設定密碼

#passwd yh_test

changing password for user test.

new password:

retype new password:

passwd: all authentication tokens updated successfully.

3、設定使用者組

# groupadd group_test
4、設定使用者的所屬組

# usermod -g group_test test
5、設定檔案的所屬組

# chgrp -r group_test /home/backend
6、給目錄增加許可權

# setfacl -d -m g:group_test:rwx  /home/backend/log
# getfacl log
顯示如下:

# file: log

# owner: root

# group: group_test

user::rwx

group::rwx

other::r-x

default:user::rwx

default:group::rwx

default:group:group_test:rwx

default:mask::rwx

default:other::r-x

7、設定組許可權

# chmod -r u+rwx,g+rwx,o+rx /home/backend
8、更改所有者

chown -r user_test:group_test  /home/backend/log
chgrp -r group_test /home/backend/log
chown -r urser_test /home/backend/log

linux 新建使用者設定許可權

檢視使用者組 在檔案etc group中檢視使用者組的配置檔案,其表示方法為 使用者組 使用者組口令 gid 該使用者組包含的所有使用者 例如 root x 0 adm x 4 syslog,ubuntu 新增使用者組 root許可權 groupadd 使用者組名 建立使用者 useradd 選項 ...

Linux下修改新建使用者許可權

linux下使用useradd增加使用者,如果沒有特別的指定,該使用者指定組名也是使用者名稱,並且為一般使用者 沒有root使用者的許可權 不能ssh遠端登入。xuwangcheng14 root useradd test2 xuwangcheng14 root id test2 uid 1009 ...

Linux使用者及許可權

計算資源 許可權 使用者 使用者組 容器,關聯許可權使用者組,方便的指派許可權 使用者 獲取資源或服務的標識 程序安全上下文 secure context 許可權 r w x 檔案 r 可讀 檢視 w 可寫 編輯或刪除 x 可執行 當作命令提交給核心 目錄 r 可對此目錄ls w 在此目錄建立檔案 ...