1
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

ローカル開発環境を作りたい

自社FWで開発環境はあるのだけども、将来に向けた開発環境を試す必要があるのでゼロから検証できる環境を作る
とりあえずteratermでログインするところまで。

前提

  • VirtualBoxインストール済
  • Vagrant インストール済

Vagrant + VirtualBox

Docker使いたいけど、開発はVirtualBox。
Hyper-V関係の挙動で共存ができないので、Vagrant + VirtualBoxはそのまま使う

とりあえずcentOS7環境を準備する

vagrant初期設定

boxを作成する

ディレクトリが無かったので作成

mkdir vagrant
cd vagrant

initしたら怒られた

C:\Users\xxx\vagrant>vagrant init centos/7
==> vagrant: A new version of Vagrant is available: 2.2.5 (installed version: 2.2.4)!
==> vagrant: To upgrade visit: https://www.vagrantup.com/downloads.html

A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
The machine index which stores all required information about
running Vagrant environments has become corrupt. This is usually
caused by external tampering of the Vagrant data folder.

Vagrant cannot manage any Vagrant environments if the index is
corrupt. Please attempt to manually correct it. If you are unable
to manually correct it, then remove the data file at the path below.
This will leave all existing Vagrant environments "orphaned" and
they'll have to be destroyed manually.

Path: C:/Users/xxx/.vagrant.d/data/machine-index/index

machine-indexが壊れてるから手動でナオシテ。的な。
対象ファイルをbkupして空にしてやりなおし

vagrant upする

勝手にインストールしてくれる(便利)

C:\Users\xxxx\vagrant>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'centos/7' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Loading metadata for box 'centos/7'
...

自動的にVirtualBoxに登録された
20190930_001.png

登録状態を確認

vagrant box listで登録されたBOXを確認できる

C:\Users\xxxx\vagrant>vagrant box list
centos/7    (virtualbox, 1905.1)
localXXXX (virtualbox, 0)
localXXXX2 (virtualbox, 0)

ssh接続してみる

C:\Users\xxxx\vagrant>vagrant ssh
Last login: Mon Sep 30 13:07:50 2019 from 10.0.2.2
[vagrant@localhost ~]$ cd /var/
[vagrant@localhost var]$ dir
adm  cache  db  empty  games  gopher  kerberos  lib  local  lock  log  mail  nis  opt  preserve  run  spool  tmp  yp

teratermから接続できるようにしたい

IPやマシン名を変える

/vagrant/Vagrantfileを編集する

  # 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"
  config.vm.network "private_network", ip: "192.168.33.11"

centOS上でパスワード認証を許可する

[root@cent7 ~]# su - //passはvagrant
[root@cent7 ~]# vi /etc/ssh/sshd_config

sshd_config

# To disable tunneled clear text passwords, change to no here!
# PasswordAuthentication yes
# PermitEmptyPasswords no
PasswordAuthentication yes

teratermからログインしてみる

ID:root pass:vagrant

Last login: Mon Sep 30 13:35:22 2019
[root@cent7 ~]#

無事にログインできた。

1
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
1
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?