我将把我的网站从 Ubuntu 18.04 服务器迁移到 Ubuntu 20.04 服务器
在我的旧服务器上,我以这种方式安装了 MySQL:
$ wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.12-1_all.deb
$ sudo dpkg -i mysql-apt-config_0.8.12-1_all.deb
$ sudo apt update
$ sudo apt install mysql-server
ubuntu@www-oldserver-com ~ $ mysql -V
mysql Ver 8.0.21 for Linux on x86_64 (MySQL Community Server - GPL)
在我的新服务器上,MySQL 8 已位于 Ubuntu 20.04 存储库中
我应该像下面那样安装 MySQL 还是使用其他方法来不破坏任何东西?
$ sudo apt install mysql-server
ubuntu@www-newserver-com:~$ mysql -V
mysql Ver 8.0.21-0ubuntu0.20.04.4 for Linux on x86_64 ((Ubuntu))
我似乎在某处读到过社区 MySQL 版本与分发存储库中的版本不兼容。
答案1
是的,只需运行以下命令:
sudo apt install mysql-server
安装 MySQL 8。它相当简单,工作方式几乎完全相同,并且具有相同的可用包。如果您担心可管理性,请使用 phpMyAdmin 来管理它并使用 .htaccess 文件控制访问。
以下是在 Ubuntu 20.04 上安装 MySQL 8 的详细分步指南:https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04