id 查詢使用者資訊
linux中使用者如何分類
uid user id使用者的id號*****==》身份證號
gid group id使用者組id號碼*****》戶口本號
1.皇上 root uid(0)
2.傀儡 虛擬使用者 uid (1-499) 系統中的每個程序要有乙個對應的使用者,無法使用的
3.百姓 普通使用者 uid 500+
如何保護皇帝
1.禁止root遠端登入
2.修改ssh預設的埠號
3.定期分析/var/log/secure 記錄著使用者登入資訊
與使用者有關的檔案
/etc/passwd 存放的是使用者的資訊
/etc/group 使用者密碼資訊
/etc/gshadow 使用者主資訊
/etc/gshadow 使用者主密碼吸資訊
[root@docker ~]# ll /etc/passwd /etc/group /etc/shadow /etc/gshadow
-rw-r--r-- 1 root root 617 mar 15 21:07 /etc/group
---------- 1 root root 495 mar 15 21:07 /etc/gshadow
-rw-r--r-- 1 root root 1399 mar 15 21:07 /etc/passwd
---------- 1 root root 799 mar 15 21:07 /etc/shadow
(1)root:(2)x:(3)0:(4)0:(5)root:()6/root:/(7)bin/bash
1.使用者名字
2.存放密碼的地方
3.uid
4.gid
5.使用者的說明資訊,預設為空
6.使用者的家目錄
7.使用者使用的shell,使用者使用的命令直譯器
/bin/bash--------------------centos預設的命令直譯器
/sbin/nologin----------------使用者無法登陸系統,相當於是傀儡使用者
Linux使用者分類
超級使用者,一般為root,擁有所有許可權,如 root x 0 0 root root bin bash 系統使用者,一般不能登入 位於 sbin nologin目錄下 如 bin x 1 1 bin bin sbin nologin daemon x 2 2 daemon sbin sbin n...
MonogoDb的角色分類
引用 角色分類 角色 許可權及角色 database user roles read collstats,dbhash,dbstats,find,killcursors,listindexes,listcollections readwrite insert,killcursors,listinde...
使用者 角色 許可權
最近因為要用到許可權這個東西,感覺腦袋很是有點亂,昨天硬是搞到大半夜才終於理清了思路。現在我就將我的思路和大家分享一下,不敢保證完全正確,大家看看便罷。看看便罷 一般我們使用到 使用者 角色 許可權 這三張表的時候,會發現表裡會有很多字段,然後相對應的外來鍵也是很多,往往我們就容易混亂。現在我這邊列...