【笔记】记一次在linux上通过在线安装mysql报错 CentOS 7 的官方镜像已经不再可用的解决方法+mysql配置

报错(恨恨恨恨恨恨恨!!!!!):

root@localhost \~\]# sudo yum install mysql-server 已加载插件:fastestmirror, langpacks Determining fastest mirrors Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7\&arch=x86_64\&repo=os\&infra=stock error was 14: curl#6 - "Could not resolve host: mirrorlist.centos.org; 未知的错误" One of the configured repositories failed (未知), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this: 1. Contact the upstream for the repository and get them to fix the problem. 2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work). 3. Run the command with the repository temporarily disabled yum --disablerepo=\ ... 4. Disable the repository permanently, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage: yum-config-manager --disable \ or subscription-manager repos --disable=\ 5. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise: yum-config-manager --save --setopt=\.skip_if_unavailable=true Cannot find a valid baseurl for repo: base/7/x86_64 #### **意思是CentOS 7 的官方镜像已经不再可用,导致 `yum` 无法从标准的仓库中获取软件包信息** ## **解决方法:** 首先,卸载掉你那系统自带的数据库 ![](https://i-blog.csdnimg.cn/direct/059c339cb9ae4e7eb239e035efd1144b.png) 其次 输入 vim /etc/yum.repos.d/CentOS-Base.repo 编辑这该死的文件 ### **把每个部分****(这里举例base部分)****的mirrorlist****注释掉** ### **去掉****baseurl的注释****并且将其改成baseurl=http://vault.centos.org/$contentdir/$releasever/os/$basearch/** ### **(!!!!!!!!!!!!!!!!!!!!!!!!!!!很重要!!!!!!!!!!!!!!!!!!!!)** ![](https://i-blog.csdnimg.cn/direct/108037d099374beaac33999967f874d0.png) esc退出文件 :wq保存 输入 sudo yum install wget sudo yum install mysql-server 然后mysql!终于!可以!正常!下载了!!!!!!!!!!!!!!!! ![](https://i-blog.csdnimg.cn/direct/60c04e12f9d74812ae7b577c379545fe.png) ## **配置篇:** 输入:**sudo grep 'temporary password' /var/log/mysqld.log** **获取随机密码 记住 后面要考** ![](https://i-blog.csdnimg.cn/direct/0b1048605cdd4c8ba9c4d9d5a2b1b558.png) 输入:**sudo mysql_secure_installation** **新密码要求:** * 最少8个字符 * 至少1个大写字母 * 至少1个小写字母 * 至少1个数字 * 至少1个特殊字符 ![](https://i-blog.csdnimg.cn/direct/6abb1f1358ff43519745250a47df5353.png) ![](https://i-blog.csdnimg.cn/direct/d9569793aeec44d0b8e2bc1bdc664a2c.png) 包含图上的虚红色记号 一共五个问题 我是ynnys ![](https://i-blog.csdnimg.cn/direct/b5ef356304234b4298341c558f60d7d5.png) 令人感动的All done 来之不易 在输入一次 mysql -u root -p登录mysql ![](https://i-blog.csdnimg.cn/direct/488f0a1ff47941e0862fa892ba71e10d.png) 登录成功!

相关推荐
Forest_HAHA14 分钟前
<8>-MySQL复合查询
数据库·mysql
CURRY30_HJH38 分钟前
将包含父子关系的扁平列表 List<Demo> 转换成树形结构的 List<DemoVO>,每个节点包含自己的子节点列表
linux·服务器·windows
GLAB-Mary43 分钟前
红帽认证工程师(RHCE):掌握Linux自动化的关键
linux·运维·自动化·rhce
芯语新源1 小时前
在 Linux 系统中通过 yum 安装 Sublime Text
linux·bash·sublime text
wusixuan1310041 小时前
最大闭合子图学习笔记 / P2805 [NOI2009] 植物大战僵尸
笔记·学习·算法·最大闭合子图
moxiaoran57531 小时前
uni-app项目实战笔记5--使用grid进行定位布局
笔记·uni-app
xx155802862xx1 小时前
centos转移mysql的数据存储目录
linux·mysql·centos
进击的CJR1 小时前
MySQL 8.0 OCP 英文题库解析(十五)
数据库·mysql·开闭原则
独行soc1 小时前
2025年渗透测试面试题总结-字节跳动[实习]安全研发员(题目+回答)
linux·科技·安全·面试·职场和发展·渗透测试
chian-ocean1 小时前
永不休眠:Linux 守护进程的工作原理
linux·运维·服务器