阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

CentOS下yum安装LAMP

157次阅读
没有评论

共计 1545 个字符,预计需要花费 4 分钟才能阅读完成。

CentOS 下 yum 安装 LAMP

#!/bin/bash
#
#Time:2013/07/23-13:37:03
#
#OS:Centos_6.4
#This is through the method of yum to install the LAMP!
#yum update -y  #If this is the first time to update, that will take you for a long time.So Please choose carefully!!!
echo -e “\033[31m Now,we start install LAMP! \033[0m”
echo -e “\033[32m `date` \033[0m”
yum install -y gcc gcc-c++ libtool lib ntp libtool libtool-ltdl libtool libtool-ltdl make httpd httpd-devel MySQL mysql-server mysql-devel php php-devel php-mysql
echo -e “\033[35m Yum install LAMP is Ok! \033[0m”
sed -i ‘s/DirectoryIndex index.html/DirectoryIndex index.html index.htm index.php/’ /etc/httpd/conf/httpd.conf
cd /var/www/html
cat >index.php<<EOF
<?php
phpinfo();
?>
EOF
netstat -tnlp  | grep 80
if [$? = 0];then
  kill `netstat -tnlp | grep 80 | awk ‘{print $7}’ | cut -d”/” -f1`
  service httpd restart
else
  service httpd start
fi
netstat -tnlp | grep 3306
if [$? = 0];then
  kill `netstat -tnlp | grep 80 | awk ‘{print $7}’ | cut -d”/” -f1`
  service mysqld restart
else
  service mysqld start
fi
echo -e “\033[32m Over! \033[0m”

以上脚本在本人的 Centos6.4_x86_64 测试成功!在浏览器上输入 http://ip 可以正常的访问 php 页面!

本人能力有限,若有不足的地方请多多指教!!!

下面关于 LAMP 相关 的内容你可能也喜欢

LAMP 平台安装 Xcache 和 Memcached 加速网站运行  http://www.linuxidc.com/Linux/2015-06/118835.htm 

CentOS 7 下搭建 LAMP 平台环境  http://www.linuxidc.com/Linux/2015-06/118818.htm

CentOS 6.5 系统安装配置 LAMP(Apache+PHP5+MySQL)服务器环境 http://www.linuxidc.com/Linux/2014-12/111030.htm

Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境  http://www.linuxidc.com/Linux/2014-10/107924.htm

Ubuntu 14.10 下安装 LAMP 服务图文详解  http://www.linuxidc.com/Linux/2014-12/110082.htm

LAMP 结合 NFS 构建小型博客站点  http://www.linuxidc.com/Linux/2015-08/121029.htm

本文永久更新链接地址:http://www.linuxidc.com/Linux/2015-12/126058.htm

正文完
星哥说事-微信公众号
post-qrcode
 
星锅
版权声明:本站原创文章,由 星锅 2022-01-21发表,共计1545字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中