LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Uninstall Mysql (https://www.linuxquestions.org/questions/linux-software-2/uninstall-mysql-748074/)

KapilSatav 08-17-2009 05:14 AM

Uninstall Mysql
 
How to uninstall mysql on fedora 9?

i am trying to uninstall it with
1.rpm -e (package name)
2.rpm -qa (package name)
but it is not getting uninstall.

please provide the solution ASAP.

centosboy 08-17-2009 05:42 AM

Quote:

Originally Posted by KapilSatav (Post 3646258)
How to uninstall mysql on fedora 9?

i am trying to uninstall it with
1.rpm -e (package name)
2.rpm -qa (package name)
but it is not getting uninstall.

please provide the solution ASAP.

what package name are you trying?? get that right first.
you prob want mysql-server



Code:

rpm -qa | grep -i mysql
once you find that, then stop the service.

Code:

service stop mysqld
Code:

yum remove <packagename>
or

Code:

rpm -e packagename
note - the package name and the service are sometimes different names

KapilSatav 08-17-2009 06:03 AM

Its working ..........

Thank You Very much for your support.....


All times are GMT -5. The time now is 02:18 AM.