LNMP 是 Linux + Nginx + MySQL/MariaDB + PHP 的缩写,是一个常用的 Web 开发环境。Linux 是操作系统,Nginx 是 Web 服务器,MySQL/MariaDB 是数据库,PHP 是服务器端脚本语言。
适用于需要搭建个人博客、企业官网、在线商城等 Web 应用的场景。
sudo yum install epel-release
sudo yum install nginx
sudo systemctl start nginx
sudo systemctl enable nginx
sudo yum install mariadb-server mariadb
sudo systemctl start mariadb
sudo systemctl enable mariadb
sudo mysql_secure_installation
sudo yum install php php-fpm php-mysqlnd
sudo systemctl start php-fpm
sudo systemctl enable php-fpm
编辑 /etc/nginx/conf.d/default.conf
文件:
server {
listen 80;
server_name your_domain.com;
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
sudo systemctl restart nginx
epel-release
和 mariadb-server
。fastcgi_pass
地址正确。通过以上步骤,你应该能够在 CentOS 上成功搭建 LNMP 环境并安装 MySQL/MariaDB。如果在安装过程中遇到问题,可以参考上述链接或搜索相关解决方案。
领取专属 10元无门槛券
手把手带您无忧上云