yum remove mariadb -y Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered with an entitlement server. You can use subscription-manager to register. No Match for argument: mariadb No Packages marked for removal时无法删除MariaDB,但是却显示MariaDB与Mysql冲突
时间: 2024-03-24 17:37:33 浏览: 333
yum-plugin-needs-restarting:YUM 插件使用旧文件列出进程
如果你的系统中没有安装 MariaDB,那么运行 `yum remove mariadb` 命令会提示找不到 mariadb 包。这种情况下,你可以尝试使用 `rpm` 命令来卸载 MariaDB:
```
rpm -e --nodeps mariadb-libs
```
这个命令会强制卸载 MariaDB 的依赖库,但是可能会对其他软件造成影响,所以需要谨慎使用。另外,如果你需要同时使用 MySQL 和 MariaDB,你可以尝试使用容器技术,将它们分别运行在不同的容器中,以避免冲突。
阅读全文