我的元素上需要一盏灯。我已经有php、apache和phpmyadmin了。
mysql对我来说是个问题。我已成功安装 mysql 5.7
. 不幸的是,mysql的人员决定添加一些愚蠢的更改,比如不能 mysql -uroot -proot
没有 sudo
. 因为这个变化,我不能通过登录 phpadmin
有根的。
所以我决定安装 mysql 5.6
.
我一直遵循这个指南。
可悲的是,当我 apt-cache policy mysql-server
,这是我得到的:
mysql-server:
Installed: (none)
Candidate: 5.7.23-0ubuntu0.18.04.1
Version table:
5.7.23-0ubuntu0.18.04.1 500
500 http://ph.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
500 http://ph.archive.ubuntu.com/ubuntu bionic-updates/main i386 Packages
500 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages
500 http://security.ubuntu.com/ubuntu bionic-security/main i386 Packages
5.7.21-1ubuntu1 500
500 http://ph.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
500 http://ph.archive.ubuntu.com/ubuntu bionic/main i386 Packages
版本是5.7。所以现在导游说检查 /etc/apt/sources.list.d/mysql.list
. 但这就是我在里面的东西:
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out entries below, but any other modifications may be lost.
# Use command 'dpkg-reconfigure mysql-apt-config' as root for modifications.
deb http://repo.mysql.com/apt//ubuntu/ wily mysql-apt-config
deb http://repo.mysql.com/apt//ubuntu/ wily mysql-5.6
deb http://repo.mysql.com/apt//ubuntu/ wily mysql-tools
deb-src http://repo.mysql.com/apt//ubuntu/ wily mysql-5.6
所以它实际上是正确的。但仍然不是 5.6
.
有人能帮我吗?
1条答案
按热度按时间rdrgkggo1#
1.添加了软件和更新/其他软件14.04存储库:
2.安装mysql客户端和服务器:
更新:在安装5.6之前,请确保不存在其他mysql包:
dpkg -l | grep mysql
-返回mysql包的列表。使用
apt-get purge <package name>
清除它们。来源:16.04升级mysql server