在Vagrant 下配置环境安装Magento

        最近,我在学习使用Vagrant 来配置Magento所需要的环境,在网上找了很多还不错的配置方法,在这里就推荐一下,自认为简单快速有效的配置方法。

This is a VERY simple Magento environment provisioner for Vagrant

Getting Started 

准备工作:

Magento所需的环境:Ubuntu (Trusty 14.04 64 Bit)\ PHP5.5, Mysql5.5, Apache2.2

Magento 版本: Magento CE 1.9.1.1

安装工具:n98-magerun Installer

安装 Vagrant 

安装 VisualBox

下载 (or Clone)This repository to the root of your project dir 

git clone https://github.com/timothypro/simple-magento-vagrant.git

Just unzip and rename it as you wish. In this case I will call it "simple-magento-vagrant".

$ cd ./simple-magento-vagrant $ vim Vagrantfile

// On line 5.                                                                                                                                           change sample_data = "true" to sample_data = "false" or leave it incase you need sample data

// Save changed

$ vagrant up

在你的下载好的文件夹下面  运行 vagrant up 

第一次使用vagrant, vagrant会下载 Ubuntu box的镜像。可能会花一些时间,不过只会执行一次。

与此同时,Vagrant会配置最基本的环境, 然后使用 n98-magerun 安装Magento。

当vagrant提示完成系统配置后:

在你的浏览器中 , http://127.0.0.1:8080 进入前端. http://127.0.0.1:8080/admin 进入Magento 的 CMS。

User: admin Password: password123

如果要进入 Visual Machine 就是: vagrant ssh

关机:vagrant halt

Full Vagrant command documentation

你可能感兴趣的:(在Vagrant 下配置环境安装Magento)