当前位置:网站首页>Linux Installation cenos7 MySQL - 8.0.26
Linux Installation cenos7 MySQL - 8.0.26
2022-06-24 14:23:00 【WA_ automata】
1. open VMware, Select the virtual machine to use , Turn on this virtual machine

2. choice xshell6, Sign in CentOS-7

3. Login complete

4. First check the environment
rpm -qa | grep -i mariadb
5. uninstall mariadb
yum remove ......( file name )yum remove mariadb-5.5.68-1.el7.x86_64yum remove mariadb-libs-5.5.68-1.el7.x86_64
6. Check again after uninstalling , The success of

7. If you've installed it before mysql, You also need to uninstall
rpm -qa | grep -i mysql Uninstall the installed programs found by the above command yum remove ......( file name )
Be sure to unload clean , Repeat rpm -qa | grep -i mysql Confirm whether there are unloading residues
Delete mysql Related documents find / -name mysql Delete the relevant files found by the above command rm -rf ......
The last step is to delete rm -rf /etc/my.cnf
8. Install now mysql
Get into cd /usr/local/
create a file mkdir mysql
Use rz Order transmittal of documents
without rz command , Need to reflect the download rz,sz command yum -y install lrzsz

9. Then decompress mysql
tar -xvf mysql-8.0.26-1.el7.x86_64.rpm-bundle.tar
10. Install in sequence
- rpm -ivh mysql-community-common-8.0.26-1.el7.x86_64.rpm
- rpm -ivh mysql-community-client-plugins-8.0.26-1.el7.x86_64.rpm
- rpm -ivh mysql-community-libs-8.0.26-1.el7.x86_64.rpm
- rpm -ivh mysql-community-client-8.0.26-1.el7.x86_64.rpm
- rpm -ivh mysql-community-server-8.0.26-1.el7.x86_64.rpm
11. Installation successful

12. Check that the environment is installed successfully
mysql --version perhaps mysqladmin --version
rpm -qa|grep -i mysql
边栏推荐
- leetcode:1504. Count the number of all 1 sub rectangles
- 怎样评价国产报表工具和BI软件
- 二造考生必看|巩固优选题库助力考生最后冲刺
- Go language - use of goroutine coroutine
- Online text entity extraction capability helps applications analyze massive text data
- 09_一种比较高效的记忆方法
- How to avoid placing duplicate orders
- Defoaming
- Common sense knowledge points
- GO语言-goroutine协程的使用
猜你喜欢

卷积核、特征图可视化

PgSQL queries the largest or smallest data of a field in a group

ASCII code table extracted from tanhaoqiang's C program design (comparison table of common characters and ASCII codes)

P2PDB 白皮书

P2pdb white paper

leetcode.12 --- 整数转罗马数字

Rongyun communication has "hacked" into the heart of the bank

Antd checkbox, limit the selected quantity

unity 等高线创建方法

业务与技术双向结合构建银行数据安全管理体系
随机推荐
ESP32系列--ESP32各个系列对比
Go语言三个高效编程的技巧
Kotlin shared mutable state and concurrency
Py之toad:toad的简介、安装、使用方法之详细攻略
laravel下视图间共享数据
Explore cloud native databases and take a broad view of future technological development
一文搞定 UDP 和 TCP 高频面试题!
鲲鹏arm服务器编译安装PaddlePaddle
Getting to know cloud native security for the first time: the best guarantee in the cloud Era
How to implement redis cache of highly paid programmers & interview questions series 115? How do I find a hot key? What are the possible problems with caching?
v-for 中 key的作用和原理
Online text entity extraction capability helps applications analyze massive text data
Linux 安装 CenOS7 MySQL - 8.0.26
Database considerations
MES在流程和离散制造企业的15个差别(下)
SSH keygen configuration does not require entering a password every time
Idea connection MySQL custom generated entity class code
10_那些格调很高的个性签名
Detailed explanation of redis data types
二叉树中最大路径和[处理好任意一颗子树,就处理好了整个树]