CentOS 6.5搭建 LNMP 生产环境

安装前准备:

1、软件包下载:

MySQL5.6.5-M8 http://downloads.mysql.com/archives/get/file/mysql-5.6.5-m8.tar.gz
Cmake-2.8.8 http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz
php-5.4.29 http://cn2.php.net.get/php-5.4.29.tar.gz/from/this/mirror
libiconv-1.14 http://ftp.gun.org/gnu/libiconv/libiconv-1.14.tar.gz
nginx-1.2.9 http://nginx.org/downlload/nginx-1.2.9.tar.gz

2、安装MySQL数据库:因为MySQL从5.5版本开始,不再使用开源软件通行使用的./configure脚本来配置编译选项,而改用cmake命令来编译,而且cmake默认不安装在系统中,所以,我们首先安装cmake软件包:

a、Cmake安装

[[email protected]_Server ~]# tar -zxvf cmake-2.8.8.tar.gz
[[email protected]_Server ~]# cd cmake-2.8.8
[[email protected]_Server ~]# ./bootstrap
[[email protected]_Server ~]# gmake
[[email protected]_Server ~]# gmake install

3、安装MySQL

[[email protected]_Server ~]# tar -zxvf mysql-5.6.5-m8.tar.gz
[[email protected]_Server ~]# cd mysql-5.6.5-m8
[[email protected]_Server ~]# cmake -DCMAKE_INSTALL_PREFIX=/opt/mysql -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DDEFAULT_CHARSET=UTF8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS:STRING=all -DWITH_INNODB_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DENABLED_LOCAL_INFILE=1 -DMYSQL_USER=mysql -DMYSQL_TCP_PORT=3306

[[email protected]_Server ~]# make                         #编辑
[[email protected]_Server ~]# make install                        #安装
[[email protected]_Server ~]# useradd -s /sbin/nologin mysql    #添加mysql用户
[[email protected]_Server ~]# cp support-files/my-large.cnf /etc/my.cnf    #复制配置文件
[[email protected]_Server ~]# cd /usr/local/server/mysql
[[email protected]_Server ~]# mkdir -p /data/mysql/data            #创建mysql数据目录
[[email protected]_Server ~]# scripts/mysql_install_db --datadir=/data/mysql/data \    
--defaults-file=/etc/my.cnf --user=mysql                    #初始化数据库
[[email protected]_Server ~]# cp support-files/mysql.server /etc/init.d/    #复制启动脚本
[[email protected]_Server ~]# chkconfig --add mysql.server            #添加启动服务
[[email protected]_Server ~]# service mysql.server start                
[[email protected]_Server ~]# echo "PATH=/opt/mysql/bin">>/etc/profile    #设置环境变量
[[email protected]_Server ~]# echo "export PATH">>/etc/profile

4、安装PHP

在安装PHP之前,需要安装libconv软件包,其它PHP所需软件包在前面都已经使用yum安装完成了,所以无需重复安装。

a、安装libiconv软件包

[[email protected]_Server ~]# tar -zxvf libiconv-1.14.tar.gz
[[email protected]_Server ~]# cd libiconv-1.14
[[email protected]_Server ~]# ./configure --prefix=/usr/local
[[email protected]_Server ~]# make && make install
[[email protected]_Server ~]# ldconfig            #执行ldconfig命令更新动态库缓存

b、安装PHP

[[email protected]_Server ~]# tar -zxvf php-5.4.5.tar.gz
[[email protected]_Server ~]# cd php-5.4.5
[[email protected]_Server ~]# ./configure --prefix=/opt/php --disable-debug --disable-ipv6 --disable-rpath --enable-bcmath --enable-exif --enable-gd-native-ttf --enable-mbregex --enable-mbstring=all --enables-pcntl --enable-sage-mode --enable-shmop --enable-soap --enable-sockets --enable-xml --with-config-file-path=/opt/php/etc --with-curl --with-curlwrappers --with-freetype-dir --with\-gd --with-gettext --with-iconv-dir=/usr/local --with-jpeg-dir --with-ldap --with-ldap-sasl --with-libdir=lib --with-libxml-dir=/usr --with-mcrypt --with-mhash --with-openssl --with-pdo-mysql --with-pear --with-png-dir --with-xmlrpc --with-zlib-dir --with-mysqlli=/opt/mysql/bin/mysql_config --with-mysql=/opt/mysql --enable-fastcgi --enable-fpm --enable-force-cgi-redirect
[[email protected]_Server ~]#  make ZEND_EXTRA_LIBS=‘-liconv‘
[[email protected]_Server ~]# make install
[[email protected]_Server ~]# cp php.ini-production /opt/php/etc/php.ini 
[[email protected]_Server ~]# cp /op/php/etc/php-fpm.conf.default /opt/php/etc/php-fpm.conf
[[email protected]_Server ~]#

5、安装Nginx

[[email protected]_Server ~]# tar -zxvf nginx-1.2.9.tar.gz
[[email protected]_Server ~]# cd nginx-1.2.9
[[email protected]_Server ~]# ./configure --prefix=/opt/nginx --user=nobody --group=nobody --with-poll_module --with-http_ssl_module --with-http_sub_module --with-http_perl_module --with-mail --with-pcre
[[email protected]_Server ~]# make 
[[email protected]_Server ~]# make install

6、启动服务

[[email protected]_Server ~]# /opt/php/sbin/php-fpm
[[email protected]_Server ~]# killall -php-fpm
[[email protected]_Server ~]# /opt/nginx/sbin/nginx
[[email protected]_Server ~]# /opt/nginx/sbin/nginx -s stop
时间: 2024-10-03 05:48:41

CentOS 6.5搭建 LNMP 生产环境的相关文章

图文详解如何快捷搭建LNMP服务环境

上一篇与大家一起学习了下如何搭建LAMP环境的知识,今天小编再和大家分享下如何快捷地搭建LNMP环境,并搭建起一个网站.Nginx是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器.目前很受站长们的青睐,尤其是要求不是很高的中小型网站. 一.下载LNMP一键安装包 下载地址:http://soft.vpser.net/lnmp/lnmp1.2-full.tar.gz 国内备用地址:https://api.sinas3.com/v1/SAE_lnmp/soft/ln

搭建LNMP+CI环境

首先搭建 LNMP 的服务器环境 安装 Nginx, MySQL 和 PHP 软件包,执行以下命令 yum install -y nginx mariadb-server mariadb php php-fpm php-mysql 启动并检查 Nginx 和 PHP 的安装情况 修改 /etc/nginx/nginx.conf,可参考下面的配置示例: nginx.conf user nginx; worker_processes auto; error_log /var/log/nginx/er

CentOS 7快速搭建Nodejs开发环境

Node.js是一个事件驱动I/O服务端JavaScript环境,基于Google的V8引擎,V8引擎执行Javascript的速度非常快,性能非常好.学习Nodejs首先需要会安装环境.这里我介绍如何在CentOS7快速搭建Nodejs开发环境. 工具/原料 CentOS 7 Nodejs 通过NVM安装 1 NVM(Node version manager)顾名思义,就是Node.js的版本管理软件,可以轻松的在Node.js各个版本间切换,项目源码在GitHub: 如果你想长期做 node

centos 7.2 搭建php运行环境

####centos 7.2 通过源码编译安装nginx#### 第一步:安装编译所需工具.命令如下: p { margin-bottom: 0.25cm; direction: ltr; line-height: 120%; text-align: justify; orphans: 0; widows: 0 } p.western { font-family: "Calibri", serif; font-size: 10pt } p.cjk { font-family: &quo

搭建 LNMP+WordPress 环境

搭建 LAMP + WORDPRESS 环境 一.环境介绍 二.必装依赖软件 三.编译安装 Nginx-1.6.3 四.二进制安装 MYSQL-5.5.33 五.编译安装 PHP-5.3.27 六.检测 nginx与mysql nginx与php 是否相连 七.安装 wordpress (分别基于IP,域名访问) 一.环境介绍 搭建这个环境,所有服务都安装在一台虚拟机中,在此介绍一下我的虚拟机 CentOS-6.7-x86_64    保证虚拟机可以正常上网 IP:192.168.6.36 ho

centos搭建LNMP+LAMP环境+(jdk+tomcat+mysql)

第一部分LNMP环境搭建 一.编译安装nginx1.10.3 1.准备 [[email protected] ~]# cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) [[email protected] ~]# uname -a Linux localhost.localdomain 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64 x86_6

烂泥:学习centos之快速搭建LNMP环境

本文由秀依林枫提供友情赞助,首发于烂泥行天下 以前在centos下安装软件都是喜欢源码安装,不过昨天因为一个事情需要一个centos 下的LNMP环境.反倒不会搞了,今天特意记录下,以备后续使用. 一.安装nginx 我们先来安装nginx,如下: yum -y install nginx 通过上图,我们可以看到目前的yum源中是没有nginx软件包的.我们需要安装包含nginx的yum源,如下: rpm -ivh http://nginx.org/packages/centos/6/noarc

CentOS 7.0源码包搭建LNMP 实际环境搭建

Centos7+Nginx1.11.7+MySQL5.7.16+PHP7.1.0+openssl-1.1.0c 一.linux 系统限制配置 1.关闭系统防火墙 systemctl stop firewalld.service 关闭防火墙 systemctl disable firewalld.service  禁用防火墙 2.关闭SElinux sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config  setenforce 0 

CentOS 6.6搭建LNMP环境

一.安装前 1.关闭linux的安全机制 vim /etc/selinux/config SELINUX=enforcing  改为  SELINUX=disabled 2.关闭iptables防火墙 vim /etc/sysconfig/iptables   #把里边的条例全部dd删除掉,wq保存退出 service iptables stop            #关闭iptables   chkconfig iptables off          #开机不自启动iptables 3.