window7下使用vagrant打造lamp开发环境

Posted 一望无际的代码

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window7下使用vagrant打造lamp开发环境相关的知识,希望对你有一定的参考价值。

上一节我们基本把软件跟系统环境,以及连接虚拟机给配置好了,下面我们将要进行开发环境的搭建(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的base box:如何制作一个vagrant的base box
Warning: Authentication failure. Retrying... :http://blog.csdn.net/ling1874/article/details/46818847
 
 

以上是关于window7下使用vagrant打造lamp开发环境的主要内容,如果未能解决你的问题,请参考以下文章

使用 Vagrant 和 Puppet/PuPHPet 管理多个 LAMP 环境

使用 Vagrant 打造跨平台开发环境

使用vagrant搭载lamp环境遇到的一系列问题

Windows上使用Vagrant打造Laravel Homestead可协同跨平台开发环境

使用VirtualBox + Vagrant打造统一的开发环境

Windows上使用Vagrant打造Laravel Homestead可协同跨平台开发环境