2019独角兽企业重金招聘Python工程师标准>>>
1) 安装
sudo apt-get install mysql-server
apt-get isntall mysql-client
apt-get install libmysqlclient-dev
2) 验证
sudo netstat -tap | grep mysql
如果有
就代表已经安装成功。
3)开启远程访问
1、 vi /etc/mysql/my.cnf 将bind-address = 127.0.0.1注释(配置文件也可能不在这里,在/etc/mysql/下的其他配置文件)
2、进行授权
root@sendo-ubuntu:mysql -uroot -padmin (root表示用户名,admin表示密码)
root@sendo-ubuntu:use mysql;
root@sendo-ubuntu:update user set host = '%' where user = 'root';(这一句执行完可能会报错,不用管它。)
root@sendo-ubuntu:FLUSH PRIVILEGES;
3、重启 /etc/init.d/mysql restart