linux sudo許可權配置
這裡記錄一下linux的sudo簡單配置過程,備後查。
1、root開啟sudo配置檔案
[root@centos ~]# visudo
2、sudo配置項
## Next comes the main part: which users can run what software on
## which machines (the sudoers file can be shared between multiple
## systems).
## Syntax:
##
## user MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
mysql ALL=(ALL) ALL #配置mysql使用者等同root使用者執行的所有命令
3、配置mysql免密執行
## Read drop-in files from /etc/sudoers.d (the # here does not mean a comment)
#includedir /etc/sudoers.d
mysql localhost=(root) NOPASSWD:ALL
4、root修改mysql的密碼
[root@centos ~]# passwd mysql
5、mysql新增mysql使用者的sudo密碼,sudo密碼是第4部設定的mysql作業系統層的密碼
-bash-4.1$ sudo uname
[sudo] password for mysql:
Linux
-bash-4.1$
6、檢視sudo配置
[root@centos ~]# sudo -l
Matching Defaults entries for root on this host:
requiretty, !visiblepw, always_set_home, env_reset, env_keep="COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS",
env_keep+="MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE", env_keep+="LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT
LC_MESSAGES", env_keep+="LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE", env_keep+="LC_TIME LC_ALL LANGUAGE LINGUAS
_XKB_CHARSET XAUTHORITY", secure_path=/sbin\:/bin\:/usr/sbin\:/usr/bin
User root may run the following commands on this host:
(ALL) ALL
[root@centos ~]#
7、mysql使用者測試sudo是否正確
-bash-4.1$ sudo mkdir /test1
-bash-4.1$ ls -l /test1
total 0
-bash-4.1$ rm -rf /test1
rm: cannot remove `/test1': Permission denied
-bash-4.1$ sudo rm -rf /test1
-bash-4.1$ ls -l /test1
ls: cannot access /test1: No such file or directory
-bash-4.1$
linux的sudo配置完成!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29357786/viewspace-2199488/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何在 Linux 中配置 sudo 訪問許可權Linux訪問許可權
- Linux中無許可權使用sudoLinux
- Linux 筆記分享十:sudo 許可權Linux筆記
- Linux 筆記分享十一:sudo 許可權Linux筆記
- linux給使用者新增sudo許可權Linux
- linux為使用者新增sudo許可權Linux
- 『學了就忘』Linux許可權管理 — 54、sudo授權Linux
- Linux為普通使用者新增sudo許可權Linux
- 【Linux】Liunx配置sudo 使oracle使用者有root許可權執行指令碼LinuxOracle指令碼
- Linux下ACL許可權控制以及用sudo設定使用者對命令的執行許可權Linux
- Linux-許可權管理(ACL許可權)Linux
- linux 檔案許可權 s 許可權和 t 許可權解析Linux
- 利用sudo命令為Ubuntu分配管理許可權(轉)Ubuntu
- 無 sudo 許可權使用者的生存指南
- Linux許可權Linux
- Linux 許可權管理之目錄許可權限制Linux
- 在無 sudo 許可權的 linux 伺服器上安裝軟體Linux伺服器
- Linux許可權控制Linux
- linux 許可權 chownLinux
- 許可權管理[Linux]Linux
- Linux ACL 許可權Linux
- Linux 特殊許可權Linux
- Linux的檔案許可權與目錄配置Linux
- Linux的檔案存取許可權和0644許可權Linux
- Linux特殊許可權之suid、sgid、sbit許可權LinuxUI
- linux許可權補充:rwt rwT rws rwS 特殊許可權Linux
- Linux提權-許可權升級Linux
- vim儲存只讀檔案時獲得sudo許可權
- 使用了 sudo 卻依然顯示許可權不夠的原因
- Linux檔案許可權Linux
- Linux基本許可權管理Linux
- linux許可權詳解Linux
- Linux 檔案許可權Linux
- Linux的許可權控制Linux
- Oracle的物件許可權、角色許可權、系統許可權Oracle物件
- linux sudo提權Linux
- 許可權之選單許可權
- linux配置sudoLinux