在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
服务器上,从而实现负载均衡。