Linux下安装LAMP环境,并且在主机上进行操作
1.安装LAMP环境:
切换到root [su -]
123456
yum -y install httpd mysql mysql-server php php- mysql postgresql postgresql-server php-postgresql php-pgsql php-devel
1.1启动apache服务并查看时候启动成功
命令如下:(切记用root用户启动服务)
启动:/etc/rc.d/init.d/httpd start
检测启动结果:ps aux | grep httpd
1.2获取ip:ifconfig
192.168.0.22
有可能遇到一个问题:主机上无法访问虚拟机的localhost
解决办法如下:
测试:cmd->telnet 192.168.0.22 80
如果出现失去连接,基本可以判定:防火墙的问题(记得,虚拟机得联网,在虚拟机的右上角电脑图标第二个貌似)
解决方法如下: /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 然后保存: /etc/rc.d/init.d/iptables save 重启防火墙 /etc/init.d/iptables restart
CentOS防火墙的关闭,关闭其服务即可:
查看CentOS防火墙信息:
/etc/init.d/iptables status
关闭CentOS防火墙服务:
/etc/init.d/iptables stop
永久关闭防火墙:
chkconfig –level 35 iptables off
实在看不懂的话推荐一个别人的博客:http://blog.csdn.net/abnereel/article/details/41804183