上一节我们基本把软件跟系统环境,以及连接虚拟机给配置好了,下面我们将要进行开发环境的搭建(lamp)
这里安装其实很简单,因为我们用的centos,所以很大一部分安装都是通过yum安装
关于yum的详解(http://www.cnblogs.com/mchina/archive/2013/01/04/2842275.html)
1、
安装apache
yum install httpd httpd-devel
开启apache
systemctl start httpd.service
查看apache
systemctl status httpd.service
重启apache
systemctl restart httpd.service
停止apache
systemctl stop httpd.service
2、
mariadb是mysql的分支,so centos7以上就把mysql替换成mariadb
安装mariadb
yum install mysql mysql-server
开启mariadb
systemctl start mariadb.service
查看mariadb
systemctl status mariadb.service
重启mariadb
systemctl restart mariadb.service
停止mariadb
systemctl stop mariadb.service
3、
安装php(version:5.4,其他版本请百度)
yum install php php-devel
删除php
yum remove php* php-common
然后在/var/www/html创建一个test.php
<?php echo phpinfo();?>
看到这里我们的环境就搭建完成了!!!! 打包环境: vagarant halt vagrant package --output lamp5.4 参考资料: vagrant官网:https://www.vagrantup.com/docs/ 如何制作一个vagrant的base box:如何制作一个vagrant的base box centos安装php:http://www.cnblogs.com/liulun/p/3535346.html create vagrant base box:http://blog.csdn.net/ling1874/article/details/46819405 Warning: Authentication failure. Retrying... :http://blog.csdn.net/ling1874/article/details/46818847 yum安装php7:http://www.ithao123.cn/content-9962651.html