Skip to content

Latest commit

 

History

History
106 lines (87 loc) · 3.32 KB

1970-01-01-mysql.md

File metadata and controls

106 lines (87 loc) · 3.32 KB
category layout mirrorid
help
help
mysql

Mysql Community Edition 镜像使用帮助

Debian/Ubuntu 用户

再选择你的 Debian/Ubuntu 版本,文本框中内容写进 /etc/apt/sources.list.d/mysql-community.list

你的Debian/Ubuntu版本: Debian 8 (Jessie) Debian 9 (Stretch) Debian 10 (Buster) Ubuntu 14.04 LTS Ubuntu 16.04 LTS Ubuntu 18.04 LTS



参考文档:https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/

{% raw %}

<script id="apt-template" type="x-tmpl-markup"> deb https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/apt/{{os_name}} {{release_name}} mysql-5.6 mysql-5.7 mysql-8.0 mysql-tools </script>

{%endraw%}

RHEL/CentOS 用户

新建 /etc/yum.repos.d/mysql-community.repo,内容如下:

注:mysql-8.0, mysql-connectorsmysql-tools在RHEL 7/8上还提供了aarch64版本。

你的CentOS/RHEL版本: CentOS/RHEL 6 CentOS/RHEL 7 CentOS/RHEL 8



参考文档:https://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/

{% raw %}

<script id="yum-template" type="x-tmpl-markup"> [mysql-connectors-community] name=MySQL Connectors Community baseurl=https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/yum/mysql-connectors-community-{{release_name}}-$basearch/ enabled=1 gpgcheck=1 gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql [mysql-tools-community] name=MySQL Tools Community baseurl=https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/yum/mysql-tools-community-{{release_name}}-$basearch/ enabled=1 gpgcheck=1 gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql {{if release_name|notequals>el8}} [mysql-5.6-community] name=MySQL 5.6 Community Server baseurl=https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/yum/mysql-5.6-community-{{release_name}}-$basearch/ enabled=0 gpgcheck=1 gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql [mysql-5.7-community] name=MySQL 5.7 Community Server baseurl=https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/yum/mysql-5.7-community-{{release_name}}-$basearch/ enabled=1 gpgcheck=1 gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql {{/if}} [mysql-8.0-community] name=MySQL 8.0 Community Server baseurl=https://{%endraw%}{{ site.hostname }}{%raw%}/mysql/yum/mysql-8.0-community-{{release_name}}-$basearch/ enabled=1 gpgcheck=1 gpgkey=https://repo.mysql.com/RPM-GPG-KEY-mysql </script>

{% endraw %}