1.執行以下命令分配新使用者:
# 合併成一條語句:模板
grant [all|
select
|insert|update|delete] on . to @ identified by 'pass'
;# 合併成一條語句:demo
grant select,insert,update,delete on *.* to 'test'@'127.0.0.1' identified by '123456'
;grant all privileges on *.* to '使用者名稱'@'ip位址' identified by '密碼'
;# 分開2條語句先建立使用者 再給使用者賦所有許可權
create user '使用者名稱'@'ip位址' identified by '密碼'
;grant all on *.* to '使用者名稱'@'ip位址'
;# 建立賬號並賦值指定許可權
create user 'test'@'localhost' identified by 'pass'
;grant select on *.* to 'test'@'localhost'
;# mysql8 語法
alter user 'root'@'%' identified with mysql_native_password by '123456'
;# 刪除使用者
drop user root@'%'
;
2.執行完上述命令後用下面的命令重新整理許可權
flush privileges
;# 檢視mysql預設密碼
cat /var/log/mysqld.log
cat /var/log/mysqld.log | grep root@localhost:
3.重啟mysql服務
ubuntu
啟動mysql:
方式一:sudo /etc/init.d/mysql start
方式二:sudo service mysql start
停止mysql:
方式一:sudo /etc/init.d/mysql stop
方式二:sudo service mysql stop
重啟mysql:
方式一:sudo/etc/init.d/mysql restart
方式二:sudo service mysql restart
部落格新增外鏈技巧
前面我寫了不少關於部落格和外鏈的文章了,現在咱們開始講解細節問題。好了,開始說了,可能有的地方突然卡住忘記了,樓下的繼續補充。這個地球人都知道了,不過也要說哦,免得火星來的朋友不記得了。把你部落格寫成你 的形式,這樣的效果不用說了吧,在title裡的哦。不過有一定的危險性 誰規定暱稱不能是 啦,哈哈...
mysql新增外來鍵
為已經新增好的資料表新增外來鍵 語法 alter table 表名 add constraint fk id foreign key 你的外來鍵欄位名 references 外表表名 對應的表的主鍵欄位名 例 alter table tb active add constraint fk id fo...
mysql新增外來鍵
為已經新增好的資料表新增外來鍵 語法 alter table 表名 add constraint fk id foreign key 你的外來鍵欄位名 references 外表表名 對應的表的主鍵欄位名 例 alter table tb active add constraint fk id fo...