debian7.7源码编译安装lamp

操作系统是Debian7.7 X64,系统是最小化安装。

首先安装基本的系统组件

apt-get install gcc g++ cmake automake libncurses5-dev ntpdate bison chkconfig curl  iftop sysstat dstat iotop  zlib1g-dev libssl1.0.0 libssl-dev openssl   libcurl4-openssl-dev pkg-config libgdbm-dev -y

#安装zlib

tar xzvf zlib-1.2.8.tar.gz

cd zlib-1.2.8

./configure --prefix=/usr/local/zlib

make && make install

cd ..

#安装pcre

tar xzvf pcre-8.36.tar.gz

cd pcre-8.36/

./configure --prefix=/usr/local/pcre

make && make install

cd ..

#安装Apache

tar xzvf httpd-2.4.10-deps.tar.gz

tar xzvf httpd-2.4.10.tar.gz

cd httpd-2.4.10/

./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --with-pcre=/usr/local/pcre --with-zlib=/usr/local/zlib

make && make install

cd ..

cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd

#修改Apache开机脚本,以只支持debian,将这些配置文件写到httpd的开头即可

#!/bin/sh

### BEGIN INIT INFO

# Provides:          apache2

# Required-Start:    $local_fs $remote_fs $network $syslog

# Required-Stop:     $local_fs $remote_fs $network $syslog

# Default-Start:     2 3 4 5

# Default-Stop:      0 1 6

# Short-Description: starts the apache2 daemon

# Description:       starts apache2 using start-stop-daemon

### END INIT INFO

chkconfig --add httpd

chkconfig httpd on

#安装mysql

groupadd -g 600 mysql

useradd -g mysql -u 600 -s /usr/sbin/nologin mysql

tar xzvf mysql-5.6.21.tar.gz

cd mysql-5.6.21/

cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_EXTRA_CHARSETS=all -DWITH_DEBUG=0

make -j 4

make install

cd /usr/local/mysql/

chown -R mysql .

chgrp -R mysql .

cd scripts/

./mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data

cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld

chmod 755 /etc/init.d/mysqld

chkconfig mysqld on

#修改my.cnf

vim /usr/local/mysql/my.cnf

basedir = /usr/local/mysql

datadir = /usr/local/mysql/data

socket = /tmp/mysql.sock

echo "/usr/local/mysql/lib">> /etc/ld.so.conf

ldconfig

/etc/init.d/mysqld start

echo ‘export PATH=$PATH:/usr/local/mysql/bin‘ >>/etc/profile

source /etc/profile

#安装freetype

tar xzvf freetype-2.4.9.tar.gz

cd freetype-2.4.9

./configure --prefix=/usr/local/freetype

make && make install

cd ..

#安装libpng

tar xzvf libpng-1.5.10.tar.gz

cd libpng-1.5.10

./configure --prefix=/usr/local/libpng

make && make install

cd ..

#安装jpeg

tar xzvf jpegsrc.v9.tar.gz

cd jpeg-9/

./configure --prefix=/usr/local/jpeg9

make && make install

cd ..

#安装gd

tar xzvf gd-2.0.33.tar.gz

cd gd-2.0.33/

./configure --prefix=/usr/local/gd2 --with-zlib=/usr/local/zlib --with-png=/usr/local/libpng --with-jpeg=/usr/local/jpeg9 --with-gd=shared

#修改文件

vim gd_png.c   修改第十五行如下

#include "/usr/local/libpng/include/png.h"              /* includes zlib.h and setjmp.h */

make && make install

cd ..

#安装libiconv

tar xzvf libiconv-1.14.tar.gz

cd libiconv-1.14

./configure --prefix=/usr/local/libiconv

make && make install

cd ..

#安装libmcrypt

tar xzvf libmcrypt-2.5.8.tar.gz

cd libmcrypt-2.5.8

./configure --prefix=/usr/local/libmcrypt

make && make install

cd ..

#安装mhash

tar xzvf mhash-0.9.9.9.tar.gz

cd mhash-0.9.9.9

./configure --prefix=/usr/local/mhash

make && make install

cd ..

#安装curl

tar xzvf curl-7.39.0.tar.gz

cd curl-7.39.0/

./configure --prefix=/usr/local/curl

make && make install

cd ..

#安装libxml2

tar xzvf libxml2-2.8.0.tar.gz

cd libxml2-2.8.0

./configure --prefix=/usr/local/libxml2

make && make install

cd ..

#修改编译错误

vim /usr/local/gd2/include/gd_io.h

typedef struct gdIOCtx

{

int (*getC) (struct gdIOCtx *);

int (*getBuf) (struct gdIOCtx *, void *, int);

void (*putC) (struct gdIOCtx *, int);

int (*putBuf) (struct gdIOCtx *, const void *, int);

/* seek must return 1 on SUCCESS, 0 on FAILURE. Unlike fseek! */

int (*seek) (struct gdIOCtx *, const int);

long (*tell) (struct gdIOCtx *);

void (*gd_free) (struct gdIOCtx *);

void (*data)     #增加此行

}

#php

tar xzvf php-5.4.34.tar.gz

cd php-5.4.34/

./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc/ --with-mysql=/usr/local/mysql/ --with-apxs2=/usr/local/apache2/bin/apxs  --with-jpeg-dir=/usr/local/jpeg9 --with-freetype-dir=/usr/local/freetype --with-png-dir=/usr/local/libpng --with-libxml-dir=/usr/local/libxml2 --with-gd=/usr/local/gd2 --with-mcrypt=/usr/local/libmcrypt --with-mhash=/usr/local/mhash  --with-zlib=/usr/local/zlib --with-pcre-dir=/usr/local/pcre --enable-mbstring=cn --enable-sockets --enable-pcntl --with-gdbm --enable-ftp --with-openssl --with-curl=/usr/local/curl

make && make install

cp php.ini-production /usr/local/php/etc/php.ini

#php结合apache

sed -i ‘/AddType application\/x-gzip .gz .tgz/a\    AddType application\/x-httpd-php .php\n    AddType application\/x-httpd-php-source .phps‘ /usr/local/apache2/conf/httpd.conf

#添加首页支持

sed -i ‘/DirectoryIndex index.html/c\     DirectoryIndex index.php index.html‘ /usr/local/apache2/conf/httpd.conf

service httpd -t

service httpd start

cd ..

php测试页

echo "<?php phpinfo(); ?>" >/usr/local/apache2/htdocs/index.php

时间: 2024-10-12 23:43:08

debian7.7源码编译安装lamp的相关文章

纯源码编译安装LAMP,linux,httpd,php,mysql源码编译安装

教程目标:使用源码编译安装的LAMP,运行php网页基础代码 日    期:2015年08月19日 联系邮箱:[email protected] Q Q  群:1851 15701 51CTO博客首页:http://990487026.blog.51cto.com做一个对读者负责的博主.安装一个和我一样的纯净系统,我可以安装成功,你也可以安装成功.我行,你也行!================================================================安装准备

源码编译安装LAMP环境及配置基于域名访问的多虚拟主机

实验环境及软件版本: CentOS版本: 6.6(2.6.32.-504.el6.x86_64) apache版本: apache2.2.27 mysql版本:  Mysql-5.6.23 php版本:    php-5.3.27 一.关闭防火墙:service iptables stop chkconfig iptables off 二.关闭selinux: sed -i 's/SELINUX=disabled/SELINUX=enforcing/g' /etc/selinux/config

CentOS 6.3下源码编译安装LAMP

一.简介 什么是LAMP    LAMP是一种Web网络应用和开发环境,是Linux, Apache, MySQL, Php/Perl的缩写,每一个字母代表了一个组件,每个组件就其本身而言都是在它所代表的方面功能非常强大的组件.    LAMP这个词的由来最早始于德国杂志“c't Magazine”,Michael Kunze在1990年最先把这些项目组合在一起创造了LAMP的缩写字.这些组件并不是开始就设计为一起使用的,但是,这些软件都是开源的,可以很方便 的随时获得并免费使用,这就导致了这些

RHEL 6.5 64bit下源码编译安装LAMP(Apache 2.4.12、MySQL 5.5.42、PHP 5.3.10)

一.关闭防火墙及SELINUX: #iptables -F #/etc/init.d/iptables stop #sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux 二.下载软件包: 1.下载apache: http://apache.dataguru.cn//httpd/httpd-2.4.12.tar.gz 2.下载mysql: http://mysql.mirror.kangaroot.net/Do

centos源码编译安装lamp环境

一.熟悉系统环境 查看系统版本号 cat /etc/issue 查看所有硬件的型号 dmidecode | more 查看memory info cat /proc/meminfo | more 查看CPU info cat /proc/cpuinfo 查看磁盘信息 df -lh 二.准备工作 更新系统时间 ntpdate time.windows.com;/sbin/hwclock -w 备份并替换系统的repo文件 sudo mv /etc/yum.repos.d/CentOS-Base.r

ubuntu linux下源码编译安装lamp环境

安装zlib库 tar -zvxf zlib-1.2.8.tar.gz cd zlib-1.2.8 ./configure make && make install 2.安装apache2.4.23 tar -zvxf httpd-2.4.23.tar.gz cd httpd-2.2.23 ./configure  --prefix=/usr/local/http2 \ --enable-modules=all \          //支持动态,静态加载模块 --enable-rewri

源码编译安装LAMP

环境:centos6.6;httpd-2.2.34;mysql-5.5.55;php5.6.31 #!/bin/bash #2017-08-12 #author by Tan Wen Xin #Auto install LAMP #create DNS server cat>>/etc/resolv.conf<<EOF nameserver 192.168.8.2 EOF ######################httpd-2.2.34 install#############

详解LAMP源码编译安装

实战:LAMP源码编译安装 家住海边喜欢浪:zhang789.blog.51cto.com 目录 详解LAMP源码编译安装 LAMP简介 一.准备工作 二.编译安装 Apache 三.编译安装 MySQL 四.编译安装 PHP 测试LAMP搭建开源数据web管理程序phpMyadmin 详解LAMP源码编译安装 LAMP简介 LAMP是当下非常流行的一套Web架构,我们可以在GNU/Linux下通过其他人打包的程序包来进行安装; 但是在生产环境中,很多时候都需要我们自己定制安装AMP,编译安装L

源码编译搭建LAMP架构

前述: 本次源码编译安装LAMP平台架构在一台CentOs 7虚拟机完成(穿插叙述叙述mariadb在另一台主机上配置方法),php5以模块形式编译安装到httpd服务器上,httpd服务器Apace多路处理模块(MPM)采用prefork机制. 下面为安装所用的的以下软件叙述: CentOS  7 IP:172.16.49.2:Kernel:3.10.0-229.el7.x86_64 MariaDB 通用二进制格式mariadb-5.5.46-linux-x86_64.tar httpd 编译