category | layout | mirrorid |
---|---|---|
help |
help |
mysql |
再选择你的 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%}
新建 /etc/yum.repos.d/mysql-community.repo
,内容如下:
注:mysql-8.0
, mysql-connectors
和mysql-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 %}