How to delete phpmyadmin in yum?
yum uninstalls lamp phpmyadmin environment
Since the lamp environment installed by yum is currently used, it needs to be changed to manual installation of lamp.
After viewing the currently installed packages through
rpm -qa|grep http rpm -qa|grep php rpm -qa|grep mysql rpm-qa|gerp phpmyadmin
, uninstall the installed packages through
yum remove mysql-* yum remove php-* yum remove httpd yum remove phpmyadmin
.
PHP Chinese website has a large number of free phpmyadmin tutorials, everyone is welcome to learn!
The above is the detailed content of How to remove phpmyadmin in yum. For more information, please follow other related articles on the PHP Chinese website!