可以的,Debian 上的 LAMP 环境完全可以安装 MySQL。
LAMP 中的 M 本来指 MySQL(后来也有人用 MariaDB),所以在 Debian 上装 MySQL 是非常标准、常见的做法。
sudo apt update
sudo apt install mariadb-server
Debian 官方源默认提供的是 MariaDB(MySQL 的分支,兼容性很好)。
如果你明确需要 MySQL 而不是 MariaDB:
wget https://dev.mysql.com/get/mysql-apt-config_0.8.29-1_all.deb
sudo dpkg -i mysql-apt-config_0.8.29-1_all.deb
sudo apt update
sudo apt install mysql-server
sudo mysql_secure_installation
sudo systemctl start mysql
sudo systemctl enable mysql
sudo systemctl status mysql
如果你愿意,可以告诉我:
我可以给你一套更具体的安装步骤。