linux 安装 mysql记录

sudo apt-get install mysql-server 一直报错,按照下面的终于安装出来了

这个链接========================= https://cn.linux-console.net/?p=13784

第 1 步:要删除 MySQL 及其所有依赖项,请执行以下命令: sudo apt-get remove --purge mysql*

第 2 步:要删除 MySQL 及其所有依赖项,请执行以下命令: sudo apt-get purge mysql*

第 3 步:要删除 MySQL 和剩余文件,请执行以下命令: sudo apt-get autoremove

第 4 步:要清除本地存储库,请执行以下命令: sudo apt-get autoclean

第 5 步:要清除安装期间创建的数据库,请执行以下命令: sudo apt-get remove dbconfig-mysql

第6步:

官网下安装包 https://dev.mysql.com/downloads/mysql/5.7.html #downloads

mysql-server_8.0.41-1ubuntu20.04_amd64.deb-bundle.tar

第 7 步: 解压到一个文件夹,然后在此文件夹

sudo dpkg -i *.deb

还是报错缺少8.0sever

sudo apt-get install -f 终于出来 输入root密码了

第8步:执行以下命令转到根目录: sudo su

sudo apt-get update

sudo apt-get install mysql-server

sudo apt-get update

sudo apt-get install mysql-client libmysqlclient21

第9步:现在通过运行下面提到的命令来配置MySQL,然后在执行后按回车键: dpkg-reconfigure mysql-apt-config

【Processing triggers for libc-bin (2.31-0ubuntu9.17) ... a@1:~/Downloads/1111$ sudo su sudo apt-get update sudo apt-get install mysql-server sudo apt-get update sudo apt-get install mysql-client libmysqlclient21 root@1:/home/a/Downloads/1111# dpkg-reconfigure mysql-apt-config dpkg-query: package 'mysql-apt-config' is not installed and no information is available Use dpkg --info (= dpkg-deb --info) to examine archive files. /usr/sbin/dpkg-reconfigure: mysql-apt-config is not installed. root@1:/home/a/Downloads/1111# 】

第 10 步: sudo apt-get update

sudo apt-get install mysql-server

sudo service mysql status

要检查刚刚安装的 mysql 版本,请运行以下命令: mysql -V

复制代码
 
相关推荐
未济11 小时前
linux 配置环境变量
linux
傲世仙尊11 小时前
目录即文件-Ext文件系统收尾篇
linux·c语言
虎头金猫11 小时前
4K 视频总卡在公网带宽?用 N1 + OpenList 把网盘播放链路重新理顺
运维·服务器·网络·python·容器·beautifulsoup·pandas
小白男神12 小时前
MySQL进阶学习四(存储过程、游标、触发器)
mysql
这个DBA有点耶12 小时前
MVCC深入:Read View、版本链与快照读——InnoDB并发控制的内核
数据库·mysql·架构
_艾伦 耶格尔.13 小时前
进程间通信
linux
AI职业加油站13 小时前
AI智能体应用工程师证书:政策红利下的职业新风口
大数据·运维·人工智能·学习·职场发展
Liuqy-0513 小时前
Linux IO编程——静态库、动态库
linux
此冬歌咏14 小时前
K8s 节点故障实战:优雅驱逐 31 秒,硬故障 331 秒,以及那个永远 Pending 的 Pod
运维·k8s
彧azz14 小时前
Linux 环境下 Redis 学习总结:数据类型、持久化、锁、事务、主从与缓存问题
linux·redis·笔记·学习·面试