在Linux上安裝PHP 8并進行負載均衡需要以下幾個步驟:
sudo apt update
sudo apt install nginx
sudo apt install php-fpm
/etc/php/8.0/fpm/pool.d/www.conf
文件,找到以下行并修改:listen = /var/run/php/php8.0-fpm.sock
sudo systemctl restart php8.0-fpm
/etc/nginx/sites-available/default
文件,找到以下部分并修改:location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php8.0-fpm.sock;
}
sudo systemctl restart nginx
sudo apt install haproxy
/etc/haproxy/haproxy.cfg
文件,添加以下內容:frontend http_front
bind *:80
default_backend http_back
backend http_back
balance roundrobin
server web1 192.168.1.1:80
server web2 192.168.1.2:80
這里,web1
和web2
是運行PHP-FPM的服務器,它們的IP地址分別為192.168.1.1
和192.168.1.2
。
sudo systemctl restart haproxy
現在,你已經成功在Linux上安裝了PHP 8并設置了負載均衡。當用戶訪問你的網站時,HAProxy會將請求分發到web1
和web2
服務器上,從而實現負載均衡。