新建使用者的相關檔案

2021-09-20 20:17:03 字數 2926 閱讀 5997

1

/etc/login.defs

針對文字內容我們進行簡要說明

1

2

3

4

5

6

7

8

9

10

cat /etc/login.defs##以下僅摘出部分字段進行分析

mail_dir        /var/spool/mail##建立使用者時對應的郵箱路徑

pass_max_days   99999##密碼的最長有效期

pass_min_days   0##密碼的最短有效期

pass_min_len    5##密碼最短長度

pass_warn_age   7##密碼過期前幾天開始警告

uid_min                  1000##最小使用者id號

uid_max                 60000##最大使用者id號

gid_min                  1000##最小組id號

gid_max                 60000##最大組id號

如果我們對上述內容進行修改,那麼以後新建的使用者的資訊就會改變,舉個例子

1

2

3

4

5

##修改gid_min 為3000,那麼我在新建立使用者,其gid就會從3000開始算,但是uid還是按照原來的算

[root@centos7 ~]#useradd aaaa

[root@centos7 ~]#getent passwd aaaa

aaaa:x:1001:3000::/home/aaaa:/bin/bash

##注意:如果修改uid_min的話,新建的使用者gid也會跟著改變

1

/etc/default/useradd

新建使用者的資訊

1

2

3

4

5

6

7

8

[root@centos7 ~]#cat /etc/default/useradd

group=100

home=/home##新建使用者的目錄預設放在這裡

inactive=-1##密碼過期幾天後會失效,-1表示不啟用此字段即密碼過期後依然可用

expire=

shell=/bin/bash##建立使用者預設的shell程式型別

skel=/etc/skel##新建使用者的家目錄中會有一些初始隱藏檔案,就是從skel這個目錄中傳過去的

create_mail_spool=yes##伴隨新建使用者,mail也會建立

1

/etc/skel

新建立的使用者,其對應的家目錄中會有一些初始檔案,這些檔案就是從這個skel來的

1

2

3

4

5

6

7

8

[root@centos7 ~]#ll /etc/skel/ -a

total 24

drwxr-xr-x.   3 root root   78 jul 14 11:16 .

drwxr-xr-x. 133 root root 8192 jul 22 16:43 ..

-rw-r--r--.   1 root root   18 aug  3  2016 .bash_logout

-rw-r--r--.   1 root root  193 aug  3  2016 .bash_profile

-rw-r--r--.   1 root root  231 aug  3  2016 .bashrc##裡面有別名

drwxr-xr-x.   4 root root   39 jul 14 11:16 .mozilla

是不是有些檔案很面熟呢

以上是本次對這3個檔案的簡要說明,如有紕漏,請多多指教!

oracle新建使用者相關操作

oracle新建使用者相關操作 檢視使用者及表空間 select username,default tablespace from dba users 檢視表空間 users 資訊 select t.from sys.dba data files t where t.tablespace name ...

linux新建使用者,使用者組相關總結

useradd tomcat boot 建立tomcat boot使用者,同時會建立乙個同名的工作組tomcat boot passwd tomcat boot 設定tomcat boot使用者密碼 userdel tomcat boot 刪除tomcat boot使用者及tomcat boot工作...

使用者配置相關檔案

使用者配置相關檔案小總結 etc passwd 記錄使用者相關的資訊 etc shadow 密碼影子檔案 etc group 記錄使用者組相關的資訊 etc gshadow 密碼影子檔案 組密碼 etc passwd 檔案中各段的內容 第1段 使用者名稱 第2段 密碼佔位符,真正的密碼在 etc s...