Debian下安装mysql,及访问配置
使用
putty
连接服务器直接运行
apt-get install mysql-server mysql-client
安装完成后,即可自动运行
外部不能访问:
修改
mysql
配置文件my.conf
1
bind-address = 127.0.0.1
修改为:
1
bind-address = 0.0.0.0 或者 行前加 # 号注释该行
重启mysql
赋予远程访问权限
1
mysql > GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root_password' WITH GRANT OPTION;
修改默认用户名密码
mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’
mysql> FLUSH PRIVILEGES;
此时即可远程访问mysql数据库,进行管理.
本文作者 : 萧逸雨
原文链接 : http://qiubo.ink/2017/03/28/Debian下安装mysql,及访问配置/
版权声明 : 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!