【MySQL】0.MySQL安装

文章目录


1.MySQL安装

安装与卸载中,用户全部切换成为root,一旦 安装,普通用户能使用的

1.卸载不要的环境

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~# ps ajx |grep mariadb
 480217  480237  480236  480217 pts/0     480236 R+       0   0:00 grep --color=auto mariadb
root@iZuf68hz06p6s2809gl3i1Z:~# systemctl stop mariadb.service
Failed to stop mariadb.service: Unit mariadb.service not loaded.
root@iZuf68hz06p6s2809gl3i1Z:~# ps axj |grep mariadb
 480217  480243  480242  480217 pts/0     480242 R+       0   0:00 grep --color=auto mariadb

这些命令表明我的系统上没有安装或运行MariaDB数据库服务,所以就不管了。


2.检查系统安装包

然后检测系统安装包

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~# rpm -qa | grep mariadb

我这边发现没什么安装包,就不管了,如果有的话就要试着sudo yum remove mariadb,把这些安装包卸载


3.获取mysql官方yum源

然后查看自己的系统版本

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~# cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.6 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.6 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
root@iZuf68hz06p6s2809gl3i1Z:~#

可以进入 http://repo.mysql.com/, 找一下和自己版本一致的资源下载到你的本地,然后上传到你的Linux服务器

注意:最好安装和自己系统一致的mysql版本,否则可能会存在软件兼容性问题

实在搞不准可以去把这些文字复制下来问ai


4.安装mysql yum 源,对比前后yum源

创建存放MySQL的文件夹

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~# cd 108_class
root@iZuf68hz06p6s2809gl3i1Z:~/108_class# ls
abc  lesson3  newdir  test.txt
root@iZuf68hz06p6s2809gl3i1Z:~/108_class# mkdir MySQL
root@iZuf68hz06p6s2809gl3i1Z:~/108_class# cd MySQL

然后安装:

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~/108_class/MySQL# wget https://dev.mysql.com/get/mysql-apt-config_0.8.34-1_all.deb
--2025-04-30 22:03:35--  https://dev.mysql.com/get/mysql-apt-config_0.8.34-1_all.deb
Resolving dev.mysql.com (dev.mysql.com)... 104.69.162.9
Connecting to dev.mysql.com (dev.mysql.com)|104.69.162.9|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://repo.mysql.com//mysql-apt-config_0.8.34-1_all.deb [following]
--2025-04-30 22:03:38--  https://repo.mysql.com//mysql-apt-config_0.8.34-1_all.deb
Resolving repo.mysql.com (repo.mysql.com)... 23.48.176.139, 2600:1413:5000:12a4::1d68, 2600:1413:5000:12a5::1d68
Connecting to repo.mysql.com (repo.mysql.com)|23.48.176.139|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 18108 (18K) [application/x-debian-package]
Saving to: 'mysql-apt-config_0.8.34-1_all.deb.1'

mysql-apt-config_0.8.34-1_all.deb.1        100%[=======================================================================================>]  17.68K  --.-KB/s    in 0.006s  

2025-04-30 22:03:39 (2.95 MB/s) - 'mysql-apt-config_0.8.34-1_all.deb.1' saved [18108/18108]

root@iZuf68hz06p6s2809gl3i1Z:~/108_class/MySQL# 
  1. 安装下载的APT配置包:

    bash 复制代码
    sudo dpkg -i mysql-apt-config_0.8.34-1_all.deb.1

    (注意文件名末尾有".1",这是wget在目标文件已存在时自动添加的)

    在安装过程中,会出现一个配置对话框,您可以选择要安装的MySQL版本。默认选项通常是可以的,选择"Ok"继续。

  2. 更新软件包列表:

    bash 复制代码
    sudo apt update
  3. 安装MySQL服务器:

    bash 复制代码
    sudo apt install mysql-server

    在安装过程中,您将被要求为MySQL root用户设置密码。输入密码后回车。

  4. 安装完成后,检查MySQL服务的状态:

    bash 复制代码
    systemctl status mysql
  5. 登录到MySQL以验证安装:

    bash 复制代码
    mysql -u root -p

    然后输入您在安装时设置的密码。

shell 复制代码
root@iZuf68hz06p6s2809gl3i1Z:~/108_class/MySQL# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.42 MySQL Community Server - GPL

Copyright (c) 2000, 2025, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 
相关推荐
kisy夏2 小时前
多千帆运营平台
大数据·爬虫·mysql
AI人工智能+电脑小能手8 小时前
【大白话说Java面试题 第87题】【Mysql篇】第17题:分布式事务的实现原理?
java·数据库·分布式·mysql·面试
yyuuuzz8 小时前
独立站的技术基础与常见运维问题
大数据·运维·服务器·网络·数据库·aws
键盘上的猫头鹰11 小时前
【MySQL 教程(八)】索引、事务、用户管理、导入导出与分页查询
数据库·python·mysql
Royzst11 小时前
数据库知识点
数据库
雪的季节11 小时前
企业级 Qt 全功能项目
开发语言·数据库·qt
宋浮檀s12 小时前
应急响应——Web漏洞:命令执行+SSRF+弱口令
运维·数据库·sql·网络安全·oracle·应急响应
yurenpai(27届找实习中)13 小时前
redis_点评(21.好友关注——关注、取关功能实现;共同关注功能实现)
数据库·redis·缓存
Rick199313 小时前
索引的排序和分组
数据库·mysql
爱莉希雅&&&13 小时前
zabbix快速搭建和使用
android·linux·数据库·zabbix·监控