歡迎光臨
每天分享高質量文章

如何安裝並設定 Vagrant | Linux 中國

什麼是 Vagrant?簡而言之,這是一個與虛擬機器一起工作的工具,可以讓你自動建立和刪除虛擬機器。
— Christopher Shaw


本文導航
編譯自 | https://www.chris-shaw.com/blog/how-to-install-and-setup-vagrant 
 作者 | Christopher Shaw
 譯者 | MjSeven

Vagrant 對於虛擬機器來說是一個強大的工具,在這裡我們將研究如何在 Ubuntu 上設定和使用 Virtualbox 和 Vagrant 來提供可複製的虛擬機器。

虛擬機器,並不複雜

多年來,開發人員一直使用虛擬機器作為其工作流程的一部分,允許他們交換和更改執行軟體的環境,這通常是為了防止專案之間的衝突,例如需要 php 5.3 的專案 A 和需要 php 5.4 的專案 B。

並且使用虛擬機器意味著你只需要你正在使用的計算機就行,而不需要專用硬體來映象你的生產環境。

當多個開發人員在一個專案上工作時,它也很方便,他們都可以執行一個包含所有需求的環境,但是維護多臺機器並確保所有的需求都具有相同的版本是非常困難的,這時 Vagrant 就能派上用場了。

使用虛擬機器的好處

◈ 你的虛擬機器與主機環境是分開的
◈ 你可以根據你程式碼的要求裁剪一個定製虛擬機器
◈ 不會影響其他虛擬機器
◈ 可以執行在你的主機上無法執行的程式,例如在 Ubuntu 中執行一些只能在 Windows 執行的軟體

什麼是 Vagrant

簡而言之,這是一個與虛擬機器一起工作的工具,可以讓你自動建立和刪除虛擬機器。

它圍繞一個名為 VagrantFile 的配置檔案而工作,這個配置檔案告訴 Vagrant 你想要安裝的作業系統,以及一些其他選項,如 IP 和目錄同步。 你還可以在虛擬機器上新增一個命令的配置指令碼。

透過共享這個 VagrantFile,專案的所有開發人員全可以使用完全相同的虛擬機器。

安裝要求

安裝 VirtualBox

VirtualBox 是執行虛擬機器的程式,它可以從 Ubuntu 倉庫中安裝。

  1. sudo apt-get install virtualbox

安裝 Vagrant

對於 Vagrant 本身,你要前往 https://www.vagrantup.com/downloads.html 檢視適用於你的作業系統的安裝軟體包。

安裝增強功能

如果你打算與虛擬機器共享任何檔案夾,則需要安裝以下外掛。

  1. vagrant plugin install vagrant-vbguest

配置 Vagrant

首先我們需要為 Vagrant 建立一個檔案夾。

  1. mkdir ~/Vagrant/test-vm

  2. cd ~/Vagrant/test-vm

建立 VagrantFile:

  1. vagrant init

開啟虛擬機器:

  1. vagrant up

登入機器:

  1. vagrant-ssh

此時,你將擁有一個基本的 vagrant 機器,以及一個名為 VagrantFile 的檔案。

定製

在上面的步驟中建立的 VagrantFile 看起來類似於以下內容

VagrantFile:

  1. # -*- mode: ruby -*-

  2. # vi: set ft=ruby :

  3. # All Vagrant configuration is done below. The "2" in Vagrant.configure

  4. # configures the configuration version (we support older styles for

  5. # backwards compatibility). Please don't change it unless you know what

  6. # you're doing.

  7. Vagrant.configure("2") do |config|

  8.    # The most common configuration options are documented and commented below.

  9.    # For a complete reference, please see the online documentation at

  10.    # https://docs.vagrantup.com.

  11.    # Every Vagrant development environment requires a box. You can search for

  12.    # boxes at https://vagrantcloud.com/search.

  13.    config.vm.box = "base"

  14.    # Disable automatic box update checking. If you disable this, then

  15.    # boxes will only be checked for updates when the user runs

  16.    # `vagrant box outdated`. This is not recommended.

  17.    # config.vm.box_check_update = false

  18.    # Create a forwarded port mapping which allows access to a specific port

  19.    # within the machine from a port on the host machine. In the example below,

  20.    # accessing "localhost:8080" will access port 80 on the guest machine.

  21.    # NOTE: This will enable public access to the opened port

  22.    # config.vm.network "forwarded_port", guest: 80, host: 8080

  23.    # Create a forwarded port mapping which allows access to a specific port

  24.    # within the machine from a port on the host machine and only allow access

  25.    # via 127.0.0.1 to disable public access

  26.    # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"

  27.    # Create a private network, which allows host-only access to the machine

  28.    # using a specific IP.

  29.    # config.vm.network "private_network", ip: "192.168.33.10"

  30.    # Create a public network, which generally matched to bridged network.

  31.    # Bridged networks make the machine appear as another physical device on

  32.    # your network.

  33.    # config.vm.network "public_network"

  34.    # Share an additional folder to the guest VM. The first argument is

  35.    # the path on the host to the actual folder. The second argument is

  36.    # the path on the guest to mount the folder. And the optional third

  37.    # argument is a set of non-required options.

  38.    # config.vm.synced_folder "../data", "/vagrant_data"

  39.    # Provider-specific configuration so you can fine-tune various

  40.    # backing providers for Vagrant. These expose provider-specific options.

  41.    # Example for VirtualBox:

  42.    #

  43.    # config.vm.provider "virtualbox" do |vb|

  44.    #   # Display the VirtualBox GUI when booting the machine

  45.    #   vb.gui = true

  46.    #

  47.    #   # Customize the amount of memory on the VM:

  48.    #   vb.memory = "1024"

  49.    # end

  50.    #

  51.    # View the documentation for the provider you are using for more

  52.    # information on available options.

  53.    # Enable provisioning with a shell script. Additional provisioners such as

  54.    # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the

  55.    # documentation for more information about their specific syntax and use.

  56.    # config.vm.provision "shell", inline: <SHELL

  57.    #   apt-get update

  58.    #   apt-get install -y apache2

  59.    # SHELL

  60. end

現在這個 VagrantFile 將建立基本的虛擬機器。但 Vagrant 背後的理念是讓虛擬機器為我們的特定任務而配置,所以我們刪除註釋和調整配置。

VagrantFile:

  1. # -*- mode: ruby -*-

  2. # vi: set ft=ruby :

  3. Vagrant.configure("2") do |config|

  4.  # Set the Linux Version to Debian Jessie

  5.  config.vm.box = "debian/jessie64"

  6.  # Set the IP of the Box

  7.  config.vm.network "private_network", ip: "192.168.33.10"

  8.  # Sync Our Projects Directory with the WWW directory

  9.  config.vm.synced_folder "~/Projects", "/var/www/"

  10.  # Run the following to Provision

  11.  config.vm.provision "shell", path: "install.sh"

  12. end

現在我們有一個簡單的 VagrantFile,它將 Linux 版本設定為 debian jessie,設定一個 IP 給我們使用,同步我們感興趣的檔案夾,並最後執行 install.sh,這是我們可以執行 shell 命令的地方。

install.sh:

  1. #! /usr/bin/env bash

  2. # Variables

  3. DBHOST=localhost

  4. DBNAME=dbname

  5. DBUSER=dbuser

  6. DBPASSWD=test123

  7. echo "[ Provisioning machine ]"

  8. echo "1) Update APT..."

  9. apt-get -qq update

  10. echo "1) Install Utilities..."

  11. apt-get install -y tidy pdftk curl xpdf imagemagick openssl vim git

  12. echo "2) Installing Apache..."

  13. apt-get install -y apache2

  14. echo "3) Installing PHP and packages..."

  15. apt-get install -y php5 libapache2-mod-php5 libssh2-php php-pear php5-cli php5-common php5-curl php5-dev php5-gd php5-imagick php5-imap php5-intl php5-mcrypt php5-memcached php5-mysql php5-pspell php5-xdebug php5-xmlrpc

  16. #php5-suhosin-extension, php5-mysqlnd

  17. echo "4) Installing MySQL..."

  18. debconf-set-selections <<< "mysql-server mysql-server/root_password password secret"

  19. debconf-set-selections <<< "mysql-server mysql-server/root_password_again password secret"

  20. apt-get install -y mysql-server

  21. mysql -uroot -p$DBPASSWD -e "CREATE DATABASE $DBNAME"

  22. mysql -uroot -p$DBPASSWD -e "grant all privileges on $DBNAME.* to '$DBUSER'@'localhost' identified by '$DBPASSWD'"

  23. echo "5) Generating self signed certificate..."

  24. mkdir -p /etc/ssl/localcerts

  25. openssl req -new -x509 -days 365 -nodes -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" -out /etc/ssl/localcerts/apache.pem -keyout /etc/ssl/localcerts/apache.key

  26. chmod 600 /etc/ssl/localcerts/apache*

  27. echo "6) Setup Apache..."

  28. a2enmod rewrite

  29. > /etc/apache2/sites-enabled/000-default.conf

  30. echo "

  31.        ServerAdmin webmaster@localhost

  32.        DocumentRoot /var/www/

  33.        ErrorLog ${APACHE_LOG_DIR}/error.log

  34.        CustomLog ${APACHE_LOG_DIR}/access.log combined

  • " >> /etc/apache2/sites-enabled/000-default.conf

  • service apache2 restart

  • echo "7) Composer Install..."

  • curl --silent https://getcomposer.org/installer | php

  • mv composer.phar /usr/local/bin/composer

  • echo "8) Install NodeJS..."

  • curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -

  • apt-get -qq update

  • apt-get -y install nodejs

  • echo "9) Install NPM Packages..."

  • npm install -g gulp gulp-cli

  • echo "Provisioning Completed"

  • 透過上面的步驟,在你的目錄中會有 VagrantFile 和 install.sh,執行 vagrant 會做下麵的事情:

    ◈ 採用 Debian Jessie 來建立虛擬機器
    ◈ 將機器的 IP 設定為 192.168.33.10
    ◈ 同步 ~/Projects 和 /var/www/ 目錄
    ◈ 安裝並設定 Apache、Mysql、PHP、Git、Vim
    ◈ 安裝並執行 Composer
    ◈ 安裝 Nodejs 和 gulp
    ◈ 建立一個 MySQL 資料庫
    ◈ 建立自簽名證書

    透過與其他人共享 VagrantFile 和 install.sh,你可以在兩臺不同的機器上使用完全相同的環境。


    via: https://www.chris-shaw.com/blog/how-to-install-and-setup-vagrant

    作者:Christopher Shaw[3] 譯者:MjSeven 校對:wxy

    本文由 LCTT 原創編譯,Linux中國 榮譽推出

    LCTT 譯者

    MjSeven ?
    共計翻譯:1 篇
    貢獻時間:2 天


    推薦文章

    < 左右滑動檢視相關文章 >

    點選圖片、輸入文章 ID 或識別二維碼直達

    贊(0)

    分享創造快樂

    © 2024 知識星球   網站地圖