lamp

#!/bin/bash

#edtior tangbo

#QQ 79313760

libs="gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-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 pcre pcre-devel gcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake  gcc-devel gcc-c++-devel autoconf* automake*ncurses  libtool* cmake  bison bison-devel unzip"


yum -y install $libs


#mkdir dirctory

soft_dir="/var/soft"

if [ ! -d $soft_dir ]

then

mkdir $soft_dir

fi

 

#代碼上傳,並解壓

echo "請上傳軟件源碼至 $soft_dir,完成後輸入ok:"

read stat

if [ $stat == "ok" ]

then

        echo "輸入需要安裝的軟件包,以空格分隔:"

        read list_tmp

        cd $soft_dir

        echo $list_tmp

        for sft_temp in `echo $list_tmp`

        do

                sft=`ls | grep $sft_temp`

                /bin/tar -zxvf $sft 1>/dev/null 2>&1

                /bin/tar -jxvf $sft 1>/dev/null 2>&1

                echo "$sft 解壓完成"

        done

else

        echo "請輸入ok"

fi


#編譯安裝

home_dir=/usr/local


add_usr() {

groupadd $1

useradd -M -s  /sbin/nologin -g $1 $2

}


get_dir() {

b_name=$1

cd $soft_dir

b_dir=`ls | grep $b_name | grep -v tar`

}


#3、安裝apache

cd $soft_dir

for mk_temp in `echo $list_tmp`

do

case $mk_temp in

#1、安裝apr

apr-1.5.1)

# add_usr www www

get_dir $mk_temp

cd $b_dir

./configure --prefix=/usr/local/apr &>/dev/null && make && make install && echo "$mk_temp安裝完成" 

;;

#2、安裝apr-util

apr-util-1.5.4)

# add_usr www www

get_dir $mk_temp

cd $b_dir

./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr &>/dev/null && make && make install && echo "$mk_temp安裝完成" 

;;

httpd-2.4.16)

add_usr www www

get_dir $mk_temp

cd $b_dir

./configure  --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-modules=most --enable-mods-shared=most --enable-mpms-shared=all --with-mpm=event &>/dev/null && make && make install && echo "$mk_temp安裝完成" 

                chkconfig --add httpd

                chkconfig httpd  on

          ;;

mysql-5.6.20)

add_usr mysql mysql

get_dir $mk_temp

cd $b_dir && echo "$b_dir"

                cmake \

               -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \

               -DMYSQL_DATADIR=/usr/local/data \

               -DSYSCONFDIR=/etc \

               -DWITH_MYISAM_STORAGE_ENGINE=1 \

               -DWITH_INNOBASE_STORAGE_ENGINE=1 \

               -DWITH_MEMORY_STORAGE_ENGINE=1 \

               -DWITH_READLINE=1 \

               -DMYSQL_UNIX_ADDR=/var/lib/mysql/mysql.sock \

               -DMYSQL_TCP_PORT=3306 \

               -DENABLED_LOCAL_INFILE=1 \

               -DWITH_PARTITION_STORAGE_ENGINE=1 \

               -DEXTRA_CHARSETS=all \

               -DDEFAULT_CHARSET=utf8 \

               -DDEFAULT_COLLATION=utf8_general_ci \

               -DMYSQL_USER=mysql && make && make install && echo "$mk_temp安完成" 


;;


libmcrypt-2.5.7)

#               add_usr www www

                get_dir $mk_temp

                cd $b_dir

                ./configure &>/dev/null && make && make install && echo "$mk_temp安裝完成"

;;


php-5.6.0)

#               add_usr www www

                get_dir $mk_temp

                cd $b_dir

                ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql  --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config  --enable-mbstring  --with-freetype-dir  --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs  --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2 --enable-maintainer-zts --with-mcrypt   &>/dev/null && make && make install && echo "$mk_temp安裝完成"

;;

*)

echo "Usage:{apr-1.5.1 apr-util-1.5.4 httpd-2.4.16 mysql-5.6.20}"

exit 1

;;

esac

done


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章