centos yum安装 LAMP


 

 

 

 

 

 

一:先添加下yum源:

 

 

 

 

 

  
  
  
  
  1. #sh centostweak.sh       
  2.            #部分centostweak内容 源自leo 
  3.  
  4. # 设置升级源 
  5. cd /etc/yum.repos.d/ 
  6. cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.`date +"%Y-%m-%d_%H-%M-%S"
  7. sed -i -e 's/mirrorlist/#mirrorlist/' CentOS-Base.repo 
  8. sed -i -e 's/#baseurl/baseurl/' CentOS-Base.repo 
  9. sed -i -e 's/mirror.centos.org/mirrors.sohu.com/' CentOS-Base.repo 
  10.  
  11. cp /etc/yum.conf /etc/yum.conf.`date +"%Y-%m-%d_%H-%M-%S"
  12. sed -i 's/gpgcheck=1/gpgcheck=0/' /etc/yum.conf 
  13. sed -i 's/plugins=1/plugins=0/' /etc/yum.conf 
  14. sed -i 's/metadata_expire=1h/metadata_expire=24h/' /etc/yum.conf 
  15.  
  16. # 添加dag@sohu源 
  17. # relver=`uname -r | awk -F. '{print $NF}'` 
  18. echo -e "# Name: SOHU RPM Repository for Red Hat Enterprise – dag\n"
  19. "# URL: http://mirrors.sohu.com/dag/redhat/\n"
  20. "[dag-sohu]\n"
  21. "name = Red Hat Enterprise \$releasever – sohu.com – dag\n"
  22. "baseurl = http://mirrors.sohu.com/dag/redhat/`uname -r | awk -F. '{print substr($NF,1,3)}'`/en/\$basearch/dag\n"
  23. "enabled = 1\n"
  24. "gpgcheck = 0"  > /etc/yum.repos.d/dag-sohu.repo 
  25. # 添加epel@sohu源 
  26. echo -e "# Name: SOHU RPM Repository for Red Hat Enterprise – EPEL\n"
  27. "# URL: http://mirrors.sohu.com/fedora-epel/\n"
  28. "[epel-sohu]\n"
  29. "name = Fedora EPEL \$releasever - sohu.com\n"
  30. "baseurl = http://mirrors.sohu.com/fedora-epel/\$releasever/\$basearch\n"
  31. "enabled = 1\n"
  32. "gpgcheck = 0"  > /etc/yum.repos.d/epel-sohu.repo 
  33. # 添加CentALT源 
  34. # 使用方法:--enablerepo=centalt 
  35. if [[ `uname -r | awk -F. '{print substr($NF,1,3)}'` == "el5" ]]; then 
  36. echo -e "[CentALT]\n"
  37. "name=CentALT Packages for Enterprise Linux 5 - \$basearch\n"
  38. "baseurl=http://centos.alt.ru/repository/centos/5/\$basearch/\n"
  39. "enabled=0\n"
  40. "gpgcheck=0" > /etc/yum.repos.d/centalt.repo 
  41. fi 
  42. # 添加ius源 
  43. # 使用方法:--enablerepo=ius,如yum install python26 --enablerepo=ius 
  44. echo -e "# Name: IUS RPM Repository for Red Hat Enterprise 5\n"
  45. "# URL: http://dl.iuscommunity.org/pub/ius/stable/Redhat/\n"
  46. "[ius]\n"
  47. "name = Red Hat Enterprise \$releasever – ius\n"
  48. "baseurl = http://dl.iuscommunity.org/pub/ius/stable/Redhat/\$releasever/\$basearch/\n"
  49. "enabled = 0\n"
  50.  

  
  
  
  
  1. "gpgcheck = 0"  > /etc/yum.repos.d/ius.repo 

  
  
  
  
  1.  

 

 

 

 

 

二、安装
1:安装apache
 

 

  
  
  
  
  1.  

  
  
  
  
  1. yum install httpd httpd-devel 

  
  
  
  
  1.  

 

 



2:安装mysql
 

 

  
  
  
  
  1.  

  
  
  
  
  1. yum install mysql mysql-server mysql-devel 

  
  
  
  
  1.  

 

 



3:安装php
 

 

  
  
  
  
  1.  

  
  
  
  
  1. yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml 

  
  
  
  
  1.  

 

 



4:启动apache

   测试php

   建立以下文件/var/www/html/test.php
   编辑其内容
 

 

  
  
  
  
  1. // test.php 
  2. <?php 
  3. phpinfo(); 
  4.  

  
  
  
  
  1. ?> 
   
   
   
   
  1.  

 



5:测试
   在浏览器中输入:http://IP/test.php
   看是否显示PHP的信息

6:设置开机启动

 

 


 

  
  
  
  
  1.  

  
  
  
  
  1. chkconfig httpd on 

  
  
  
  
  1.  

 

 

你可能感兴趣的:(centos,职场,lamp,yum,休闲,centostweak)