建立使用者組publish(發布組)
#groupadd publish
建立使用者:目錄為/home/aaa,組為publish,使用者為aaa
#useradd -s /bin/bash -g publish -d /home/aaa -m aaa
root使用者設定其他使用者密碼
#passwd aaa
然後輸入密碼2次
更改資料夾所屬組為publish
#chgrp -r publish /home/test
更改組許可權,rwx合起來就是4+2+1=7,修改組許可權為讀寫執行=7,乙個rwxrwxrwx許可權全開放的檔案,數值表示為777,,當前目錄執行
#chmod -r 770 test
新建使用者並授權
1.mysql命令列新建使用者 登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql.user host,user,password values localhost phplamp password 1234 重新整理系統許可權表 mysq...
mysql新建並授權使用者
登入mysql mysql u root p 密碼 建立使用者 mysql insert into mysql user host,user,password values localhost phplamp password 1234 重新整理系統許可權表 mysql flush privileg...
mysql 新建使用者及授權
the create user command mysql create user yy identified by 123 yy表示你要建立的使用者名稱,後面的123表示密碼 上面建立的使用者可以在任何地方登陸。如果要限制在固定位址登陸,比如localhost 登陸 mysql create us...