Ubuntu安装自选版本MysqL
由于Ubuntu系统不断升级,使用apt-get安装MysqL会默认安装比较新的版本,而且是不可选的,比如Ubuntu16.04,直接执行apt-get install MysqL会安装5.7,而更多情况下我们并不像安装最新的MysqL,因为你不知道你的代码使用了它会出什么样的新bug,所以本文介绍ubuntu使用apt-get安装自选版本的MysqL。
1、首先你要保证你的服务器上没有安装过,或者已经彻底卸载了MysqL其他版本。卸 载流程:
①sudo apt-get autoremove --purge MysqL-server-*
②sudo apt-get remove MysqL-server
③sudo apt-get autoremove MysqL-server
④sudo apt-get remove MysqL-common (非常重要)
⑤清理残留数据:
dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P
sudo find /etc -name "*MysqL*" |xargs rm -rf
⑥最后用 dpkg -l | grep MysqL 检查,如无返回即干净卸载
2、add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty main universe'
3、apt-get update(这一步花时间较长)
4、apt-cache search MysqL | grep MysqL-server
5、从返回的结果查看有哪些版本可以安装,用下边的命令安装相应的版本。
如果没有5.6版本(一般是有的),尝试如下操作:
编辑/etc/apt/sources.list和/etc/apt/sources.list.save,搜索deb http://archive.ubuntu.com/ubuntu trusty main,如果这一行的结尾没有universe,手动加上,变成deb http://archive.ubuntu.com/ubuntu trusty main universe。然后执行apt update或者apt-get update。
6、apt install MysqL-server-5.6 安装5.6版本 (这里没用apt-get,而是apt)或者apt install MysqL-server-5.5安装5.5版本 (这里没用apt-get,而是apt)。安装完毕,成功。