前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Ubuntu18.04——安装MySQL

Ubuntu18.04——安装MySQL

作者头像
凡人飞
发布2020-09-21 11:04:27
1.1K0
发布2020-09-21 11:04:27
举报
文章被收录于专栏:指缝阳光指缝阳光

一、安装MySQL

  1. 执行如下命令apt install mysql-server 之后会有个提示输入:y。如下
在这里插入图片描述
在这里插入图片描述
  1. 安装完成之后输入以下命令查看是否成功netstat -tap | grep mysql 显示LISTEN则代表安装成功
在这里插入图片描述
在这里插入图片描述

二、配置MySQL

  1. 此时可以输入以下命令直接进入mysql,没有密码 mysql -u root -p 输入密码出直接回车,可以查看所有数据库
在这里插入图片描述
在这里插入图片描述
  1. 接下来退出mysql,执行以下命令对mysql进行配置 mysql_secure_installation 接着的具体选择说明如下: Securing the MySQL server deployment. Connecting to MySQL using a blank password. VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to setup VALIDATE PASSWORD plugin? == # 要安装验证密码插件吗?== Press y|Y for Yes, any other key for No: N # 这里我选择N Please set the password for root here. New password: # 输入要为root管理员设置的数据库密码 Re-enter new password: # 再次输入密码 By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : y # 删除匿名账户 Success. Normally, root should only be allowed to connect from ‘localhost’. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : N # 禁止root管理员从远程登录,这里我没有禁止 … skipping. By default, MySQL comes with a database named ‘test’ that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y # 删除test数据库并取消对它的访问权限
    • Dropping test database… Success.
    • Removing privileges on test database… Success.

    Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y == # 刷新授权表,让初始化后的设定立即生效== Success. All done!

  2. 检查MySQL服务状态 systemctl status mysql 显示如下则代表正常
在这里插入图片描述
在这里插入图片描述
  1. 再次登录进入MySQL,使用刚设置的密码
在这里插入图片描述
在这里插入图片描述
  1. 配置MySQL允许远程访问,编辑以下文件 vim /etc/mysql/mysql.conf.d/mysqld.cnf 注释掉bind-address = 127.0.0.1
在这里插入图片描述
在这里插入图片描述

然后保存退出

三、进入MySQL数据,执行授权命令

代码语言:javascript
复制
mysql -u root -p

mysql> grant all on *.* to root@'%' identified by '你的密码' with grant option;

mysql> flush privileges;    # 刷新权限

mysql> exit

如下:

在这里插入图片描述
在这里插入图片描述

重启mysql:

代码语言:javascript
复制
systemctl restart mysql

四、使用Navicat for MySQL连接

在这里插入图片描述
在这里插入图片描述

参考自:https://www.cnblogs.com/opsprobe/p/9126864.html

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-12-21 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 一、安装MySQL
  • 二、配置MySQL
  • 三、进入MySQL数据,执行授权命令
  • 四、使用Navicat for MySQL连接
相关产品与服务
云数据库 SQL Server
腾讯云数据库 SQL Server (TencentDB for SQL Server)是业界最常用的商用数据库之一,对基于 Windows 架构的应用程序具有完美的支持。TencentDB for SQL Server 拥有微软正版授权,可持续为用户提供最新的功能,避免未授权使用软件的风险。具有即开即用、稳定可靠、安全运行、弹性扩缩等特点。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档