Centos7新增使用者並授權

2021-09-09 01:33:14 字數 1699 閱讀 2623

1、建立乙個新使用者:prefma

[root@localhost ~]# adduser centos
2、為新使用者建立初始化密碼

格式passwd 使用者名稱

[root@localhost~]# passwd centos

changing password for user centos.

new password: # 輸入密碼

retype new password: # 再次輸入密碼

passwd: all authentication tokens updated successfully.

二、授權

個人使用者的許可權只可以在本home下有完整許可權,其他目錄需要別人授權。經常需要root使用者的許可權,可以通過修改sudoers檔案來賦予許可權。

新建立的使用者並不能使用sudo命令,需要給他新增授權。

1、查詢sudoers檔案路徑並賦予許可權

[root@localhost~]# whereis sudoers                     # 查詢sudoers檔案路徑

sudoers: /etc/sudoers /etc/sudoers.d /usr/share/man/man5/sudoers.5.gz

[root@localhost~]# ls -l /etc/sudoers # 檢視許可權

-r--r----- 1 root root 3938 sep 6 2017 /etc/sudoers # 只有讀許可權

[root@localhost~]# chmod -v u+w /etc/sudoers # 賦予讀寫許可權

mode of 『/etc/sudoers』 changed from 0440 (r--r-----) to 0640 (rw-r-----)

2、修改sudoers檔案

輸入命令vim /etc/sudoers修改sudoers檔案,新增新使用者資訊:

root all=(all) all

centos all=(all) all #這個是新使用者

然後輸入命令wq!儲存修改。

3、收回許可權

[root@localhost~]# chmod -v u-w /etc/sudoers

mode of 『/etc/sudoers』 changed from 0640 (rw-r-----) to 0440 (r--r-----)

4、新使用者登入

新建連線,使用新建立的使用者登入,並進行驗證,比如:

[prefma@localhost~]$ pwd

/home/centos

[centos@localhost~]$ ls -l /etc/sudoers

-r--r----- 1 root root 3995 oct 16 22:42 /etc/sudoers

CentOS 7中新增新使用者並授權

一 建立乙個admin使用者 root izbp11722iq94py8qx691sz home adduser admin 1沒輸出?沒有輸出在linux下就是操作正確 二 為admin使用者設定密碼 root izbp11722iq94py8qx691sz home passwd admin c...

CentOS 7 中新增新使用者並授權

由於日常使用時root使用者許可權過大,所以新增乙個使用者供日常使用,或者供他人使用。adduser 使用者名稱 passwd 使用者名稱 新建立的使用者並不能使用sudo命令,需要給他新增授權。chmod v u w etc sudoers 使用vim編輯器開啟sudoers檔案 vim etc ...

CentOS 7 新增使用者

首先使用命令 ll usr sbin grep user 找到所有的有關user的命令,adduser guest 建立使用者 passwd guest 修改新增的使用者的密碼 之後系統會提示 更改使用者的密碼。輸入新的密碼之後,確認重新輸入的密碼,之後,系統提示passwd所有的身份驗證令牌已經成...