在Linux上安装数据库管理系统(DBMS)通常涉及几个步骤。以下是一些流行的Linux发行版(如Ubuntu、CentOS和Debian)上安装MySQL、PostgreSQL和MongoDB的示例步骤。
sudo apt update
sudo apt install mysql-server
安装完成后,运行安全脚本来提高安全性:
sudo mysql_secure_installation
sudo yum install mariadb-server mariadb
安装完成后,运行安全脚本来提高安全性:
sudo mysql_secure_installation
sudo apt update
sudo apt install postgresql postgresql-contrib
安装完成后,启动并启用PostgreSQL服务:
sudo systemctl start postgresql
sudo systemctl enable postgresql
sudo yum install postgresql-server postgresql-contrib
安装完成后,启动并启用PostgreSQL服务:
sudo systemctl start postgresql
sudo systemctl enable postgresql
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt update
sudo apt install mongodb-org
安装完成后,启动并启用MongoDB服务:
sudo systemctl start mongod
sudo systemctl enable mongod
mysql -u root -p
输入密码后,你应该能看到MySQL的命令提示符。
psql -U postgres
输入密码后,你应该能看到PostgreSQL的命令提示符。
mongo
你应该能看到MongoDB的命令提示符。
确保防火墙允许数据库服务的端口。例如,对于Ubuntu/Debian和CentOS/RHEL:
sudo ufw allow 3306/tcp
sudo ufw allow 5432/tcp
sudo ufw reload
sudo firewall-cmd --permanent --add-service=mysql
sudo firewall-cmd --permanent --add-service=postgresql
sudo firewall-cmd --permanent --add-service=mongodb
sudo firewall-cmd --reload
通过这些步骤,你应该能够在Linux上成功安装和配置MySQL、PostgreSQL和MongoDB。