centos快速搭建lnmp、lamp+zabbix3.2监控系统所安装版本mysql5.6php5.5zabbix3.2centos7lnmp+zabbix3.2脚本#!/bin/bash
if[$(rpm-qimysql-community-release-el7-5.noarch|wc-l)-lt2];then
rpm-Uvhhttp://repo.mysql.com//mysql-community-release-el7-5.noarch.rpm
if[$?-ne0]..
分类:
其他好文 时间:
2016-11-30 17:59:48
阅读次数:
311
#!/bin/bash
#subject:一键安装lamp(apache+mysql+php)
#Date:2016-06-08
#定义软件下载目录:
SoftDir=‘/usr/local/src‘
#定义编译函数:
functionMAKE(){
if[`echo$?`-eq0];then
make
else
exit
fi
}
#定义安装函数:
functionMAKE_INS(){
if[`echo$?`-eq0];then
makeinstall..
分类:
其他好文 时间:
2016-06-15 00:06:30
阅读次数:
259
#!/bin/bash/#AutosetupLAMP,downloadsoftwarebyinternet.#bylrj#2016-3-23#定义各自变量及目录PUBLIC_DIR=/data/software/lamp/#下载的源码包放这里#ApachedefinepathvariableH_FILES=httpd-2.2.31.tar.bz2H_FILES_DIR=httpd-2.2.31H_URL=http://mirrors.cnnic.cn/apache/http..
分类:
其他好文 时间:
2016-03-28 10:26:00
阅读次数:
272
#!/bin/bash##cp-r/usr/local/src/mysql-5.0.41-linux-i686-glibc23/usr/local/mysqlcp-r/usr/local/src/mysql_x86_64/usr/local/mysqlsleep5cd/usr/local/srctarxvzffreetype-2.1.9.tar.gzcd/usr/local/src/freetype-2.1.9./configuremake&&makeinstallsleep5cd/usr/l..
分类:
其他好文 时间:
2015-11-06 23:43:06
阅读次数:
412
安装环境及软件:系统:CentOS_6.5内核版本:2.6.32-431.el6.x86_64httpd-2.4.16.tar.gzmysql-5.1.63.tar.gzphp-5.4.22.tar.gz安装说明:此脚本为网络安装版,请在有网的情况下使用该脚本
分类:
其他好文 时间:
2015-08-05 22:37:45
阅读次数:
195
#!/bin/bash
read-p"thescriptwillbeinstalllamp,ifyouwanttocontinue,pressyes:"press
if[$press==yes];then
echo"lamp(mysql-5.6.24,httpd-2.4.12,php-5.6.10)willbeinstallinaminute..."
sleep10
check_ok(){
if[!$?==0]
then
echo"error,checktheerrorlog."
exit1
fi
}
..
分类:
其他好文 时间:
2015-06-30 13:12:38
阅读次数:
145
Install LAMP(Linux + Apache + MySQL + PHP ) for CentOS/Redhat/Fedora项目地址:https://github.com/teddysun/lamp最新版本:2015年01月29日适用环境:系统支持:CentOS/Redhat/Fedor...
分类:
其他好文 时间:
2015-02-04 14:18:04
阅读次数:
268
本脚本适用环境: 系统支持:CentOS/Redhat/Fedora 内存要求:≥256M 硬盘要求:2GB以上的剩余空间 服务器必须配置好软件源和可连接外网 必须具有系统 root 权限 建议使用干净系统全新安装 日期:2014年11月14日 关于本脚本: 支持 PHP 自带所有组件; 支持 My...
分类:
其他好文 时间:
2014-11-23 01:55:45
阅读次数:
307