please consider to disable this before installing packages from repo.mysql.com
时间: 2024-03-03 16:47:16 浏览: 154
如果你计划从 repo.mysql.com 安装 MySQL 相关的软件包,建议在安装之前禁用系统自带的 MySQL 软件包,以避免可能的冲突和版本不兼容问题。你可以通过以下命令来禁用系统自带的 MySQL 软件包:
```
sudo systemctl stop mysql
sudo systemctl disable mysql
```
这将停止并禁用 MySQL 服务。如果你想重新启用系统自带的 MySQL 软件包,可以使用以下命令:
```
sudo systemctl enable mysql
sudo systemctl start mysql
```
但是,如果你打算使用从 repo.mysql.com 安装的 MySQL 软件包,建议完全卸载系统自带的 MySQL 软件包,以避免潜在的问题。
阅读全文