「実践 Vagrant」を読んだ

4年くらい前に

ProductName 実践 Vagrant
Mitchell Hashimoto
オライリージャパン / 2730円 ( 2014-02-21 )


ProductName 入門Chef Solo - Infrastructure as Code
伊藤直也
伊藤直也 / ?円 ( 2013-03-11 )


つくって壊せるRedmine

(2013.09.26 修正) redmineのバージョンをあげました。

実機にインストールしたいヒトは対応するOSのインストーラーをダウンロードして実行すればいいだけなので簡単です(インストーラーのダウンロードと実行に30分程度かかります)。

実機にインストールしてもいいけど、仮想サーバーでやりたいひと(僕とか)もいるだろうということでVagrant+BitnamiRedmineの環境構築のメモ。VirtualboxVagrantはあらかじめインストールしておきます。尚、MBAで試しました。

仮想サーバーの構築

mkdir vredmine
cd vredmine
vagrant init precise32 http://files.vagrantup.com/precise32.box

Vagrantfileの以下の行のコメントを外して

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

仮想サーバーを起動します

vagrant up

bitnami redmineのインストール

vagrant ssh
wget http://bitnami.com/redirect/to/24965/bitnami-redmine-2.3.3-1-linux-installer.run
chmod 755 bitnami-redmine-2.3.3-1-linux-installer.run
sudo ./bitnami-redmine-2.3.3-1-linux-installer.run

対話形式のインストーラの質問に答えればインストールされてRedmineが起動する。

基本的にデフォルトでOK

Please select the installation language
Please choose an option [1] : 1 # インストーラーの言語は英語のまま
PhpMyAdmin [Y/n] :
Is the selection above correct? [Y/n]:
Select a folder [/opt/redmine-2.3.3-1]: 
Login [user]: admin #管理者の情報を入力
Password :[password]
Please confirm your password :[password]
Your real name [User Name]: [realname]
Email Address [user@example.com]: [your@mail.address]
Select your language for default data configuration:
Please choose an option [4] : 9 #Redmineのデフォルトの言語は日本語
Do you want to configure mail support? [y/N]:  #今回はメールは使わないのでサポートはOff(デフォルト)
Do you want to continue? [Y/n]: Y
----------------------------------------------------------------------------
Please wait while Setup installs BitNami Redmine Stack on your computer.

 Installing
 0% ______________ 50% ______________ 100%
 #########################################
(10分程待たされる)
----------------------------------------------------------------------------
Launch Redmine application. [Y/n]: Y

仮想サーバーのRedmineにアクセス

http://192.168.33.10/redmine/

にアクセスする。

あとはRedmineの本でも読みながら頑張ればよろしい。

ProductName 入門Redmine 第3版
前田 剛
秀和システム / 2310円 ( 2012-08 )


ProductName Redmineによるタスクマネジメント実践技法
小川 明彦
翔泳社 / 3444円 ( 2010-10-13 )