第一步 1 安装linux 系统 2 配置linux 网络 Vi /etc/sysconfig/network-scripts/ifcfg-eth0 IPADDR= NETMASK=255.255.255.0 GATEWAY= DNS1= Service network restart 第二步 安装MySQL数据库 Yum -y install mysql-server 第三步 安装httpd(apache) Yum -y install httpd 第四步 安装php 及其扩展程序 Yum -y install php ……; 第五步 发布web应用程序 Service httpd start (启动httpd) Service mysqld start (启动mysql) Service iptables stop (关闭防火墙) 软件包 放到 /var/www/html 1 修改文件权限 chmod -R 777 /var/www/html/* 2 导入初始化数据 3 修改相关配置文件 conf my.ini 主机: 端口: 用户: 密码: 数据库: 浏览器访问 : web服务器 http://IP/ecshop