LAMP 一键部署

LAMP 一键部署

部署http


#!/bin/bash

### global variables
export lamp_repo=http://192.168.1.5/lamp/
export lampdir=/lampdata
export httpdir=$lampdir/httpd/

export httpd_version=httpd-2.4.33.tar.bz2
export apr_version=apr-1.6.3.tar.gz
export apr_util_version=apr-util-1.6.1.tar.gz

Get_Version()
{
        echo `echo $1 | sed -r '[email protected](.*)\.tar(.*)@\[email protected]' `
}

rm -rf $lampdir/*
cd $lampdir

#download http
if [ ! -f "$httpd_version" ];then
        wget $lamp_repo$httpd_version
fi
tar xf $httpd_version
http_tar_dir=httpd-2.4.33

#download apr
if [ ! -f "$apr_version" ];then
        wget $lamp_repo$apr_version
fi
tar xf $apr_version
aprdir=`Get_Version $apr_version`
#echo $aprdir
mv $aprdir $http_tar_dir/srclib/apr

#download apr_util
if [ ! -f "$apr_util_version" ];then
        wget $lamp_repo$apr_util_version
fi
tar xf $apr_util_version
apr_util=`Get_Version $apr_util_version`
mv $apr_util $http_tar_dir/srclib/apr-util

#configure
cd $http_tar_dir
./configure --prefix="$httpdir" --with-mpm=prefork --enable-so --enable-rewrite --enable-mods-shared=all --enable-nonportable-atomics=yes --disable-dav --enable-deflate --enable-cache --enable-disk-cache --enable-mem-cache --enable-file-cache --enable-ssl --with-included-apr --enable-modules=all  --enable-mods-shared=all --enable-cgi
CPU_NUM=$(cat /proc/cpuinfo | grep processor | wc -l)
if [ $CPU_NUM -gt 1 ];then
        make -j $CPU_NUM
else
        make
fi
make install
cp support/apachectl /etc/init.d/httpd
chmod u+x /etc/init.d/httpd

原文地址:https://www.cnblogs.com/ddz-linux/p/10699451.html

时间: 2024-11-08 03:04:39

LAMP 一键部署的相关文章

CentOS7 一键部署LAMP环境

一.准备工作: 1)所需素材网盘链接:https://pan.baidu.com/s/17bQNJJ1-FwNzvtJI4rP5cw 提取码:m0hi 2)编写脚本,脚本内容如下: [[email protected] ~]# vim lamp.sh #!/bin/bash #安装Apache mount /dev/cdrom /mnt cd /mnt rpm -ivh apr-1.4.8-3.el7.x86_64.rpm rpm -ivh apr-devel-1.4.8-3.el7.x86_6

LAMP一键安装(Python版)

去年有出一个python整的LAMP自动安装,不过比较傻,直接调用的yum 去安装了XXX...不过这次一样有用shell..我也想如何不调用shell 来弄一个LAMP自动安装部署啥啥的..不过尼玛智商有限,没搞定,暂且分享一下 先说说目前的缺陷     这个脚本总体来说是调用一个字典,组成这个字典是最花费时间的,实际代码到是没几行,本来想把Nginx 的部署也加进去,什么memcached phpmyadmin apc 这样的常用组件作为功能加进去,尼玛,时间不够,只能打打酱油,包括最后我也

LAMP一键安装包(Python版)

去年有出一个python整的LAMP自动安装,不过比较傻,直接调用的yum 去安装了XXX...不过这次一样有用shell..我也想如何不调用shell 来弄一个LAMP自动安装部署啥啥的..不过尼玛智商有限,没搞定,暂且分享一下 先说说目前的缺陷 这个脚本总体来说是调用一个字典,组成这个字典是最花费时间的,实际代码到是没几行,本来想把Nginx 的部署也加进去,什么memcached phpmyadmin apc 这样的常用组件作为功能加进去,尼玛,时间不够,只能打打酱油,包括最后我也只能用一

phpStudy:lnmp+lamp一键安装包

基于Linux 云主机,在centos-6.5,debian-7.4.,ubuntu-13.10测试成功. 部署 下载版:http://lamp.phpstudy.net/phpstudy.bin完全版:http://lamp.phpstudy.net/phpstudy-all.bin wget -c http://lamp.phpstudy.net/phpstudy.bin #伏笔VPS挑选下载版仍是完全版 chmod +x phpstudy.bin ./phpstudy.bin 使用说明 服

LAMP平台部署及应用

LAMP平台部署及应用

HHvm建站环境搭建方法:Nginx,Mariadb,hhvm及lnmp/lamp安装部署 | 免费资源部落

HHvm建站环境搭建方法:Nginx,Mariadb,hhvm及lnmp/lamp安装部署 | 免费资源部落 nginx对redis取数据的不同方式 - 守望

phpStudy for Linux (lnmp+lamp一键安装包)

phpStudy for Linux (lnmp+lamp一键安装包) phpStudy for Linux 支持Apache/Nginx/Tengine/Lighttpd, 支持php5.2/5.3/5.4/5.5切换 已经在centos-6.5,debian-7.4.,ubuntu-13.10测试成功 使用说明: 服务进程管理:phpstudy (start|stop|restart|uninstall)站点主机管理:phpstudy (add|del|list)ftpd用户管理:phpst

CentOS 6 php5.6.0一键部署脚本

目标:一键部署php5.6.0版本 环境:CentOS 6 64位 桌面版本 软件包:链接:http://pan.baidu.com/s/1jIyZrRS 密码:q9uu [[email protected] home]# cat php.sh #/bin/bash # #CentOS 6 # . /etc/init.d/functions dir=/root/test del_dir() { read -p "需要删除${dir} 是否删除[Y|y/N|n]:" del case $

CentOS下LAMP一键yum安装脚本

本脚本适用环境: 系统支持:CentOS/Redhat/Fedora 内存要求:≥64M 硬盘要求:2GB以上的剩余空间 服务器必须配置好软件源和可连接外网 必须具有系统 root 权限 建议使用干净系统全新安装 日期:2014年06月25日 关于本脚本: 一键 yum 安装所有的软件包,方便升级: 支持 PHP 自带所有组件: 支持 MySQL ,MariaDB 数据库; 支持 XCache : 支持 Zend Guard Loader : 支持 ionCube PHP Loader : 支持