Centos 6.8编译安装LNMP环境(Nginx+MySQL+PHP)教程

CentOS 6.8是一款桌面和服务器操作系统。本文将详细讲解如何在该系统上编译安装LNMP环境(Nginx+MySQL+PHP),以支持Web应用程序的开发和部署。

准备工作

在开始之前,我们需要准备以下材料:

  • CentOS 6.8操作系统
  • PuTTY或其他SSH工具
  • WinSCP或其他SFTP工具
  • Nginx、MySQL和PHP源码包
  • gcc、make和其他编译软件包

安装编译软件包

首先,我们需要安装编译软件包,包括gcc、make和其他依赖项。

yum install gcc gcc-c++ make automake autoconf libtool pcre pcre-devel zlib zlib-devel openssl openssl-devel perl perl-devel perl-ExtUtils-Embed GeoIP GeoIP-devel -y

安装Nginx

Nginx是一款高性能的Web服务器,具有占用资源低,高并发等特点。我们可以从官网下载最新的Nginx源码包,并将其上传到服务器上。

wget http://nginx.org/download/nginx-1.18.0.tar.gz
tar -zxvf nginx-1.18.0.tar.gz
cd nginx-1.18.0

首先,我们需要配置Nginx编译参数,以适应我们的需求。下面是一些示例配置选项:

./configure --prefix=/usr/local/nginx \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module

然后,我们需要编译和安装Nginx。

make
make install

安装MySQL

MySQL是一款常用的数据库管理系统,具有开源,高效等特点。我们可以从官网下载最新的MySQL源码包,并将其上传到服务器上。

wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.31.tar.gz
tar -zxvf mysql-5.7.31.tar.gz
cd mysql-5.7.31

首先,我们需要配置MySQL编译参数,以适应我们的需求。下面是一些示例配置选项:

cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DMYSQL_DATADIR=/usr/local/mysql/data \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_MYISAM_STORAGE_ENGINE=1 \
-DWITH_MEMORY_STORAGE_ENGINE=1 \
-DWITH_READLINE=1 \
-DENABLED_LOCAL_INFILE=1 \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci

然后,我们需要编译和安装MySQL。

make
make install

安装PHP

PHP是一种脚本语言,用于Web开发。我们可以从官网下载最新的PHP源码包,并将其上传到服务器上。

wget https://www.php.net/distributions/php-7.4.9.tar.gz
tar -zxvf php-7.4.9.tar.gz
cd php-7.4.9

首先,我们需要配置PHP编译参数,以适应我们的需求。下面是一些示例配置选项:

./configure --prefix=/usr/local/php \
--with-config-file-path=/etc \
--with-mysql=/usr/local/mysql \
--with-mysqli=/usr/local/mysql/bin/mysql_config \
--with-pdo-mysql=/usr/local/mysql \
--enable-mbstring \
--with-freetype \
--with-jpeg \
--with-png \
--with-zlib \
--with-libxml-dir \
--enable-xml \
--enable-sockets \
--enable-fpm \
--enable-fastcgi \
--enable-opcache \
--with-curl \
--with-openssl

然后,我们需要编译和安装PHP。

make
make install

配置Nginx、MySQL和PHP

既然我们已经安装了Nginx、MySQL和PHP,那么我们现在需要正确地配置它们,以便它们能够相互协作。下面是一些示例配置文件:

Nginx配置文件

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;

    keepalive_timeout  65;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   /usr/share/nginx/html;
            index  index.html index.htm;
        }

        error_page  404              /404.html;
        location = /404.html {
            root   /usr/share/nginx/html;
        }

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        location ~ \.php$ {
            root           /usr/share/nginx/html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
    }

    include /etc/nginx/conf.d/*.conf;
}

MySQL配置文件

[client]
port            = 3306
socket          = /tmp/mysql.sock
default-character-set=utf8

[mysqld]
port            = 3306
socket          = /tmp/mysql.sock
datadir         = /usr/local/mysql/data
pid-file        = /usr/local/mysql/mysql.pid
character-set-server=utf8
collation-server=utf8_general_ci

log-error=/var/log/mysql/error.log

PHP配置文件

[PHP]
engine = On
short_open_tag = On
memory_limit = 256M
upload_max_filesize = 2M
max_execution_time = 30
date.timezone = Asia/Shanghai

[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Shanghai

[MySQLi]
; http://php.net/mysqli
mysqli.max_links = -1
mysqli.default_port = 3306
mysqli.default_socket = /tmp/mysql.sock
mysqli.default_host =
mysqli.default_user =
mysqli.default_pw =

[mysqlnd]
mysqlnd.collect_statistics = On
mysqlnd.collect_memory_statistics = On

[opcache]
opcache.enable=1
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown = 1

启动Nginx、MySQL和PHP

现在,我们已经完成了所有的安装和配置工作。但是,在我们可以开始使用这些服务之前,我们需要启动它们。下面是一些示例命令:

启动Nginx

/usr/local/nginx/sbin/nginx

启动MySQL

/usr/local/mysql/bin/mysqld_safe --user=mysql &

启动PHP

/usr/local/php/sbin/php-fpm

结束语

至此,我们已经完成了CentOS 6.8上编译安装LNMP环境的全部过程。在这个过程中,我们涉及了许多重要的步骤,包括安装编译软件包,安装Nginx、MySQL和PHP,以及配置和启动这些服务。我们希望你通过这些步骤能够成功地完成自己的LNMP环境部署。

本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Centos 6.8编译安装LNMP环境(Nginx+MySQL+PHP)教程 - Python技术站

(0)
上一篇 2023年5月14日
下一篇 2023年5月14日

相关文章

  • VMware下Centos7桥接方式网络配置步骤详解

    VMware下Centos7桥接方式网络配置步骤详解 在VMware虚拟机中如果要连接外部网络,可以使用桥接方式。本文将详细讲解在VMware下使用桥接方式连接网络的配置步骤。 步骤一:打开网络设置 进入VMware虚拟机,打开网络适配器设置。 # 打开命令行工具,输入如下命令 sudo vi /etc/sysconfig/network-scripts/i…

    Linux 2023年5月24日
    00
  • win10下如何运行.sh文件的实现步骤

    运行 “.sh” 文件是在Linux和MacOS系统中常见的一种操作,但在Windows系统中,通常需要进行额外的配置才能运行 “.sh” 文件。下面介绍在Windows 10系统中如何运行 “.sh” 文件的实现步骤: 1. 安装Git Bash Git Bash是Git工具自带的一个Bash shell,在Windows系统中提供了一种Linux-lik…

    Linux 2023年5月24日
    00
  • CentOS 7 虚拟机无法开机问题的快速解决方法

    以下是详细讲解“CentOS 7 虚拟机无法开机问题的快速解决方法”的完整攻略: 问题描述 在使用虚拟化软件(如VMware)安装好了CentOS 7虚拟机后,有时候在开机时会遇到无法开机的问题,导致无法进入CentOS操作系统。这个问题的原因可能会有很多,例如虚拟机所在的磁盘空间不足、系统文件损坏、虚拟机设置不当等等。 解决方法 步骤一:检查虚拟机磁盘空间…

    Linux 2023年5月24日
    00
  • CentOS 7下部署php7.1和开启MySQL扩展的方法教程

    以下是“CentOS7下部署php7.1和开启MySQL扩展的方法教程”的完整攻略。 准备 在开始之前,请确保你的CentOS7系统已经安装了LAMP环境,并且MySQL服务已经启动。 安装EPEL源 在CentOS 7上安装PHP 7.1之前,我们需要先安装EPEL源。EPEL是“Extra Packages for Enterprise Linux”的缩…

    Linux 2023年5月14日
    00
  • 给VM虚拟机中的CentOS Linux系统挂载U盘的方法图文教程

    以下是给VM虚拟机中的CentOS Linux系统挂载U盘的方法: 1. 确认U盘已在VM虚拟机中被识别 使用命令 lsusb 或 dmesg 查看 U 盘是否已经被识别。例如: $ lsusb Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub Bus 002 …

    Linux 2023年5月24日
    00
  • Linux sar命令

    Linux sar命令的作用与使用方法 简介 sar(System Activity Reporter)是一个用于收集、报告和存储系统活动信息的命令行工具。它可以收集各种系统活动信息,如 CPU 使用率、内存使用率、磁盘 I/O、网络 I/O 等,并将这些信息存储在文件中,以供后续分析和报告。 安装 sar 命令通常包含在 sysstat 包中,因此需要先安…

    Linux 2023年5月10日
    00
  • Springboot集成minio实现文件存储的实现代码

    下面我会详细讲解如何使用Springboot集成Minio实现文件存储的实现代码,步骤如下: 1. 引入依赖 在Springboot项目中,我们需要引入Minio的Java SDK依赖,如下所示: <dependency> <groupId>io.minio</groupId> <artifactId>mini…

    Linux 2023年5月24日
    00
  • SpringCloud使用eureka配置集群(LINUX环境)

    1、为各节点配置不同的hostname,然后修改主机的hosts文件,增加映射 vi /etc/hosts 增加2条  2、节点一配置文件 # 配置server参数 server: port: 8001 # 如果使用了路径 eureka service-url http://user:pwd@ip:port/项目路径/eureka # servlet: # …

    Linux 2023年4月12日
    00
合作推广
合作推广
分享本页
返回顶部