Connect mysql on Linux from Windows

ON LINUX:

1 sudo apt-get install mysql-server

2 sudo apt-get install python-dev

3 sudo apt-get install libmysqld-dev

4 pip install MySQL-python

 

sudo vim /etc/init.d/mysql/my.cnf

#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 10.10.10.133 # or bind-address = 127.0.0.1

mysql -u root -p

use mysql;create user ‘dev‘@‘%‘ identified by ‘root‘;  # created the user dev by the password root

grant all privileges on * . * to ‘dev‘@‘%‘ identified by ‘root‘;  # so that dev can used out of the local
flush privileges; # let it work
quit;

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。