我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Ubuntu下MySQL如何安装

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Ubuntu下MySQL如何安装

这篇文章主要介绍了Ubuntu下MySQL如何安装的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Ubuntu下MySQL如何安装文章都会有所收获,下面我们一起来看看吧。

1. 安装

sudo apt-get update
sudo apt-get install

2. 数据库初始化

sudo
交互如下:
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: y

There are three levels of password validation policy:

LOW    Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary                  file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2  <=====注意这里一定要选2,STRONG
Please set the password for root here.

New password: 

Re-enter new password: 

Estimated strength of the password: 100 
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
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) : y
Success.

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
 - 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!

3. 不使用sudo访问MySQL($ mysql -uroot -p)要求对MySQL设置最高密码强度

Please enter 0 = LOW, 1 = MEDIUM and 2 =

4. 启动MySQL

sudo systemctl start mysql.service
sudo systemctl enable mysql.service
sudo

5. 权限设定(可选)

mysql> use mysql;
mysql> select User,Host,plugin from user;
+------------------+-----------+-----------------------+
| User             | Host      | plugin                |
+------------------+-----------+-----------------------+
| root             | localhost | auth_socket <--这里   |
| mysql.session    | localhost | mysql_native_password |
| mysql.sys        | localhost | mysql_native_password |
| debian-sys-maint | localhost | mysql_native_password |
+------------------+-----------+-----------------------+

mysql> update user set plugin='mysql_native_password' where User='root' and Host='localhost';
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost';
mysql> flush privileges;

6. 修改字符集为UTF-8

mysql> show variables like 'char%';
mysql> show variables like 'collation%';

sudo vim /etc/mysql/conf.d/mysql.cnf
[mysql]
default-character-set = utf8

sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
[mysqld]
collation-server = utf8_general_ci
character-set-server = utf8

sudo

7. 查看运行状态

sudo systemctl status mysql.service
sudo lsof -i:3306
netstat -ntpl | grep

关于“Ubuntu下MySQL如何安装”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Ubuntu下MySQL如何安装”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Ubuntu下MySQL如何安装

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Ubuntu下MySQL如何安装

这篇文章主要介绍了Ubuntu下MySQL如何安装的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Ubuntu下MySQL如何安装文章都会有所收获,下面我们一起来看看吧。1. 安装sudo apt-get upd
2022-11-30

ubuntu下安装mysql

在 Ubuntu 下安装 MySQL,可以按照以下步骤进行操作:1. 打开终端,使用以下命令更新软件包列表:```sudo apt update```2. 使用以下命令安装 MySQL 服务器:```sudo apt install mys
2023-09-08

ubuntu下如何安装opencv

本篇内容主要讲解“ubuntu下如何安装opencv”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“ubuntu下如何安装opencv”吧!1.首先去opencv官网下载适用的安装包。2.下载好后
2023-07-04

Ubuntu下如何安装Jenkins

这篇文章主要介绍“Ubuntu下如何安装Jenkins”,在日常操作中,相信很多人在Ubuntu下如何安装Jenkins问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Ubuntu下如何安装Jenkins”的疑
2023-07-04

ubuntu下如何安装VTK

今天小编给大家分享一下ubuntu下如何安装VTK的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一、操作环境vmware 1
2023-07-04

Ubuntu下如何安装SVN

这篇文章主要介绍“Ubuntu下如何安装SVN”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Ubuntu下如何安装SVN”文章能帮助大家解决问题。更新源sudo apt-get update安装sv
2023-07-04

ubuntu下如何安装vscode

这篇文章主要介绍了ubuntu下如何安装vscode 的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇ubuntu下如何安装vscode 文章都会有所收获,下面我们一起来看看吧。1.从vscode官网下载最新版本
2023-07-04

Ubuntu下如何安装Tengine

本篇内容介绍了“Ubuntu下如何安装Tengine”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1 安装前准备:apt install b
2023-07-04

ubuntu下如何安装ITK

这篇文章主要介绍“ubuntu下如何安装ITK”,在日常操作中,相信很多人在ubuntu下如何安装ITK问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”ubuntu下如何安装ITK”的疑惑有所帮助!接下来,请跟
2023-07-04

ubuntu中如何安装mysql

今天小编给大家分享一下ubuntu中如何安装mysql的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。在ubuntu系统中安装
2023-07-04

如何在ubuntu下安装lamp

这篇文章主要介绍“如何在ubuntu下安装lamp”,在日常操作中,相信很多人在如何在ubuntu下安装lamp问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何在ubuntu下安装lamp”的疑惑有所帮助!
2023-06-16

Ubuntu Linux下如何安装Fcitx

小编给大家分享一下Ubuntu Linux下如何安装Fcitx,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!Ubuntu Linux下安装Fcitx sudo a
2023-06-16

Ubuntu 8.04下如何安装DB2

这篇文章主要为大家展示了“Ubuntu 8.04下如何安装DB2”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Ubuntu 8.04下如何安装DB2”这篇文章吧。在IBM System x355
2023-06-16

ubuntu 16.04下如何安装kubernetes1.6

这篇文章将为大家详细讲解有关ubuntu 16.04下如何安装kubernetes1.6,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。1 kubernetes 简介kubernetes是提供了一套组件来管
2023-06-04

如何在ubuntu下安装jdk

以下是在Ubuntu下安装jdk的步骤:1. 打开终端(Terminal)。2. 确保系统已经更新到最新版本,可以使用以下命令进行更新:```sudo apt updatesudo apt upgrade```3. 使用以下命令安装Open
2023-09-20

Windows下如何安装VirtualBox及Ubuntu

本文小编为大家详细介绍“Windows下如何安装VirtualBox及Ubuntu”,内容详细,步骤清晰,细节处理妥当,希望这篇“Windows下如何安装VirtualBox及Ubuntu”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入
2023-07-04

编程热搜

目录