当前位置:网站首页>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.rpm
The second step : use yumyum makecache Download the package information of the server to the local computer and cache it
yum makecache
The third step : install mysql
sudo yum -y install mysql-community-server
Installation 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 mysqld
Step 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 learning (25) rviz plugin
Clickhouse fields are grouped and aggregated, and SQL is queried according to the granularity of any time period
刨析《C语言》【进阶】付费知识【完结】
AcWing 345. Cattle station solution (nature and multiplication of Floyd)
蓝桥杯2022年第十三届省赛真题-积木画
ROS学习(二十)机器人SLAM功能包——rgbdslam的安装与测试
Scenario practice: quickly build wordpress blog system based on function calculation
LeetCode. 剑指offer 62. 圆圈中最后剩下的数
设置Wordpress伪静态连接(无宝塔)
ROS learning (22) TF transformation
随机推荐
Appium基础 — Appium Inspector定位工具(一)
PartyDAO如何在1年内把一篇推文变成了2亿美金的产品DAO
How did partydao turn a tweet into a $200million product Dao in one year
Today's question -2022/7/4 modify string reference type variables in lambda body
场景实践:基于函数计算快速搭建Wordpress博客系统
ZOJ Problem Set – 2563 Long Dominoes 【如压力dp】
JVM memory model
Domestic images of various languages, software and systems. It is enough to collect this warehouse: Thanks mirror
AcWing 1142. Busy urban problem solving (minimum spanning tree)
Get to know MySQL for the first time
AcWing 345. 牛站 题解(floyd的性质、倍增)
ROS學習(23)action通信機制
CISP-PTE实操练习讲解(二)
字符串转成日期对象
糊涂工具类(hutool)post请求设置body参数为json数据
Image watermarking, scaling and conversion of an input stream
Golang foundation - data type
ROS学习(25)rviz plugin插件
mongodb查看表是否导入成功
设置Wordpress伪静态连接(无宝塔)