在Linux上安裝PHP 8和數據庫(例如MySQL或PostgreSQL)并進行配置,可以按照以下步驟進行操作:
對于Debian/Ubuntu系統:
sudo apt update
sudo apt install php8 php8-cli php8-fpm php8-mysql php8-mbstring php8-xml php8-gd php8-curl
對于CentOS/RHEL系統:
sudo yum update
sudo yum install php php-fpm php-mysqlnd php-mbstring php-xml php-gd php-curl
對于Debian/Ubuntu系統:
sudo apt install mysql-server
對于CentOS/RHEL系統:
sudo yum install mariadb-server mariadb
安裝完成后,啟動并啟用MySQL服務:
sudo systemctl start mariadb
sudo systemctl enable mariadb
運行安全安裝腳本來配置MySQL:
sudo mysql_secure_installation
對于Debian/Ubuntu系統:
sudo apt install postgresql postgresql-contrib
對于CentOS/RHEL系統:
sudo yum install postgresql postgresql-contrib
安裝完成后,啟動并啟用PostgreSQL服務:
sudo systemctl start postgresql
sudo systemctl enable postgresql
運行安全安裝腳本來配置PostgreSQL:
sudo postgresql-setup initdb
sudo systemctl start postgresql
sudo systemctl enable postgresql
編輯PHP配置文件(通常位于/etc/php/8.x/fpm/php.ini
或/etc/php/8.x/apache2/php.ini
),確保以下配置項正確:
[mysqli]
mysqli.default_host = 127.0.0.1
mysqli.default_user = your_database_user
mysqli.default_pw = your_database_password
mysqli.default_port = 3306
[pdo_mysql]
pdo_mysql.default_host = 127.0.0.1
pdo_mysql.default_user = your_database_user
pdo_mysql.default_pw = your_database_password
pdo_mysql.default_port = 3306
安裝并啟用Apache模塊:
sudo apt install libapache2-mod-php8.x
sudo a2enmod php8.x
重啟Apache服務:
sudo systemctl restart apache2
安裝并啟用PHP-FPM模塊:
sudo apt install php8.x-fpm
編輯Nginx配置文件(通常位于/etc/nginx/sites-available/default
),確保以下配置項正確:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.x-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
重啟Nginx服務:
sudo systemctl restart nginx
創建一個PHP文件(例如/var/www/html/info.php
),并添加以下內容:
<?php
phpinfo();
?>
訪問http://your_server_ip/info.php
,確保顯示的信息中包含PHP和數據庫擴展的信息。
使用MySQL命令行或圖形界面工具(如phpMyAdmin)創建數據庫和用戶,并授予相應的權限。
例如,使用MySQL命令行:
CREATE DATABASE your_database_name;
CREATE USER 'your_database_user'@'localhost' IDENTIFIED BY 'your_database_password';
GRANT ALL PRIVILEGES ON your_database_name.* TO 'your_database_user'@'localhost';
FLUSH PRIVILEGES;
使用phpMyAdmin:
通過以上步驟,您應該能夠在Linux上成功安裝和配置PHP 8以及數據庫。