在Ubuntu系统中搭建LNMP环境(即Linux + Nginx + MySQL + PHP)可以按照以下步骤进行:
sudo apt update
sudo apt install nginx
sudo apt update
sudo apt install mysql-server
安装过程中会提示你设置root密码。
sudo apt update
sudo apt install php-fpm php-mysql
编辑Nginx配置文件,一般位于/etc/nginx/sites-available/default
,将以下内容加入server段中:
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
重启Nginx服务:
sudo systemctl restart nginx
在/var/www/html
目录下创建一个info.php
文件,内容如下:
<?php
phpinfo();
然后在浏览器中访问http://your_server_ip/info.php
,如果能够看到PHP信息页面,说明LNMP环境已经搭建成功。
以上是在Ubuntu系统中搭建LNMP环境的基本步骤,根据实际需求可以进行相关配置和优化。