banner

[Rule] Rules  [Home] Main Forum  [Portal] Portal  
[Members] Member Listing  [Statistics] Statistics  [Search] Search  [Reading Room] Reading Room 
[Register] Register  
[Login] Loginhttp  | https  ]
 
Forum Index Thảo luận hệ điều hành *nix Remote Mysql bằng ssh  XML
  [Question]   Remote Mysql bằng ssh 12/03/2012 19:12:11 (+0700) | #1 | 258164
daicadung
Member

[Minus]    0    [Plus]
Joined: 23/02/2009 18:03:55
Messages: 13
Offline
[Profile] [PM]
VPS mình sử dụng Cpanel trong đó có mục add ip để cho phép renote db, mình hay dùng cách này để tạo ra nhiều sever chạy code nhưng chung 1 data, hiện nay Cpanel của mình đã bị hết hạn và chỉ còn có thể quản lý bằng ssh nên mình không thể vào để add ip được nữa, nên mình post bài này mong muốn mọi người có thể hướng dẫn mình add ip thông qua ssh.
Cảm ơn mọi người đã đọc bài.
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 12/03/2012 19:34:18 (+0700) | #2 | 258170
[Avatar]
quanta
Moderator

Joined: 28/07/2006 14:44:21
Messages: 7265
Location: $ locate `whoami`
Offline
[Profile] [PM]
Mình chưa hiểu đoạn màu cam?

daicadung wrote:
VPS mình sử dụng Cpanel trong đó có mục add ip để cho phép renote db, mình hay dùng cách này để tạo ra nhiều sever chạy code nhưng chung 1 data, hiện nay Cpanel của mình đã bị hết hạn và chỉ còn có thể quản lý bằng ssh nên mình không thể vào để add ip được nữa, nên mình post bài này mong muốn mọi người có thể hướng dẫn mình add ip thông qua ssh.
Cảm ơn mọi người đã đọc bài. 
Let's build on a great foundation!
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 12/03/2012 21:29:10 (+0700) | #3 | 258213
[Avatar]
azteam
Member

[Minus]    0    [Plus]
Joined: 17/03/2007 21:12:46
Messages: 177
Location: /dev/null
Offline
[Profile] [PM]
Ý bạn này là thông thường bạn vẫn sử dụng 1 server đóng vại trò db server để cho các host (webserver) connect vào. Bình thường muốn allow IP host (webservers) thì bạn ý add allow trên Cpanel.
Bạn thử tìm hiểu thêm về remote mysql. Trên server chạy db, sau khi bạn log vào mysql server. Bạn sử dụng lệnh để cấp quyền access vào db.
Vdu:
mysql> update db set host='yourip' where db='yourwebdb';
mysql> update user set host='yourip' where user='yourwebuser';
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 13/03/2012 19:43:04 (+0700) | #4 | 258464
daicadung
Member

[Minus]    0    [Plus]
Joined: 23/02/2009 18:03:55
Messages: 13
Offline
[Profile] [PM]

azteam wrote:
Ý bạn này là thông thường bạn vẫn sử dụng 1 server đóng vại trò db server để cho các host (webserver) connect vào. Bình thường muốn allow IP host (webservers) thì bạn ý add allow trên Cpanel.
Bạn thử tìm hiểu thêm về remote mysql. Trên server chạy db, sau khi bạn log vào mysql server. Bạn sử dụng lệnh để cấp quyền access vào db.
Vdu:
mysql> update db set host='yourip' where db='yourwebdb';
mysql> update user set host='yourip' where user='yourwebuser'; 


yourwebdb = tên database
yourwebuser = tên user đăng nhập cpanel đúng ko bạn
mình đã thử nhưng nó vẫn báo ip này ko có quyền kết nối smilie
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 13/03/2012 19:51:06 (+0700) | #5 | 258466
[Avatar]
tranhuuphuoc
Moderator

Joined: 05/09/2004 06:08:09
Messages: 865
Location: Lầu Xanh
Offline
[Profile] [PM] [WWW]
Xem qua bài viết này
http://www.chamsocmaychu.com/2011/12/tips-cho-phep-may-tinh-tu-xa-ket-noi-en.html
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 14/03/2012 16:27:59 (+0700) | #6 | 258635
daicadung
Member

[Minus]    0    [Plus]
Joined: 23/02/2009 18:03:55
Messages: 13
Offline
[Profile] [PM]

tranhuuphuoc wrote:
Xem qua bài viết này
http://www.chamsocmaychu.com/2011/12/tips-cho-phep-may-tinh-tu-xa-ket-noi-en.html 

Bạn có thể giải thích cho mình 1 chút đc ko
Code:
GRANT ALL ON *.* to root@'10.96.36.250' IDENTIFIED BY 'admins';
FLUSH PRIVILEGES;


- root ở đây mình thay bằng user các host do mình creat đc ko
- admins ở đây là gì
câu lệnh Flush privileges ở đây có đi kèm luôn sau câu lệnh Code:
GRANT ALL ON *.* to root@'10.96.36.250' IDENTIFIED BY 'admins'
không, hay là câu lệnh này có chức năng xoá ip đã add vào.
Thank bạn nhiều
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 14/03/2012 16:42:55 (+0700) | #7 | 258638
[Avatar]
quanta
Moderator

Joined: 28/07/2006 14:44:21
Messages: 7265
Location: $ locate `whoami`
Offline
[Profile] [PM]
RTFM:
http://dev.mysql.com/doc/refman/5.1/en/grant.html
http://dev.mysql.com/doc/refman/5.1/en/flush.html
Let's build on a great foundation!
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 14/03/2012 19:48:07 (+0700) | #8 | 258654
daicadung
Member

[Minus]    0    [Plus]
Joined: 23/02/2009 18:03:55
Messages: 13
Offline
[Profile] [PM]
Thank all, mình đã làm đc rồi ^^, xin phép cho mình hỏi thêm câu nữa đó là add ok rồi, vậy muốn xoá đi thì như thế nào vậy smilie
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 14/03/2012 20:40:09 (+0700) | #9 | 258665
[Avatar]
quanta
Moderator

Joined: 28/07/2006 14:44:21
Messages: 7265
Location: $ locate `whoami`
Offline
[Profile] [PM]
LMGTFY:
http://bit.ly/xeJGaw
Let's build on a great foundation!
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 15/03/2012 13:17:38 (+0700) | #10 | 258823
daicadung
Member

[Minus]    0    [Plus]
Joined: 23/02/2009 18:03:55
Messages: 13
Offline
[Profile] [PM]

quanta wrote:
LMGTFY:
http://bit.ly/xeJGaw
 

cái này là del user mà bạn, ý mình hỏi là xoá ip cho phép remote ấy bạn ?
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 15/03/2012 13:26:04 (+0700) | #11 | 258827
[Avatar]
quanta
Moderator

Joined: 28/07/2006 14:44:21
Messages: 7265
Location: $ locate `whoami`
Offline
[Profile] [PM]

daicadung wrote:

quanta wrote:
LMGTFY:
http://bit.ly/xeJGaw
 

cái này là del user mà bạn, ý mình hỏi là xoá ip cho phép remote ấy bạn ? 

Tìm hiểu xem trong MySQL `bob@1.1.1.1` và `bob@2.2.2.2` có khác nhau không. Nếu có, muốn delete `bob@2.2.2.2` thì làm thế nào.
Let's build on a great foundation!
[Up] [Print Copy]
  [Question]   Remote Mysql bằng ssh 15/03/2012 20:57:45 (+0700) | #12 | 258916
pntri85
Member

[Minus]    0    [Plus]
Joined: 25/08/2011 07:37:41
Messages: 83
Offline
[Profile] [PM]
Bạn nên tìm hiểu 1 số câu lệnh căn bản trong Mysql đi
[Up] [Print Copy]
[digg] [delicious] [google] [yahoo] [technorati] [reddit] [stumbleupon]
Go to: 
 Users currently in here 
1 Anonymous

Powered by JForum - Extended by HVAOnline
 hvaonline.net  |  hvaforum.net  |  hvazone.net  |  hvanews.net  |  vnhacker.org
1999 - 2013 © v2012|0504|218|