- 浏览: 837908 次
- 性别:
- 来自: 南京
文章分类
最新评论
-
xieye:
jetty插件有好几个版本,1.6,1.7,1.8
我选的是用 ...
tapestry入门(翻译)3 导入项目到eclipse -
xieye:
还有,
注:第2部分时,需要先安装jetty,我自己在安装过程 ...
tapestry入门(翻译)3 导入项目到eclipse -
xieye:
说明一下:实际使用中,导入时我并没有错误。2、我把eclips ...
tapestry入门(翻译)3 导入项目到eclipse -
xieye:
其实还是有一些先决条件的。1是外部环境,2是进步是阶段性的(意 ...
(转载文章)如何愉悦起来:一位精神治疗师的见解 -
mandy_yanzi:
我都已经饿7天了坚持为了我的衣衣
身体健康的问题
原文:
http://solf.me/compile-nginx-php-mysql-on-centos-lnmp/
原文作者:夏日里的冻虾
插入:我自己的特别说明
参见网络上的教程,是php-fpm可以用root权限来运行,非常重要。
正文:
LNMP的好处就不说了,特别是对于这个正在运行的小 内存VPS 。鉴于师傅的淫威,我只能手工编译安装Nginx 1.0.15 + PHP 5.3.12 + MySQL 5.1.62 + eAccelerator 0.9.6.1,不能使用各种一键安装包,以及使用yum命令,因为他说“不手动试一下怎么能学到东西”。废话不说,先将步骤和代码贴出来,打造一个适合 新手(如我)的详细安装教程
准备
- 当然是可以上网的机器,可以是虚拟机,VPS,服务器,安装CentOS,其他分支没测试过,最好在虚拟机上先试手一下,因为有 snapshot,随时可以回滚所有操作。
- 必要时先清空iptables, 关闭SELINUX
- 源文件下载的目录是 /usr/local/src
前期工作
更新系统,安装必要的程序,此步骤需要用到yum命令
安装
先下载各个软件包
cd
/usr/local/src
wget http:
//nginx
.org
/download/nginx-1
.0.15.
tar
.gz
wget http:
//au
.php.net
/get/php-5
.3.16.
tar
.gz
/from/us
.php.net
/mirror
wget http:
//pecl
.php.net
/get/APC-3
.1.9.tgz
wget http:
//mysql
.mirror.kangaroot.net
/Downloads/MySQL-5
.1
/mysql-5
.1.62.
tar
.gz
wget http:
//ftp
.gnu.org
/pub/gnu/libiconv/libiconv-1
.14.
tar
.gz
wget http:
//downloads
.sourceforge.net
/mcrypt/libmcrypt-2
.5.8.
tar
.gz?modtime=1171868460&big_mirror=0
wget http:
//downloads
.sourceforge.net
/mcrypt/mcrypt-2
.6.8.
tar
.gz?modtime=1194463373&big_mirror=0
wget http:
//downloads
.sourceforge.net
/mhash/mhash-0
.9.9.9.
tar
.gz?modtime=1175740843&big_mirror=0
wget http:
//downloads
.sourceforge.net
/project/pcre/pcre/8
.30
/pcre-8
.30.
tar
.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpcre%2Ffiles%2Fpcre%2F8.30%2F&ts=1335184494&use_mirror=aarnet
wget http:
//downloads
.sourceforge.net
/project/eaccelerator/eaccelerator/eAccelerator
%200.9.6.1
/eaccelerator-0
.9.6.1.
tar
.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Feaccelerator%2Ffiles%2Feaccelerator%2FeAccelerator%25200.9.6.1%2F&ts=1335276559&use_mirror=waix
tar
zxvf
libiconv-1.14.
tar
.gz
cd
libiconv-1.14
.
/configure
--prefix=
/usr/local
make
make
install
cd
../
tar
zxvf libmcrypt-2.5.8.
tar
.gz
cd
libmcrypt-2.5.8/
.
/configure
make
make
install
/sbin/ldconfig
cd
libltdl/
.
/configure
--
enable
-ltdl-
install
make
make
install
cd
../../
tar
zxvf mhash-0.9.9.9.
tar
.gz
cd
mhash-0.9.9.9/
.
/configure
make
make
install
cd
../
ln
-s
/usr/local/lib/libmcrypt
.la
/usr/lib/libmcrypt
.la
ln
-s
/usr/local/lib/libmcrypt
.so
/usr/lib/libmcrypt
.so
ln
-s
/usr/local/lib/libmcrypt
.so.4
/usr/lib/libmcrypt
.so.4
ln
-s
/usr/local/lib/libmcrypt
.so.4.4.8
/usr/lib/libmcrypt
.so.4.4.8
ln
-s
/usr/local/lib/libmhash
.a
/usr/lib/libmhash
.a
ln
-s
/usr/local/lib/libmhash
.la
/usr/lib/libmhash
.la
ln
-s
/usr/local/lib/libmhash
.so
/usr/lib/libmhash
.so
ln
-s
/usr/local/lib/libmhash
.so.2
/usr/lib/libmhash
.so.2
ln
-s
/usr/local/lib/libmhash
.so.2.0.1
/usr/lib/libmhash
.so.2.0.1
tar
zxvf
mcrypt-2.6.8.
tar
.gz
cd
mcrypt-2.6.8/
/sbin/ldconfig
.
/configure
make
make
install
cd
../
tar
zxvf pcre-8.30.
tar
.gz
cd
pcre-8.30
.
/configure
make
&&
make
install
cd
../
一、安装MySQL
首先是添加组
groupadd mysql
#创建目录,存放data和pid
mkdir
-p
/home/mysql/mysql-5
.1.62
/3306/
chown
-r mysql:mysql
/home/mysql/
useradd
-s
/sbin/nologin
-M -g mysql mysql
.
/configure
--prefix=
/usr/local/webserver/mysql/
--
enable
-assembler --with-extra-charsets=complex --
enable
-thread-safe-client
--with-big-tables --with-readline --with-ssl --with-embedded-server --
enable
-
local
-infile
--with-plugins=partition,innobase,myisammrg
make
&&
make
install
chmod
+w
/usr/local/webserver/mysql
chown
-R mysql:mysql
/usr/local/webserver/mysql
/usr/local/webserver/mysql/bin/mysql_install_db
--basedir=
/usr/local/webserver/mysql
--user=mysql
cp
-f
/usr/local/webserver/mysql/share/mysql/my-medium
.cnf
/etc/my
.cnf
#将skip-locking
转换成skip-external-locking
sed
-i
's/skip-locking/skip-external-locking/g'
/etc/my
.cnf
sed
-i
's:#innodb:innodb:g'
/etc/my
.cnf
cp
/usr/local/webserver/mysql/share/mysql/mysql
.server
/etc/init
.d
/mysqld
chmod
755
/etc/init
.d
/mysqld
#添加执行权限
ln
-s
/usr/local/webserver/mysql/lib/mysql
/usr/lib/mysql
ln
-s
/usr/local/webserver/mysql/insclude/mysql
/usr/include/mysql
chkconfig
mysqld on
#设置开机启动
log-error =
/home/mysql/mysql-5.1.62/3306/mysql_error.log
pid-file =
/home/mysql/mysql-5.1.62/3306/mysql.pid
datadir =
/home/mysql/mysql-5.1.62/3306/data
/usr/local/webserver/mysql/bin/mysqladmin
-u root password ‘root'
cat
>
/tmp/mysql_sec_script
<<EOF
use mysql;
delete from
user where not (user=
'root'
) ;
delete from user where user=
'root'
and password=
''
;
drop database
test
;
DROP USER
''
@
'%'
;
flush
privileges;
EOF
/usr/local/webserver/mysql/bin/mysql
-u root –p
'root'
-h localhost <
/tmp/mysql_sec_script
rm
-f
/tmp/mysql_sec_script
/etc/init
.d
/mysqld
restart
/etc/init
.d
/mysqld
stop
二、安装PHP
cd
/usr/local/src
tar
zvxf php-5.3.16.
tar
.gz
cd
php-5.3.16
mkdir
-p
/usr/local/webserver/php
.
/configure
--prefix=
/usr/local/webserver/php
--with-config-
file
-path=
/usr/local/webserver/php/etc
--with-mysql=
/usr/local/webserver/mysql
--with-mysqli=
/usr/local/webserver/mysql/bin/mysql_config
--with-iconv-
dir
=
/usr/local
--with-freetype-
dir
--with-jpeg-
dir
--with-png-
dir
--with-zlib
--with-libxml-
dir
=
/usr
--
enable
-xml --disable-rpath --
enable
-discard-path --
enable
-safe-mode
--
enable
-bcmath --
enable
-shmop --
enable
-sysvsem --
enable
-inline-optimization --with-curl --with-curlwrappers
--
enable
-mbregex --
enable
-fpm --
enable
-mbstring --with-mcrypt --with-gd --
enable
-gd-native-ttf
--with-openssl --with-mhash --
enable
-pcntl --
enable
-sockets --with-xmlrpc --
enable
-zip --
enable
-soap
--with-pdo-mysql=
/usr/local/webserver/mysql/
--with-mysql-sock=
/tmp/mysql
.sock
make
ZEND_EXTRA_LIBS=
'-liconv'
make
install
cp
php.ini-production
/usr/local/webserver/php/etc/php
.ini
cp
sapi
/fpm/init
.d.php-fpm
/etc/init
.d
/php-fpm
#因为php5.3开始自带fpm,使用自带的管理脚本
chmod
+x
/etc/init
.d
/php-fpm
chkconfig
php-fpm on
#设置开机自启动
cp
/usr/local/webserver/php/etc/php-fpm
.conf.default
/usr/local/webserver/php/etc/php-fpm
.conf
pid = run
/php-fpm
.pid
user = www
group = www
编译安装apc
cd
/usr/local/src
tar
-zxvf APC-3.1.9.tgz
cd
APC-3.1.9
/usr/local/webserver/php/bin/phpize
.
/configure
--
enable
-apc --
enable
-apc-mmap
--with-php-config=
/usr/local/webserver/php/bin/php-config
make
make
install
extension = "apc.so"
apc.enabled = 1
apc.cache_by_default
= on
apc.shm_segments = 1
apc.shm_size = 32M
apc.ttl =
3600
apc.user_ttl = 3600
apc.num_files_hint = 0
apc.write_lock
= On
三、安装Nginx
首先是建立好用户组
groupadd www
useradd
-s
/sbin/nologin
-g www www
#www
用户不能login
mkdir
-p
/home/wwwroot
#此路
径是用于存放各域名的root路径
chmod
+w
/home/wwwroot
mkdir
-p
/home/wwwlogs
chmod
755
/home/wwwlogs
chown
-R www:www
/home/wwwroot
tar
zxvf
nginx-1.0.15.
tar
.gz
cd
nginx-1.0.15/
.
/configure
--user=www
--group=www --prefix=
/usr/local/webserver/nginx
--with-http_stub_status_module
--with-http_ssl_module --with-http_gzip_static_module
make
&&
make
install
mkdir
/usr/local/webserver/nginx/conf/vhost/
#用于配置各域名
rm
-f
/usr/local/webserver/nginx/conf/nginx
.conf
vi
/usr/local/webserver/nginx/conf/nginx
.conf
user www www;
worker_processes 1;
error_log
/home/wwwlogs/nginx_error.log crit;
pid
/usr/local/webserver/nginx/logs/nginx.pid;
#Specifies the value for
maximum file descriptors that can be opened by this process.
worker_rlimit_nofile
51200;
events
{
use epoll;
worker_connections
51200;
}
http
{
include mime.types;
default_type
application/octet-stream;
server_names_hash_bucket_size 128;
client_header_buffer_size
32k;
large_client_header_buffers 4 32k;
client_max_body_size
8m;
sendfile on;
tcp_nopush on;
keepalive_timeout
60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout
300;
fastcgi_read_timeout 300;
fastcgi_buffer_size
64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size
128k;
fastcgi_temp_file_write_size 256k;
gzip on;
gzip_min_length
1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level
2;
gzip_types text/plain application/x-javascript
text/css application/xml;
gzip_vary on;
#limit_zone
crawler $binary_remote_addr 10m;
#log format
log_format
access '$remote_addr - $remote_user [$time_local] "$request" '
'$status
$body_bytes_sent "$http_referer" '
'"$http_user_agent"
$http_x_forwarded_for';
include vhost/*.conf;
}
cd
/usr/local/webserver/nginx/conf/vhost
vi
domain.com.conf
server
{
listen 80;
server_name
www.domain.com domain.com;
index
index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/domain.com/www;
location ~ .*\.(php|php5)?$
{
fastcgi_pass
127.0.0.1:9000;
fastcgi_index
index.php;
include
fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires
30d;
}
location ~ .*\.(js|css)?$
{
expires
12h;
}
access_log /home/wwwlogs/domain.com.access.log;
}
mkdir
-p
/home/wwwroot/domain
.com
/www/
#! /bin/sh
# chkconfig: 2345 55 25
#
Description: Startup script for nginx webserver on Debian. Place in
/etc/init.d and
# run 'update-rc.d -f nginx defaults', or use the
appropriate command on your
# distro. For CentOS/Redhat run:
'chkconfig --add nginx'
### BEGIN INIT INFO
#
Provides: nginx
# Required-Start: $all
#
Required-Stop: $all
# Default-Start: 2 3 4 5
#
Default-Stop: 0 1 6
# Short-Description: starts the nginx
web server
# Description: starts nginx using
start-stop-daemon
### END INIT INFO
PATH=
/usr/local/sbin
:
/usr/local/bin
:
/sbin
:
/bin
:
/usr/sbin
:
/usr/bin
DESC=
"nginx daemon"
NAME=nginx
DAEMON=
/usr/local/webserver/nginx/sbin/
$NAME
CONFIGFILE=
/usr/local/webserver/nginx/conf/
$NAME.conf
PIDFILE=
/usr/local/webserver/nginx/logs/
$NAME.pid
SCRIPTNAME=
/etc/init
.d/$NAME
set
-e
[ -x
"$DAEMON"
] ||
exit
0
do_start() {
$DAEMON -c
$CONFIGFILE ||
echo
-n
"nginx already
running"
}
do_stop() {
kill
-INT `
cat
$PIDFILE` ||
echo
-n
"nginx not
running"
}
do_reload() {
kill
-HUP `
cat
$PIDFILE` ||
echo
-n
"nginx
can't reload"
}
case
"$1"
in
start)
echo
-n
"Starting $DESC:
$NAME"
do_start
echo
"."
;;
stop)
echo
-n
"Stopping $DESC:
$NAME"
do_stop
echo
"."
;;
reload|graceful)
echo
-n
"Reloading
$DESC configuration..."
do_reload
echo
"."
;;
restart)
echo
-n
"Restarting
$DESC: $NAME"
do_stop
do_start
echo
"."
;;
*)
echo
"Usage: $SCRIPTNAME
{start|stop|reload|restart}"
>&2
exit
3
;;
esac
exit
0
chmod
+x
/etc/init
.d
/nginx
chkconfig nginx on
直接输入以下命令,会得到相应的结果
service nginx restart #重启nginx
service mysqld restart #重启mysql
service php-fpm restart #重启php-fpm
service php-fpm stop #停止php-fpm
service php-fpm start #启动php-fpm
各站点的根目录是 /home/wwwroot/
应用的目录是 /usr/local/webserver/
各配置文件的存放位置是:
php: /usr/local/webserver/php/etc/
mysql: /etc/
nginx: /usr/local/webserver/nginx/conf/
1. 启动nginx的时候遇到 error while loading shared libraries: libpcre.so.1:
答:增加以下软连接,注意,如果是64位系统,对应目录是/lib64
#cd /lib64
cd
/lib
ln
-s
libpcre.so.0.0.1 libpcre.so.1
参考:
CentOS 6.2编译安装Nginx1.0.14+MySQL5.5.22+PHP5.3.10 http://www.osyunwei.com/archives/3339.html
Nginx 0.8.x + PHP 5.2.13(FastCGI)搭建胜过Apache十倍的Web服务器(第6版)[原创]http://blog.s135.com /nginx_php_v6/
LNMP一键安装 http://lnmp.org/
发表评论
-
centos安装denyhost
2020-11-21 14:29 530安装denyhost 下面这个不知是否是官网。 https: ... -
rabbitmq的终端管理命令rabbitmqadmin
2020-11-13 17:03 969启动rabbitmq systemctl start rab ... -
centos 安装 RabbitMQ
2020-11-11 14:40 538安装 erlang语言环境。 千万不要直接 yum inst ... -
centos的证书配置
2020-06-09 20:32 1048用百度云,发现对其他https 的 网站访问时有时无。 排查 ... -
git常用命令
2020-02-03 15:27 395git常用命令 删除本地分支。 git branch -d ... -
shadowsocks 故障解决
2020-02-01 12:06 4861今天突然发现shadowsocks无法使用。 解决方案:修改服 ... -
putty设置正向代理
2019-08-21 21:17 668利用putty设置正向代理。 假如你的电脑不能访问服务器B, ... -
centos7下vsftp的虚拟用户安装和配置
2019-07-12 20:05 960安装ftp在centos7下, 此类文章很多,这里也只是总结一 ... -
使用systemd为php程序建立守护进程
2019-01-14 16:47 2206前提,是centos7,或ubuntu对应版本。 以前需要 ... -
centos7.4安装php7.2套件
2018-08-24 12:07 3073# 操作系统 centos7.4 # 所谓套件,就是nginx ... -
centos7.4安装php5.6套件
2018-08-15 18:09 2112本文不包括清理系统原有环境里的nginx,php,mysql ... -
mysql数据库导入导出防止乱码,加用户
2017-06-19 10:42 632数据库原本在linux上,项目的编码是gbk。 现在想导入到w ... -
centos7 时间同步
2017-06-15 15:41 915# 安装 yum install chrony # 启 ... -
mysql设用户设密码
2013-12-11 16:45 787都是抄的。 添加最高权限用户 假设root的密码是passw ... -
获得linux文件夹下的所有文件(强化版)
2013-04-26 10:07 968class Sys { /** ... -
使nginx拒绝特定url(实际是目录)下所有文件的请求
2013-03-26 14:56 1461if ($request_uri ~* (.*)(\ ... -
使用php充当shell脚本(转载)
2013-02-02 09:17 1174任务:过滤出2010-08-18的apache访问日志,并放到 ... -
linux常用故障排查
2013-01-28 08:57 970linux 下查找大于100M的文件 find . - ... -
预排序遍历树算法(非递归无限极分类算法)学习笔记(转载文章)
2012-12-18 11:56 1266原文: http://be-evil.org/post-168 ... -
网卡流量监控(转载文章)
2012-12-11 10:45 956http://www.vpseek.com/newbies-g ...
相关推荐
基于 LNMP 安装 Zabbix 详解 Zabbix 是一个基于 Web 的网络监控系统,可以监控服务器、网络设备和应用程序的状态。 LNMP 是一个流行的 Linux 发行版的ronym,分别代表 Linux、Nginx、MySQL 和 PHP。下面我们将详细...
CentOS 7 LNMP 安装 CentOS 7 LNMP 安装是指在 CentOS 7 操作系统上安装 LNMP 软件堆栈,该堆栈包括 Linux 操作系统、Nginx Web 服务器、MySQL 数据库和 PHP 编程语言。 LNMP 软件堆栈广泛应用于网站和网络应用程序...
lnmp安装文件,学习linux,PHP的需要,简便的安装,节省资lnmp安装文件,学习linux,PHP的需要,简便的安装,节省资原lnmp安装文件,学习linux,PHP的需要,简便的安装,节省资原
在下一篇文章中,我们将继续介绍如何安装和配置Nginx、PHP-FPM、MySQL等核心组件,并进行最终的测试。在整个过程中,需要注意每一步的细节,确保所有的组件都能够正确安装并且相互之间兼容性良好。对于初学者来说,...
本文将详细介绍如何在Linux和Windows系统上使用LNMP一键安装包来安装并配置ImageMagick。 首先,我们来看Linux系统的安装步骤。在Linux上,通常会使用包管理器进行安装。对于基于Debian的系统(如Ubuntu),可以...
**LNMP编译安装文档详解** LNMP是Linux、Nginx、MySQL和PHP的缩写,这是一个常见的高性能Web服务组合。本文档将详细介绍如何在Linux系统上进行LNMP的编译安装,以及WordPress博客的搭建,对于初学者来说是一份宝贵...
**LAMP&LNMP安装教程** LAMP(Linux, Apache, MySQL, PHP)和LNMP(Linux, Nginx, MySQL, PHP)是两种常见的Web服务器架构,它们为基于Linux系统的网站提供了稳定且高效的运行环境。这篇教程将详细介绍这两种配置的...
本教程将详细讲解如何在Linux系统上通过源码方式安装LNMP组件。 首先,我们需要理解为什么选择源码安装。源码安装允许我们自定义编译选项,优化性能,以及解决依赖问题,特别是对于旧版本或特定需求的系统,源码...
在开始LNMP环境搭建前,确保系统已经安装了一系列的基础开发库和工具,这一步对于后续编译和安装各组件至关重要。通过运行以下`yum`命令,可以一次性安装所有必需的依赖: ```bash # yum -y install gcc gcc-c++ ...
在CentOS 6.8 64位系统上进行LNMP环境搭建,首先需要理解以下几个核心组件: 1. **Linux**:作为基础操作系统,CentOS是一款基于RHEL(Red Hat Enterprise Linux)的开源发行版,以其稳定性和安全性著称。6.8版本...
CentOS 6.2 + LNMP 一键安装包 + Discuz 论坛安装教程 本文将详细介绍如何使用 LNMP 一键安装包在 CentOS 6.2 上安装 LNMP 服务器,并安装 Discuz 论坛。 一、下载 LNMP 一键安装包 LNMP 一键安装包提供了两种...
# lnmp.sh # CentOS: 7.x # Nginx: latest # Mysql: 5.6.33 # PHP: 5.6.26 # 需修改/etc/nginx/conf.d/default.conf适配PHP
总结,LNMP安装是一个多步骤的过程,涉及Linux系统更新、安装额外仓库、部署Nginx、MySQL和PHP等组件。通过这个过程,你可以搭建一个高效且稳定的Web服务器环境,支持各种PHP应用程序的运行。在实际使用中,还需要...
Centos11 LNMP安装.docx
Centos11 LNMP安装.pdf
**源码安装LNMP环境详解** 在Linux操作系统中,LNMP(Linux + Nginx + MySQL + PHP)是一种常见的Web服务器架构,适用于搭建高性能、高并发的网站服务。本教程将详细介绍如何在CentOS 6.8环境下通过源码安装LNMP...
**LNMP安装位置与环境准备** - LNMP指的是Linux、Nginx、MySQL和PHP的组合,是一种常见的Web服务器架构。 - LNMP的安装目录位于`/root/lnmp1.2-full/src`。 - 在开始修改Nginx之前,需要对LNMP的安装路径和安装的...
lnmp一键安装.txtlnmp一键安装.txtlnmp一键安装.txtlnmp一键安装.txt
适用于centos 的lnmp环境安装脚本。 学习shell的可以看看