本文主要是介绍mysql安装出现 conflicts with mysql*的解决办法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
安装mysql时候出现错误MySQL conflicts with mysql-5.0.77-4.el5_6.6.x86_64,如下图所示:
[root@localhost OMS]# rpm -ivh MySQL-server-advanced-5.5.8-1.rhel5.i386.rpm
error: Failed dependencies:
MySQL conflicts with mysql-5.0.77-4.el5_6.6.x86_64
MySQL conflicts with mysql-5.0.77-4.el5_6.6.i386
后查资料,用rpm -e confictcompoent -- nodeps解决。如下举例说明:
[root@localhost OMS]# rpm -e mysql-5.0.77-4.el5_6.6.x86_64 --nodeps
[root@localhost OMS]# rpm -e mysql-5.0.77-4.el5_6.6.i386 --nodeps
然后安装就顺利了:
[root@localhost OMS]# rpm -ivh MySQL-server-advanced-5.5.8-1.rhel5.i386.rpm
Preparing... ########################################### [100%]
1:MySQL-server-advanced ########################################### [100%]
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h localhost.localdomain password 'new-password'
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
See the manual for more instructions.
Please report any problems with the /usr/bin/mysqlbug script!
[root@localhost OMS]# rpm -ivh MySQL-devel-advanced-5.5.8-1.rhel5.i386.rpm
Preparing... ########################################### [100%]
1:MySQL-devel-advanced ########################################### [100%]
[root@localhost OMS]# rpm -ivh MySQL-client-advanced-5.5.8-1.rhel5.i386.rpm
Preparing... ########################################### [100%]
1:MySQL-client-advanced ########################################### [100%]
这篇关于mysql安装出现 conflicts with mysql*的解决办法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!