当前位置:网站首页>Install mysql8 for Linux X ultra detailed graphic tutorial
Install mysql8 for Linux X ultra detailed graphic tutorial
2022-07-07 19:20:00 【Poetic elegance】
1、 download Mysql8.X Version installation package
1.1 You can download it directly with Baidu online disk
link :https://pan.baidu.com/s/1lc5ctVyp7kXXZXCsh9AiRA?pwd=yyds
Extraction code :yyds
1.2 Download from the official website
The website links
The specific download steps can be seen in another article I wrote separately mysql Download blog Jump Links
2、 Download good mysql Install package upload linux
3、Linux Installation procedure on
- install Mysql rely on 【perl net-tools】
yum install perl net-tools -y
- uninstall mariadb
rpm -qa | grep mariadb
rpm -e --nodeps mariadb-libs-5.5.60-1.el7_5.x86_64
- install mysql
- decompression mysql
tar -xvf mysql-8.0.18-1.el7.x86_64.rpm-bundle.tar
- Install the required installation package ( Four packages after decompression )
Install step by step , You can't take a random step , Otherwise, unload the corresponding slave
rpm -ivh mysql-community-common-8.0.18-1.el7.x86_64.rpm
rpm -ivh mysql-community-libs-8.0.18-1.el7.x86_64.rpm
rpm -ivh mysql-community-client-8.0.18-1.el7.x86_64.rpm
rpm -ivh mysql-community-server-8.0.18-1.el7.x86_64.rpm
4、 Change custom password
- start-up mysql
systemctl start mysqld
- Find the password and log in Mysql
cat /var/log/mysqld.log | grep password
mysql -u root -p
Enter the newly generated mysql Random cipher
- modify Mysql password 8.0 Version input command
set global validate_password.policy=LOW;
set global validate_password.length=6;
- Change encryption 、
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456' PASSWORD EXPIRE NEVER;
- Update user password
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
- Refresh the permissions
FLUSH PRIVILEGES;
5、 Modify the remote connection
use mysql;
update user set host='%' where user = 'root';
commit;
exit;
- restart mysq
systemctl restart mysqld;
- Local navicat Connect remote mysql The server
边栏推荐
猜你喜欢
Desci: is decentralized science the new trend of Web3.0?
超分辨率技术在实时音视频领域的研究与实践
Pasqal首席技术官:模拟量子计算率先为工业带来量子优势
微信网页调试8.0.19换掉X5内核,改用xweb,所以x5调试方式已经不能用了,现在有了解决方案
A hodgepodge of ICER knowledge points (attached with a large number of topics, which are constantly being updated)
Cadre de validation des données Apache bval réutilisé
Reuse of data validation framework Apache bval
链式二叉树的基本操作(C语言实现)
RISCV64
如何选择合适的自动化测试工具?
随机推荐
SlashData开发者工具榜首等你而定!!!
Jerry's headphones with the same channel are not allowed to pair [article]
The top of slashdata developer tool is up to you!!!
ES6 note 1
多个kubernetes集群如何实现共享同一个存储
3. About cookies
Numpy——2. Shape of array
Zhong Xuegao wants to remain innocent in the world
杰理之手动配对方式【篇】
In the first half of 2022, I found 10 books that have been passed around by my circle of friends
解决远程rviz报错问题
Where does brain hole come from? New research from the University of California: creative people's neural connections will "take shortcuts"
【牛客网刷题系列 之 Verilog进阶挑战】~ 多bit MUX同步器
鸿蒙智能家居【1.0】
基于图像和激光的多模态点云融合与视觉定位
[Base64 notes] [suggestions collection]
Basic operation of chain binary tree (implemented in C language)
Pasqal首席技术官:模拟量子计算率先为工业带来量子优势
App capture of charles+postern
ES6笔记一