美文网首页
Ubuntu16.04中安装mysql服务

Ubuntu16.04中安装mysql服务

作者: 依米兒 | 来源:发表于2017-05-19 15:57 被阅读797次

<p>1. 系统联网,打开终端输入安装命令:sudo apt-get install mysql-service;安装过程中会让你设置密码,连续输入两次即可
2. 打开mysql:mysql -uroot -p;然后输入刚刚设置的密码。
注:启动mysql服务:service mysql start;停止服务:service mysql stop;重启服务:service mysql restart
3. 打开3306端口。首先查看端口:netstat -an|grep 3306;用root身份打开mysql配置文件 vi /etc/mysql/mysql.conf.d/mysqld.cnf,将bind-address =127.0.0.1注销,重启电脑,在查看端口,如下图则3306端口打开了

端口开启.png 4. 然后使用:mysql -uroot -p;输入密码登录mysql,给root用户赋权:grant all privileges on *.* to 'root'@'%' identified by 'yourpassword'; 使权限生效:flush privileges;
5. 最后重启mysql服务,即可远程连接mysql service</p>

相关文章

网友评论

      本文标题:Ubuntu16.04中安装mysql服务

      本文链接:https://www.haomeiwen.com/subject/cgyyxxtx.html