Home Backend Development PHP Tutorial PHP源码编译安装管理常用脚本

PHP源码编译安装管理常用脚本

Jun 23, 2016 pm 01:35 PM

#!/bin/sh# 编译安装管理PHPApp=phpAppName=PHPAppBase=/AppAppDir=$AppBase/$AppAppProg=$AppDir/sbin/php-fpmAppIni=$AppDir/etc/php.iniAppConf=$AppDir/etc/php-fpm.confExtensionDir=$($AppDir/bin/php-config --extension-dir)AppSrcBase=/App/srcAppSrcFile=$App-*.tar.*AppSrcDir=$(find $AppSrcBase -maxdepth 1 -name "$AppSrcFile" -type f 2> /dev/null | sed -e 's/.tar.*$//' -e 's/^.\///')AppUser=$(grep "^[[:space:]]*user" $AppConf 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g")AppGroup=$(grep "^[[:space:]]*group" $AppConf 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g")AppPidDir=$(dirname $(grep "^[[:space:]]*pid" $AppConf 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g") 2> /dev/null)AppErrorLogDir=$(dirname $(grep "^[[:space:]]*error_log" $AppConf 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g") 2> /dev/null)AppSlowLogDir=$(dirname $(grep "^[[:space:]]*slowlog" $AppConf 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g") 2> /dev/null)UploadTmpDir=$(grep "^[[:space:]]*upload_tmp_dir" $AppIni 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g")grep "^session.save_handler" $AppIni 2> /dev/null | grep -q "files"[ $? -eq 0 ] && SessionDir=$(grep "^[[:space:]]*session.save_path" $AppIni 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g")CacheDir=$(grep "^[[:space:]]*eaccelerator.cache_dir" $AppIni 2> /dev/null | awk -F= '{print $2}' | sed -e 's/[[:space:]]//g' -e 's/"//g' -e "s/'//g")AppUser=${AppUser:-nobody}AppGroup=${AppGroup:-nobody}AppPidDir=${AppPidDir:=$AppDir/var/run}AppErrorLogDir=${AppErrorLogDir:-$AppDir/var/log}AppSlowLogDir=${AppSlowLogDir:-$AppDir/var/log}RemoveFlag=0InstallFlag=0# 获取PIDfpid(){    AppMasterPid=$(ps ax | grep "php-fpm: master process" | grep -v "grep" | awk '{print $1}' 2> /dev/null)    AppWorkerPid=$(ps ax | grep "php-fpm: pool" | grep -v "grep" | awk '{print $1}' 2> /dev/null)}# 查询状态fstatus(){    fpid    if [ ! -f "$AppProg" ]; then            echo "$AppName 未安装"    else        echo "$AppName 已安装"        if [ -z "$AppMasterPid" ]; then            echo "$AppName 未启动"        else            echo "$AppName 正在运行"        fi    fi}# 删除fremove(){    fpid    RemoveFlag=1    if [ -z "$AppMasterPid" ]; then        if [ -d "$AppDir" ]; then            rm -rf $AppDir && echo "删除 $AppName"        else            echo "$AppName 未安装"        fi    else        echo "$AppName 正在运行" && exit    fi}# 备份fbackup(){    Day=$(date +%Y-%m-%d)    BackupFile=$App.$Day.tgz    if [ -f "$AppProg" ]; then        cd $AppBase        tar zcvf $BackupFile --exclude=var/log/* --exclude=var/run/* $App --backup=numbered        [ $? -eq 0 ] && echo "$AppName 备份成功" || echo "$AppName 备份失败"    else        echo "$AppName 未安装"    fi}# 安装finstall(){    fpid    InstallFlag=1    if [ -z "$AppMasterPid" ]; then        test -f "$AppProg" && echo "$AppName 已安装"        [ $? -ne 0 ] && fupdate && fcpconf    else        echo "$AppName 正在运行"    fi}# 拷贝配置fcpconf(){    cp -vf --backup=numbered $ScriptDir/php.ini $AppIni    cp -vf --backup=numbered $ScriptDir/php-fpm.conf $AppConf}# 更新fupdate(){    Operate="更新"    [ $InstallFlag -eq 1 ] && Operate="安装"    [ $RemoveFlag -ne 1 ] && fbackup    cd $AppSrcBase    test -d "$AppSrcDir" && rm -rf $AppSrcDir    tar Jxf $AppSrcFile || tar jxf $AppSrcFile || tar zxf $AppSrcFile    cd $AppSrcDir    ./configure \    "--prefix=$AppDir" \    "--disable-all" \    "--enable-fpm" \    "--enable-opcache" \    "--enable-pdo" \    "--enable-session" \    "--with-pcre-dir" \    "--with-pdo-mysql=mysqlnd"    [ $? -eq 0 ] && make && make install    if [ $? -eq 0 ];then        echo "$AppName $Operate成功"    else        echo "$AppName $Operate失败"        exit 1    fi}# 初始化finit(){    echo "初始化 $AppName"    id -gn $AppGroup &> /dev/null    if [ $? -ne 0 ]; then        groupadd $AppGroup && echo "新建 $AppName 运行组:$AppGroup"    else        echo "$AppName 运行组:$AppGroup 已存在"    fi    id -un $AppUser &> /dev/null    if [ $? -ne 0 ]; then        useradd -s /bin/false -g $AppGroup -M $AppUser        if [ $? -eq 0 ]; then            echo "新建 $AppName 运行用户:$AppUser"            echo "S0nGPhb693$" | passwd --stdin $AppUser &> /dev/null        fi    else        echo "$AppName 运行用户:$AppUser 已存在"    fi    echo $AppPidDir | grep -q "^/"    if [ $? -eq 1 ]; then        AppPidDir=$AppDir/var/$AppPidDir    fi    if [ ! -e "$AppPidDir" ]; then        mkdir -p $AppPidDir && echo "新建 $AppName PID文件存放目录:$AppPidDir"    else        echo "$AppName PID文件存放目录:$AppPidDir 已存在"    fi    echo $AppErrorLogDir | grep -q "^/"    if [ $? -eq 1 ]; then        AppErrorLogDir=$AppDir/var/$AppErrorLogDir    fi    if [ ! -e "$AppErrorLogDir" ]; then        mkdir -p $AppErrorLogDir && echo "新建 $AppName 错误日志目录:$AppErrorLogDir"    else        echo "$AppErrorLogDir 错误日志目录:$AppErrorLogDir 已存在"    fi    echo $AppSlowLogDir | grep -q "^/"    if [ $? -eq 1 ]; then        AppSlowLogDir=$AppDir/$AppSlowLogDir    fi    if [ ! -e "$AppSlowLogDir" ]; then        mkdir -p $AppSlowLogDir && echo "新建 $AppName 慢日志目录:$AppSlowLogDir"    else        echo "$AppSlowLogDir 慢日志目录:$AppSlowLogDir 已存在"    fi    printf "\n"    if [ -n "$UploadTmpDir" ]; then        echo $UploadTmpDir | grep -q "^/"        if [ $? -eq 0 ]; then            if [ ! -e "$UploadTmpDir" ]; then                mkdir -p $UploadTmpDir && echo "新建 $AppName 文件上传临时存储目录:$UploadTmpDir"            else                echo "$AppName 文件上传临时存储目录:$UploadTmpDir 已存在"            fi            chown -R $AppUser:$AppGroup $UploadTmpDir && echo "修改 $AppName 文件上传临时存储目录拥有者为 $AppUser,属组为 $AppGroup"            printf "\n"        fi    fi    if [ -n "$SessionDir" ]; then        echo $SessionDir | grep -q "^/"        if [ $? -eq 0 ]; then            if [ ! -e "$SessionDir" ]; then                mkdir -p $SessionDir && echo "新建 $AppName 会话存储目录:$SessionDir"            else                echo "$AppName 会话存储目录:$SessionDir 已存在"            fi            chown -R $AppUser:$AppGroup $SessionDir && echo "修改 $AppName 会话存储目录拥有者为 $AppUser,属组为 $AppGroup"            printf "\n"        fi    fi    if [ -n "$CacheDir" ]; then        echo $CacheDir | grep -q "^/"        if [ $? -eq 0 ]; then            if [ ! -e "$CacheDir" ]; then                mkdir -p $CacheDir && echo "新建 eAccelerator 缓存目录:$CacheDir"            else                echo "eAccelerator 缓存目录:$CacheDir 已存在"            fi            chown -R $AppUser:$AppGroup $CacheDir && echo "修改 eAccelerator 缓存目录拥有者为 $AppUser,属组为 $AppGroup"        fi    fi    sed -i "s|extension_dir.*$|extension_dir = \"$ExtensionDir\"|" $AppIni}# 检查配置ftest(){    $AppProg -t && echo "$AppName 配置正确" || echo "$AppName 配置错误"}# 启动fstart(){    fpid    if [ -n "$AppMasterPid" ]; then        echo "$AppName 正在运行"    else        $AppProg -c $AppIni && echo "启动 $AppName" || echo "$AppName 启动失败"    fi}# 停止fstop(){    fpid    if [ -n "$AppMasterPid" ]; then        kill -INT $AppMasterPid && echo "停止 $AppName" || echo "$AppName 停止失败"    else        echo "$AppName 未启动"    fi}# 重载配置freload(){    fpid    if [ -n "$AppMasterPid" ]; then        kill -USR2 $AppMasterPid && echo "重载 $AppName 配置" || echo "$AppName 重载配置失败"    else        echo "$AppName 未启动"    fi}# 重启frestart(){    fpid    [ -n "$AppMasterPid" ] && fstop && sleep 1    fstart}# 终止进程fkill(){    fpid    if [ -n "$AppMasterPid" ]; then        echo "$AppMasterPid" | xargs kill -9        if [ $? -eq 0 ]; then            echo "终止 $AppName 主进程"        else            echo "终止 $AppName 主进程失败"        fi    else        echo "$AppName 主进程未运行"    fi    if [ -n "$AppWorkerPid" ]; then        echo "$AppWorkerPid" | xargs kill -9        if [ $? -eq 0 ]; then            echo "终止 $AppName 工作进程"        else            echo "终止 $AppName 工作进程失败"        fi    else        echo "$AppName 工作进程未运行"    fi}ScriptDir=$(cd $(dirname $0); pwd)ScriptFile=$(basename $0)case "$1" in    "install"   ) finstall;;    "update"    ) fupdate;;    "reinstall" ) fremove && finstall;;    "remove"    ) fremove;;    "backup"    ) fbackup;;    "init"      ) finit;;    "start"     ) fstart;;    "stop"      ) fstop;;    "restart"   ) frestart;;    "status"    ) fstatus;;    "cpconf"    ) fcpconf;;    "test"      ) ftest;;    "reload"    ) freload;;    "kill"      ) fkill;;    *           )    echo "$ScriptFile install              安装 $AppName"    echo "$ScriptFile update               更新 $AppName"    echo "$ScriptFile reinstall            重装 $AppName"    echo "$ScriptFile remove               删除 $AppName"    echo "$ScriptFile backup               备份 $AppName"    echo "$ScriptFile init                 初始化 $AppName"    echo "$ScriptFile start                启动 $AppName"    echo "$ScriptFile stop                 停止 $AppName"    echo "$ScriptFile restart              重启 $AppName"    echo "$ScriptFile status               查询 $AppName 状态"    echo "$ScriptFile cpconf               拷贝 $AppName 配置"    echo "$ScriptFile test                 检查 $AppName 配置"    echo "$ScriptFile reload               重载 $AppName 配置"    echo "$ScriptFile kill                 终止 $AppName 进程"    ;;esac
Copy after login


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles