当前位置:网站首页>Centos8 install MySQL 8.0 using yum x
Centos8 install MySQL 8.0 using yum x
2022-07-07 01:54:00 【[email protected]】
Catalog
First step : add to MySQL Yum The repository
The third step : install mysql
Step four , start-up mysql, And set it to boot
Step six ,Linux Login and local login tests
First step : add to MySQL Yum The repository
yum -y install https://repo.mysql.com//mysql80-community-release-el7-3.noarch.rpmThe second step : use yumyum makecache Download the package information of the server to the local computer and cache it
yum makecacheThe third step : install mysql
sudo yum -y install mysql-community-serverInstallation successful !!!!

Step four , start-up mysql, And set it to boot
Execute it first , After successful startup, execute the next step to set it as startup
systemctl start mysqld
Set boot up
systemctl enable mysqldStep five , Change password
First check the default generated password , The default password is the last output [email protected]: All the back
sudo grep 'temporary password' /var/log/mysqld.log
Sign in , Then the password is automatically generated by the one above
mysql -uroot -p

Then the next step is to change the password , Just step by step
mysql>set global validate_password.policy=0;
mysql>set global validate_password.length=4;
mysql>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password By 'newPassword'; # Change Password
mysql>flush privileges;
mysql>update mysql.user set host = '%',plugin='mysql_native_password' where user = 'root'; # All hosts can access
mysql>flush privileges;
mysql>exit;# Note that the initialization password must match the length , And must contain numbers , Lowercase or capital letters , Special characters .
If the following two items are wrong :ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
Run the following command first .
mysql>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password By '[email protected]';Step six ,Linux Login and local login tests

版权声明
本文为[[email protected]]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/188/202207061817145762.html
边栏推荐
- ROS學習(23)action通信機制
- 设置Wordpress伪静态连接(无宝塔)
- ROS学习(24)plugin插件
- Gin introduction practice
- According to the analysis of the Internet industry in 2022, how to choose a suitable position?
- ROS学习(22)TF变换
- 猫猫回收站
- Blue Bridge Cup 2022 13th provincial competition real topic - block painting
- IDEA常用的快捷键
- AcWing 346. 走廊泼水节 题解(推公式、最小生成树)
猜你喜欢

【唯一】的“万字配图“ | 讲透【链式存储结构】是什么?

Recognition of C language array

ROS学习(23)action通信机制

js如何快速创建一个长度为 n 的数组

How can I code for 8 hours without getting tired.

Gin introduction practice

Batch delete data in SQL - set in entity

ROS学习(二十)机器人SLAM功能包——rgbdslam的安装与测试

Modify the system time of Px4 flight control

Shell script quickly counts the number of lines of project code
随机推荐
图片打水印 缩放 和一个输入流的转换
百度飞将BMN时序动作定位框架 | 数据准备与训练指南 (上)
AcWing 1140. Shortest network (minimum spanning tree)
ROS learning (XIX) robot slam function package cartographer
初识MySQL
Shortcut keys commonly used in idea
AcWing 1142. 繁忙的都市 题解(最小生成树)
爬虫实战(六):爬笔趣阁小说
一文带你走进【内存泄漏】
Recognition of C language array
Gin 入门实战
C语言【23道】经典面试题【下】
BigDecimal 的正确使用方式
JS es5 peut également créer des constantes?
修改px4飞控的系统时间
[unique] what is the [chain storage structure]?
454-百度面经1
C language instance_ five
HDU 4661 message passing (wood DP & amp; Combinatorics)
Batch delete data in SQL - set in entity