LINUX篇,設定MYSQL遠端訪問實用版

2022-03-07 21:31:58 字數 1489 閱讀 9173

每次設定root和遠端訪問都容易出現問題, 總結了個通用方法, 關鍵在於實用

step1:

# mysql -u root mysql  

mysql> grant all privileges on *.* to 

'root'@'%'

identified by 'root' with grant option; //增加遠端訪問許可權

mysql> update user set password=password(』newpassword』) where user=』root』;  

//增加root密碼,如果修改密碼時報錯,unknown column 'password' in 'field list',改為update user set authentication_string=password('123456') where user='root'

mysql> flush privileges;  

mysql> quit  

# /etc/init.d/mysql restart  

# mysql -uroot -p  

step2:

在ubuntu上可以

修改/etc/mysql/mysql.conf.d/mysqld.cnf

的 bind-address          = 127.0.0.1   這一行注釋掉即可

step3:

# /etc/init.d/mysql restart  

qq 107966750

實用!還不行,試試這個

use mysql;

create user 'user_test'@'%' identified by 'user_test'; 

grant  select,update,delete,insert,replication client on *.* to user_test@'%';

flush privileges;

如果還是不行,請調整bind adress

位於 /etc/mysql/mysql.conf.d/mysqld.cnf 

調整 bind-address  =  真實ip (預設是 127.0.0.1)

kafka 現實所有topic\

./kafka-topics.sh --zookeeper localhost:2181 --list

git 相關

git push origin 1.0.0 //提交並新建遠端分支

git checkout -b 1.0.0 origin/1.0.0   //對映並更新本地分支到遠端分支

git fetch origin

git checkout -b 5.0.0 origin/5.0.0

還原取消commit;

git reset head

日誌git log --stat   檢視具體提交檔案

linux中mysql設定遠端登入

在ubuntu系統中安裝了mysql 使用apt get從倉庫中安裝的 預設只能在本地登入,想支援遠端登入需手動設定。從多篇博文中學習 已下需要root許可權,su root,然後輸入root密碼即可 1 修改 etc mysql my.cnf檔案 vim my.cnf 注釋bind address...

Linux 下 Mysql 設定 遠端連線

1.檢視配置檔案 etc my.cnf mysqld 如果有配置 bin address 將 bind address 注釋 2.使用root 進入mysql use mysql select host,user from user 檢視是否有 的host 如果沒有則新增 3.新增host 語法 g...

mysql遠端連線設定 MySQL遠端連線設定

這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。這只是乙個簡單mysql設定。但很多圖簡單,卻忽略了安全性。所以對設定中的細節和含義需要弄到清清楚楚才行。mysql遠端連線的設定問題 下面是步驟 1 登陸本地的mysql server mys...