linux源码安装lnmp
时间: 2023-03-20 14:08:49 浏览: 144
安装 LNMP(Linux + Nginx + MySQL + PHP)的步骤如下:
1. 下载 LNMP 的源码包,可以从官网或者其他镜像站点下载。
2. 解压源码包,进入解压后的目录。
3. 安装 Nginx,执行以下命令:
```
./configure --prefix=/usr/local/nginx
make
make install
```
4. 安装 MySQL,执行以下命令:
```
./configure --prefix=/usr/local/mysql
make
make install
```
5. 安装 PHP,执行以下命令:
```
./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-zlib
make
make install
```
6. 配置 Nginx,打开 Nginx 的配置文件 /usr/local/nginx/conf/nginx.conf,添加以下内容:
```
location / {
root html;
index index.php index.html index.htm;
}
location ~ \.php$ {
root html;
fastcgi_pass 127...1:900;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
```
7. 启动 LNMP,执行以下命令:
```
/usr/local/nginx/sbin/nginx
/usr/local/mysql/bin/mysqld_safe &
/usr/local/php/sbin/php-fpm
```
8. 测试 LNMP 是否安装成功,创建一个 PHP 文件 test.php,内容如下:
```
<?php
phpinfo();
?>
```
将该文件放到 /usr/local/nginx/html 目录下,然后在浏览器中访问该文件,如果能够正常显示 PHP 的信息,则说明 LNMP 安装成功。
阅读全文