Heim  >  Artikel  >  Backend-Entwicklung  >  CentOS 5.5使用yum安装LAMP(php环境)步骤分享

CentOS 5.5使用yum安装LAMP(php环境)步骤分享

WBOY
WBOYOriginal
2016-07-25 08:52:06967Durchsuche
  1. cd /etc/yum.repos.d/
  2. cp CentOS-Base.repo CentOS-Base.repo.bak
复制代码

1.2替换源 用vi打开CentOS-Base.repo,并将内容清空,然后将下面的内容复制进去,并保存。

  1. yum -y update
复制代码

2. 用yum安装Apache,Mysql,PHP.

2.1安装Apache

  1. yum install httpd httpd-devel
复制代码

安装完成后,用/etc/init.d/httpd start 启动apache 设为开机启动:

  1. chkconfig httpd on
复制代码

2.2 安装mysql 2.2.1

  1. yum install mysql mysql-server mysql-devel
复制代码

同样,完成后,用/etc/init.d/mysqld start 启动mysql

2.2.2 设置mysql密码

  1. mysql>; USE mysql;
  2. mysql>; UPDATE user SET Password=PASSWORD('newpassword') WHERE user='root';
  3. mysql>; FLUSH PRIVILEGES;
复制代码

2.2.3 允许远程登录

  1. mysql -u root -p
  2. Enter Password:
  3. mysql>GRANT ALL PRIVILEGES ON *.* TO '用户名'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;
复制代码

完成后就能用mysql-front远程管理mysql了。

2.2.4 设为开机启动

  1. chkconfig mysqld on
复制代码

3. 安装php

  1. yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml
  2. /etc/init.d/httpd start
复制代码

4. 测试安装结果 4.1在/var/www/html/新建个test.php文件,将以下内容写入,然后保存。

  1. phpinfo();
  2. ?>
复制代码

4.2 iptables防火墙配置 a.添加.允许访问端口{21: ftp, 80: http}.

  1. iptables -I RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 21 -j ACCEPT
  2. iptables -I RH-Firewall-1-INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT
复制代码

b.关闭防火墙{不推荐}.

  1. service iptables stop
复制代码

c.重置加载防火墙 service iptables restart

4.3 在客户端浏览器中打开http://serverip/test.php,若能成功显示,则表示安装成功。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn