MySQL 安裝後登入訪問問題

2021-08-31 17:25:34 字數 989 閱讀 1964

//修改mysql  root 使用者的密碼,預設安狀時為空。

1.停止mysql

/etc/init.d/mysql stop

2.執行:mysqld_safe --user=mysql --skip-grant-tables --skip-networking& (不知道什麼意思)

3執行:mysql -u root mysql 

4.執行:update user setpassword=password('newpassword') where user='root';

5.flush privileges;重新整理許可權

6.退出,執行:/etc/init.d/mysql restart

//新增乙個新使用者並賦訪問許可權。

create user 'sims'@'localhost' identified by 'password'; 可以在本機上訪問的。

create user 'sims'@'%' identified by 'password'; 可以在別的機器上訪問到本機的。

/*****************************************下面的是從論壇中找過來的*************************************/

//給某台電腦所有mysql操作許可權

grant all privileges  on *.* to 『sims』@'ip';

//給任意一台電腦mysql增刪改查許可權

grant insert,update,delete,select on *.* to 

'sims'@'%'

;總結下就是

grant  許可權  on 資料庫名.資料庫表名 to 使用者名稱@電腦ip(所有電腦則為%)identified by 密碼

mysql下的user表中常用許可權為select,insert,update,delete,create,drop

//重新整理許可權

flush privileges;

MLflow安裝後UI訪問問題

問題 在虛擬機器centos環境中安裝了mlflow,能正常執行,但在windows上一直訪問不了ui http 虛擬機器ip 5000 後面瀏覽受到啟發,自己在同一臺虛擬機器上啟動了乙個tracking server解決了問題。環境 mlflow安裝環境 centos6.8 anaconda3 5...

mysql遠端訪問問題

1 進入mysql,建立乙個新使用者xuys 格式 grant 許可權 on 資料庫名.表名 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to xuys 192.168.88.234 identified by ...

關於mysql資料訪問問題

問題 利用sqlalchemy page size 1000 page num 0 session.query escontentdata limit page size offset page size page num all 當資料庫資料非常多的情況查詢速度就回非常慢。經過測試select f...