0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

vagrantで簡単に環境構築

Posted at

初めまして
今年から新卒としてサーバーサイドエンジニアになったものです。
今日から研修で学んだことのアウトプットとして少しずつ上げていこうと思います。

とういうことで今回は
vagrant.jpg

vagrantを使って環境構築し、自動化まで行いますが、
この記事で行うのはVagrantFileを作ってサーバーにsshで接続できるところまでです。

環境はこちらです
mac
vagrant
virtualbox
centos7

Vagrantとは

Vagrantは、FLOSSの仮想機械を構築するためのソフトウェアである。構成情報を記述した設定ファイル を元に、仮想環境の構築から設定までを自動的に行うことができる。
wikiより引用

Vagrantをインストール

vagrant公式サイト
このサイトから使っているOSに合わせてVagrantをインストールしてください

VirtualBoxをインストール

VirtulaBox公式サイト
こちらからVirtualBoxをインストールしてください

2つとも手順通りに進めば基本的にインストールできます

VagrantFileを作ってみる

まずはVagrantFileというものを生成しましょう。
VagrantFileとは構築するサーバーの構成を決めているファイルになります。
実際にipアドレスを固定化したり、自動化するためのコーディングはこちらで設定します。

コマンドプロンプト

mkdir vagrant

# 次に作ったディレクトリに移動し、VagrantFileを生成します
cd vagrant/

vagrant init centos/7

vagrant initはこのままコマンドを打つとboxが指定されないまま生成されます。
boxというのはvagrant環境用のパッケージフォーマットのことです。
どんなosを使うのかや、どんな機能が備わっているかでどれを追加するか決めます。
今回はvagrant cloudからcentos/7のboxを使って構築していきます。
vagrant cloudから取らなくても自分でboxを作って使うこともできますが、今回は割愛します。

VagrantFileが作られると以下のようになります。

VagrantFile
# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  # The most common configuration options are documented and commented below.
  # For a complete reference, please see the online documentation at
  # https://docs.vagrantup.com.

  # Every Vagrant development environment requires a box. You can search for
  # boxes at https://vagrantcloud.com/search.
  config.vm.box = "centos/7"

  # Disable automatic box update checking. If you disable this, then
  # boxes will only be checked for updates when the user runs
  # `vagrant box outdated`. This is not recommended.
  # config.vm.box_check_update = false

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  # NOTE: This will enable public access to the opened port
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine and only allow access
  # via 127.0.0.1 to disable public access
  # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  # config.vm.network "private_network", ip: "192.168.33.10"

  # Create a public network, which generally matched to bridged network.
  # Bridged networks make the machine appear as another physical device on
  # your network.
  # config.vm.network "public_network"

  # Share an additional folder to the guest VM. The first argument is
  # the path on the host to the actual folder. The second argument is
  # the path on the guest to mount the folder. And the optional third
  # argument is a set of non-required options.
  # config.vm.synced_folder "../data", "/vagrant_data"

  # Provider-specific configuration so you can fine-tune various
  # backing providers for Vagrant. These expose provider-specific options.
  # Example for VirtualBox:
  #
  # config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
  #   vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
  #   vb.memory = "1024"
  # end
  #
  # View the documentation for the provider you are using for more
  # information on available options.

  # Enable provisioning with a shell script. Additional provisioners such as
  # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
end

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

The most common configuration options are documented and commented below.

For a complete reference, please see the online documentation at

https://docs.vagrantup.com.

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

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

config.vm.box = "centos/7"
↑この部分にどんなboxを使うのかが明記される

これでVagrantFileができたので最低限の準備が完了しました
次のコマンドを叩いてみましょう

コマンドプロンプト

vagrant up

これを叩くことで仮想環境が立ち上がります。
少し時間がかかりますが、正しく立ち上げることができたら次はこのコマンドを叩きましょう

コマンドプロンプト

vagrant ssh

このコマンドを叩くと、立ち上がったサーバーを直にCUIベースで触ることができます

お疲れ様です。
これで最低限の環境が構築できました。
次の記事では実際にLamp環境をAnsibleを使って自動化してみたいと思います。
拙い説明でしたがここまでお付き合いくださりありがとうございました。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?