在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環境的基本步驟,根據實際需求可以進行相關配置和優化。