免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2179 | 回复: 0
打印 上一主题 下一主题

LCMP服务器安装文档 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-22 19:10 |只看该作者 |倒序浏览
Linux+Cherokee+Mysql+Php+Zend

软件介绍:
操作系统: Centos 5.4 ——————————————————————————–
Web 服务端: cherokee-0.99.44.tar.gz ————————————————————-
Php引擎: php-5.2.13.tar.gz ————————————————————————-
FastCgi: php-5.2.13-fpm-0.5.13.diff.gz ————————————————————
数据库: mysql-5.0.51b.tar.gz ————————————————————————-
Zend引擎 ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz——————————————-
扩展模块:
freetype-2.3.9.tar.gz —————————————————————————
libpng-1.2.38rc02.tar.gz ———————————————————————–
zlib-1.2.3.tar.gz ——————————————————————————–
libpng-1.2.38rc02.tar.gz ———————————————————————–
jpegsrc.v7.tar.gz ——————————————————————————–
Libiconv-1.13.tar.gz —————————————————————————–
gd-2.0.33.tar.gz ———————————————————————————
libmcrypt-2.5.8.tar.gz —————————————————————————–
mcrypt-2.6.8.tar.gz —————————————————————————–
memcache-2.2.5.tgz —————————————————————————-
mhash-0.9.9.9.tar.gz —————————————————————————-
eaccelerator-0.9.5.3.tar.bz2 ——————————————————————–

软件下载:
我是在/~下 mkdir soft cd soft vi down.sh
#!bin/bash/
#
wget http://www.cherokee-project.com/cherokee-latest-tarball
wget http://www.php.net/get/php-5.2.13.tar.gz/from/this/mirror
wget http://php-fpm.org/downloads/php-5.2.13-fpm-0.5.13.diff.gz
wget http://mirrors.sohu.com/mysql/MySQL-5.5/mysql-5.5.2-m2.tar.gz
wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.tar.gz
wget http://downloads.sourceforge.net ... 60&big_mirror=0
wget http://downloads.sourceforge.net ... 73&big_mirror=0
wget http://pecl.php.net/get/memcache-2.2.5.tgz
wget http://downloads.sourceforge.net ... 43&big_mirror=0
wget ftp://ftp.csx.cam.ac.uk/pub/soft ... re/pcre-8.01.tar.gz
wget http://bart.eaccelerator.net/sou ... rator-0.9.6.tar.bz2
wget http://pecl.php.net/get/PDO_MYSQL-1.0.2.tgz
wget http://blog.s135.com/soft/linux/ ... /ImageMagick.tar.gz
wget http://pecl.php.net/get/imagick-2.3.0.tgz
wget http://download.scientificlinux. ... glibc23-i386.tar.gz
:wq

chmod +x down.sh

./down.sh

系统环境

系统分区
/boot
SWAP
/opt /*软件都可以安装到这个目录方便管理*/
/www /*web程序可以放在此目录里方便管理,包括虚拟目录*/
/bak /*可以通过contab控制备份脚本来备份web文件和数据库文件*/
/Data /*生产环境加上这个目录把数据库可以安装在此*/
/

保留的系统服务
Atd; Crond; Irqblance; Microcode_ctl; network; Sendmail; sshd; syslog

Yum安装更新同时更新软件

Wget http://centos.ustc.edu.cn/CentOS-Base.repo
cp CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo
rpm–import http://centos.ustc.edu.cn/centos/RPM-GPG-KEY-CentOS-5
yum grouplist
yum groupinstall “Development Tools”
安装所需的软件用Yum install xxxxxx

安装程序

Cherokee官方网站 http://www.cherokee-project.com/
安装Cherokee
tar zxvf cherokee-0.99.44.tar.gz
cd cherokee-0.99.44.tar.gz
./configure –prefix=/opt/Cherokee –localstatedir=/var –sysconfdir=/etc –with-wwwroot=/www –disable-ipv6 –with-mysql
Make
Make install
启动cherokee
Cd /opt/Cherokee/sbin
./Cherokee-admin –b &
使用netstat –anp|grep 9090看看端口是否存在。
这里会提供用户名和一次性的密码,在浏览器打开http://yourserverip:9090 写入启动时生成的用户名和密码登陆后,在页面内启动服务。启动后用http://yourserverip看看是否能看到cherokee的默认页面。
Parameter Description
–with-wwwroot=DIR Specify the webserver root directory
–with-wwwuser=USER Custom username under which the server will run
–with-wwwgroup=GROUP Custom group under which the server will run
–disable-epoll Disable epoll() support
–disable-pthread Disable threading support
–disable-readdir_r Disable readdir_r usage
–disable-ipv6 Disable IPv6 support
–disable-pam Disable PAM support
–enable-trace Allows debugging options
–disable-admin Skips cherokee-admin installation
–disable-largefile omit support for large files
–enable-internal-pcre Enable internal PCRE
–disable-nls do not use Native Language Support
–enable-static-module=MODULE build listed modules as static. Accepts ALL
———————————————————————————————————-
建立所需的用户组
Groupadd mysql \\建立mysql用户组
Useradd –g mysql mysql \\增加mysql用户到mysql用户组
Groupadd www \\建立www用户组
Useradd –g www www \\增加www用户到www用户组
———————————————————————————————————————————————————————————————–
安装Mysql5
tar zxvf mysql-5.0.51b.tar.gz
cd mysql-5.0.51b
./configure –prefix=”/opt/mysql5″ –with-comment=Source –with-server-suffix=-enterprise-gpl –with-mysql-user=mysql –without-debug –with-socket-path=”/opt/mysql5/var/mysql.sock” –with-big-tables –with-charset=gbk –with-collation=gbk_chinese_ci –with-extra-charsets=all –with-pthread –enable-static –enable-thread-safe-client –with-client-ldflags=-all-static –with-mysqld-ldflags=-all-static –enable-assembler –without-innodb –without-ndb-debug –without-isam –enable-local-infile –with-readline –with-raid
Make
Make install
cd /opt/mysql5
chown -R mysql .
chgrp -R mysql .
bin/mysql_install_db –user=mysql
chown -R root .
chown -R mysql var
cp share/mysql/my-medium.cnf /etc/my.cnf
cp share/mysql/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
chkconfig –add mysqld
chkconfig –level 3 mysqld on
启动mysql
service mysqld start
修改mysql的root密码
mysqladmin -u root -p PASSWORD yourpassword
———————————————————————————————————-
编译安装PHP 5.2.13所需的支持库
tar zxvf libiconv-1.13.tar.gz
cd libiconv-1.13/
./configure –prefix=/opt/lib/libiconv
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 ../
————————————————————————————————————————————————————–
安装libpng jpegsrc freetype zlib gd2
#先安装zlib,freetype,libpng,jpeg,再装GD

#1.安装zlib
tar zxvf zlib-1.2.2.tar.gz
cd zlib-1.2.2
./configure
make
make install

#2.安装libpng
tar zxvf libpng-1.2.7.tar.tar
cd libpng-1.2.7
cd scripts/
mv makefile.linux ../makefile
cd ..
make
make install
#注意,这里的makefile不是用./configure生成,而是直接从scripts/里拷一个

#3.安装freetype
tar zxvf freetype-2.1.9.tar.gz
cd freetype-2.1.9
./configure
Make
make install

#4.安装Jpeg
tar zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure –enable-shared
Make
make test
make install
#可能出错,一般为目录不存在,建立一个目录即可。注意,这里configure一定要带–enable-shared参数,不然,不会生成共享库

5.yum安装fontconfig和fontconfig-devel[yum install fontconfig fontconfig-devel]

6. yum安装其他必须的软件
yum -y install autoconf libjpeg-devel libpng-devel freetype-devel libxml2 libxml2-devel zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers

7.安装GD
tar zxvf gd-2.0.33.tar.gz
cd gd-2.0.33
./configure –prefix=/opt/gd2 –with-jpeg=/usr/local/modules/jpeg7 –with-png –with-zlib –with-freetype=/usr/local/modules/freetype
make
make install
———————————————————————————————————————————————————————————————–
#==================================================================
#安装php以及扩展
#==================================================================
#一、安装PHP
tar zxvf php-5.2.13.tar.gz
gzip -cd php-5.2.13-fpm-0.5.13.diff.gz | patch -d php-5.2.13 -p1
cd php-5.2.13/
./configure –prefix=/opt/php5 –with-config-file-path=/opt/etc/cgi –with-mysql=/opt/mysql5 –with-mysqli=/opt/mysql5/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-fastcgi –enable-fpm –enable-force-cgi-redirect –enable-mbstring –with-mcrypt –with-gd –enable-gd-native-ttf –with-openssl –with-mhash –enable-pcntl –enable-sockets –with-ldap –with-ldap-sasl –with-xmlrpc –enable-zip –enable-soap
make ZEND_EXTRA_LIBS=’-liconv’
make install
mkdir -p /opt/etc/cgi/
cp php.ini-dist /opt/etc/cgi/php.ini
mv -f /~/soft/conffile/php-fpm.conf /opt/php5/etc/php-fpm.conf
echo ‘ulimit -SHn 65535′ >> /etc/rc.local
echo ‘/opt/php5/sbin/php-fpm start’ >> /etc/rc.local
———————————————————————————————————-
#编译安装PHP5扩展模块
tar zxvf memcache-2.2.5.tgz
cd memcache-2.2.5/
/opt/php5/bin/phpize
./configure –with-php-config=/opt/php5/bin/php-config
make && make install
cd ../

tar jxvf eaccelerator-0.9.6.tar.bz2
cd eaccelerator-0.9.6/
/opt/php5/bin/phpize
./configure –enable-eaccelerator=shared –with-php-config=/opt/php5/bin/php-config
make && make install
cd ../

tar zxvf PDO_MYSQL-1.0.2.tgz
cd PDO_MYSQL-1.0.2/
/opt/php5/bin/phpize
./configure –with-php-config=/opt/php5/bin/php-config –with-pdo-mysql=/opt/mysql5
make && make install
cd ../

tar zxvf ImageMagick.tar.gz
cd ImageMagick-6.5.1-2/
./configure
make && make install
cd ../

tar zxvf imagick-2.3.0.tgz
cd imagick-2.3.0/
/opt/php5/bin/phpize
./configure –with-php-config=/opt/php5/bin/php-config
make && make install
cd ../
———————————————————————————————————————————————————————————————–
#5、修改php.ini文件
#手工修改:查找/opt/etc/cgi/php.ini中的extension_dir = “./”
#修改为extension_dir = “/opt/php5/lib/php/extensions/no-debug-non-zts-20060613/”
#并在此行后增加以下几行,然后保存:
  extension = “memcache.so”
  extension = “pdo_mysql.so”
  extension = “imagick.so”

#再查找output_buffering = Off
#修改为output_buffering = On
#———————————————————————————————————————————————————–
#配置eAccelerator加速PHP:
mkdir -p /opt/eaccelerator/eaccelerator_cache
vi /opt/etc/cgi/php.ini
#按shift+g键跳到配置文件的最末尾,加上以下配置信息:

[eaccelerator]
zend_extension=”/opt/php5/lib/php/extensions/no-debug-non-zts-20060613/eaccelerator.so”
eaccelerator.shm_size=”64″
eaccelerator.cache_dir=”/opt/eaccelerator/eaccelerator_cache”
eaccelerator.enable=”1″
eaccelerator.optimizer=”1″
eaccelerator.check_mtime=”1″
eaccelerator.debug=”0″
eaccelerator.filter=”"
eaccelerator.shm_max=”0″
eaccelerator.shm_ttl=”3600″
eaccelerator.shm_prune_period=”3600″
eaccelerator.shm_only=”0″
eaccelerator.compress=”1″
eaccelerator.compress_level=”9″
#———————————————————————————————————————————————————–
启动fast-cgi
ulimit -SHn 51200
/opt/php5/sbin/php-fpm start
#修改php.ini后不重启php-cgi,重新加载配置文件使用reload
/opt/php/sbin/php-fpm reload
#———————————————————————————————————————————————————–
安装Zend
Tar zxvf ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz
Cd ZendOptimizer-3.3.3-linux-glibc23-i386
./install
前面介绍就不说了,问Zend安装到哪里 你随便安装 我装的是/opt/zend 再问php.ini在哪里 我的是/opt/etc/cgi 问是否重启apache 选择 no 然后 就OK了
#———————————————————————————————————————————————————–
#==================================================================
优化Linux内核参数
vi /etc/sysctl.conf
# Add
net.ipv4.tcp_max_syn_backlog = 65536
net.core.netdev_max_backlog = 32768
net.core.somaxconn = 32768
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries = 2
net.ipv4.tcp_tw_recycle = 1
#net.ipv4.tcp_tw_len = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.tcp_max_orphans = 3276800
#net.ipv4.tcp_fin_timeout = 30
#net.ipv4.tcp_keepalive_time = 120
net.ipv4.ip_local_port_range = 1024 65535

使sysctl.conf立即生效
/sbin/sysctl –p
————————————————————————————————————————————————————–
===================================================================
配置cherokee集成php
===================================================================
启动Cherokee
Cd /opt/Cherokee/sbin
./cherokee-admin –b &
在屏幕上会出现如下提示:
[root@jjjjjjjl sbin]# ./cherokee-admin -b &
[1] 21876
[root@jjjjjjjl sbin]#
Login:
User: admin //登陆用户名
One-time Password: wmMwL7lEMwpcBIqW //登陆密码

Web Interface:
URL: http://localhost:9090/

[29/03/2010 15:16:40.071] (error) rrd_tools.c:120 – Could not find the rrdtool binary.
Cherokee Web Server 0.99.44 (Mar 29 2010): Listening on port ALL:9090, TLS
disabled, IPv6 disabled, using epoll, 4096 fds system limit, max. 2041
connections, caching I/O, single thread
打开浏览器键入: http://yourserverip:9090.会出现输入用户名和密码的地方,输入刚才显示在屏幕上的用户名和密码后登陆到Cherokee的管理页面。
中间红色部分表示服务器未启动,可以先启动服务器测试cherokee是否已经OK,点击启动后用http://yourserverip 来访问下默认页面如果出现下面的页面则表示cherokee安装启动成功。
配置PHP扩展:
点击管理页面左侧栏里的 数据源 同时在右边页面里可以看到需要我们填写的项目,下图是填写好的
类型选择:本地引擎
名称:用户自定义爱叫啥都可以
连接:这里可以看出来时fastcgi的9000端口
解释器:这里是php-fmp启动的路径
下面部分可以选填,解释器填写好后,在上面应该会出现 已有数据源。别忘了点击左侧的保存。

再点击左侧的 虚拟主机配置:
再点击右边页面的 Default虚拟主机 –>扩展设置—>WizardsLanguages—>PHPRun Wizards
点击目标里的php
选择—处理根目录 输入/ 后再点击 左侧的保存。然后回到首页 重启服务器。配置完成可以运行php程序了,如果打不开80请检查你的iptables (建议还是开启iptables,测试环境可以用service iptables stop关闭防火墙)
把某个端口在防火墙开启命令:
先用iptables –L 查看
Iptables –I RH-Firewall-1-INPUT –p tcp –dport 80 –j ACCEPT
关于Cherokee的其他配置请到这里查看,自学成才。

http://www.cherokee-project.com/doc/

————–
数据备份脚本
#!/bin/bash
#
service mysqld stop
date ‘+tar -zcvf /opt/bak/sql/data.%Y-%m-%d.tar.gz /opt/mysql5/var’ | sh
service mysqld start

cron –e
增加
0 1 * * * /opt/sqlbak.sh
Wq!
在计划任务里,每天凌晨1点对数据库进行备份
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP