1
0

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.

macで仮想WEBサーバ構築

Last updated at Posted at 2019-09-24

#はじめに
仮想WEBサーバを構築したので、備忘録的に。

#環境
macOS Mojave ver10.14.6
VirtualBox 6.0.12
Vagrant

#手順
①必要ファイルインストール(virtualbox・vagrant)
②vagrantセットアップ
③centOS起動確認
④WEBサーバ構築

#必要ファイルインストール
・参考サイトは以下の通り
https://qiita.com/sudachi808/items/3614fd90f9025973de4b
https://pc-karuma.net/mac-virtualbox-install/

#vagrantセットアップ
・以下を順序よく実行。
$ cd           念の為、まずはカレントディレクトリーへ移動
$ ls           一旦、ディレクトリ内を閲覧
$ mkdir centos7    その後ディレクトリ作成
$ ls きちんと作成できているかを確認
$ cd centos7 作ったディレクトリへ移動
$ vagrant init centos/7 初期設定を行う
$ ls ファイルができたかを確認
スクショ.png

#centOS起動確認
vagrantを起動させる
$ vagrant up
$ vagrant ssh
$ cat /etc/redhat-release
以下のようになればひとまずOK!
スクリーンショット 2019-09-24 17.34.30.png

#WEBサーバ構築
今回はApacheをインストールします。

参考サイト:https://weblabo.oscasierra.net/apache-installing-apache24-yum-centos7-1/

まずはApacheの公開されているバージョンを確認
$ yum info httpd
スクリーンショット 2019-09-24 18.07.43.png

Apacheをインストール
$ sudo yum -y install httpd
以下のようにCompleteと出ればOK!
スクリーンショット 2019-09-24 18.08.51.png

一旦ここまで。
次は、Apacheを起動させるところを記載したいと思います。
閉じるときは以下の流れで
$ exit
$vagrant halt

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?