debian msyql 5.1 卸载与安装

卸载:
apt-get autoremove --purge mysql-server-5.1 卸载服务端
apt-get remove mysql-common  #一定要卸载(包含配置文件)
dpkg -P mysql-common   清除残留
apt-get remove mysql-server-core-5.1

安装:
apt-get install mysql-server-5.1

apt-get install php5-mysql  (安装php5-mysql是将php和mysql连接起来)


原文地址:https://www.cnblogs.com/wangss/p/6268317.html