<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Mysql高级篇-尚硅谷 on 随记</title><link>https://blog.liuyi2026.asia/zh/tags/mysql%E9%AB%98%E7%BA%A7%E7%AF%87-%E5%B0%9A%E7%A1%85%E8%B0%B7/</link><description>Recent content in Mysql高级篇-尚硅谷 on 随记</description><generator>Hugo</generator><language>zh</language><lastBuildDate>Wed, 15 Jun 2022 21:13:03 +0000</lastBuildDate><atom:link href="https://blog.liuyi2026.asia/zh/tags/mysql%E9%AB%98%E7%BA%A7%E7%AF%87-%E5%B0%9A%E7%A1%85%E8%B0%B7/index.xml" rel="self" type="application/rss+xml"/><item><title>mysql高阶_sgg 96-00</title><link>https://blog.liuyi2026.asia/zh/docs/technology/MySQL/bl_sgg_/96-00/</link><pubDate>Wed, 15 Jun 2022 21:13:03 +0000</pubDate><guid>https://blog.liuyi2026.asia/zh/docs/technology/MySQL/bl_sgg_/96-00/</guid><description>&lt;h1 id="章节概述">章节概述&lt;a class="anchor" href="#%e7%ab%a0%e8%8a%82%e6%a6%82%e8%bf%b0">#&lt;/a>&lt;/h1>
&lt;ul>
&lt;li>
&lt;p>架构篇&lt;/p>
&lt;ul>
&lt;li>1-3
&lt;img src="img/ly-20241212142152374.png" alt="ly-20241212142152374" />&lt;/li>
&lt;li>4
&lt;img src="img/ly-20241212142152554.png" alt="ly-20241212142152554" />&lt;/li>
&lt;li>5
&lt;img src="img/ly-20241212142152607.png" alt="ly-20241212142152607" />&lt;/li>
&lt;li>6
&lt;img src="img/ly-20241212142152666.png" alt="ly-20241212142152666" />&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>
&lt;p>索引及调优篇&lt;/p>
&lt;ul>
&lt;li>
&lt;p>01
&lt;img src="img/ly-20241212142152801.png" alt="ly-20241212142152801" />&lt;/p>
&lt;/li>
&lt;li>
&lt;p>02-03&lt;/p>
&lt;p>&lt;img src="img/ly-20241212142152853.png" alt="ly-20241212142152853" />&lt;/p>
&lt;/li>
&lt;li>
&lt;p>04-05&lt;/p>
&lt;p>&lt;img src="img/ly-20241212142152904.png" alt="ly-20241212142152904" />&lt;/p>
&lt;/li>
&lt;li>
&lt;p>06
&lt;img src="img/ly-20241212142152953.png" alt="ly-20241212142152953" />&lt;/p>
&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>
&lt;p>事务篇&lt;/p>
&lt;ul>
&lt;li>01-02
&lt;img src="img/ly-20241212142153001.png" alt="ly-20241212142153001" />&lt;/li>
&lt;li>03
&lt;img src="img/ly-20241212142153044.png" alt="ly-20241212142153044" />&lt;/li>
&lt;li>04
&lt;img src="img/ly-20241212142153090.png" alt="ly-20241212142153090" />&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>
&lt;p>日志与备份篇&lt;/p>
&lt;ul>
&lt;li>01
&lt;img src="img/ly-20241212142153137.png" alt="ly-20241212142153137" />&lt;/li>
&lt;li>02
&lt;img src="img/ly-20241212142153183.png" alt="ly-20241212142153183" />&lt;/li>
&lt;li>03
&lt;img src="img/ly-20241212142153231.png" alt="ly-20241212142153231" />&lt;/li>
&lt;/ul>
&lt;/li>
&lt;/ul>
&lt;h1 id="centos环境准备">CentOS环境准备&lt;a class="anchor" href="#centos%e7%8e%af%e5%a2%83%e5%87%86%e5%a4%87">#&lt;/a>&lt;/h1>
&lt;ul>
&lt;li>这里主要是做了克隆，并没有讲到CentOS的安装，所以笔记不记录了&lt;/li>
&lt;/ul>
&lt;h1 id="mysql的卸载">MySQL的卸载&lt;a class="anchor" href="#mysql%e7%9a%84%e5%8d%b8%e8%bd%bd">#&lt;/a>&lt;/h1>
&lt;ul>
&lt;li>
&lt;p>查找当前系统已经装了哪些
&lt;code>rpm -qa |grep mysql&lt;/code>&lt;/p>
&lt;/li>
&lt;li>
&lt;p>查找mysql服务运行状态
&lt;code>systemctl status mysql&lt;/code>&lt;/p>
&lt;/li>
&lt;li>
&lt;p>停止mysql服务
&lt;code>systemctl stop mysql&lt;/code>&lt;/p>
&lt;/li>
&lt;li>
&lt;p>删除&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>yum remove mysql-community-client-plugins-8.0.29-1.el7.x86_64
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>yum remove mysql-community-common-8.0.29-1.el7.x86_64&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;li>
&lt;p>查找带mysql名字的文件夹
&lt;code>find / -name mysql&lt;/code>&lt;/p>
&lt;/li>
&lt;li>
&lt;p>进行删除&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-shell" data-lang="shell">&lt;span style="display:flex;">&lt;span>rm -rf /usr/lib64/mysql
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>rm -rf /usr/share/mysql
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>rm -rf /etc/selinux/targeted/active/modules/100/mysql
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>rm -rf /etc/my.cnf&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;/li>
&lt;/ul>
&lt;h1 id="linux下安装mysql80与57版本">Linux下安装MySQL8.0与5.7版本&lt;a class="anchor" href="#linux%e4%b8%8b%e5%ae%89%e8%a3%85mysql80%e4%b8%8e57%e7%89%88%e6%9c%ac">#&lt;/a>&lt;/h1>
&lt;ul>
&lt;li>
&lt;p>版本介绍
&lt;img src="img/ly-20241212142153277.png" alt="ly-20241212142153277" />&lt;/p></description></item></channel></rss>