• 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

 名前は聞いたことがあったもののどんなものかよく分かってなかったので、下記チュートリアルページを参考にCloud Foundryを触ってみました。

VMware Cloud Foundry入門 - Getting Started (Japanese)

 Cloud FoundryはVMwareが提供しているオープンソースのPaaSフレームワークで、ソースコードを取得してPaaS環境を構築できるほか、VMwareがvSphereデータセンター内で運営しているCloud Foundryのホステッド環境に接続することができます。現在はβ版ということで、無料で利用できるようです。

 まずは http://www.cloudfoundry.com/ でメールアドレスを登録してサインアップ。すぐに「Welcome to Cloud Foundry」という件名のメールが届きますが、これは登録を受け付けたというだけで、実際にアカウントが用意されて使用可能になるのはしばらくして「Welcome to Cloud Foundry - Your signup is approved!」という件名のメールでパスワードが届いてからになります。私の場合は2日ほどで届きました。

 とりあえず自宅PCのWindows環境で試してみました。まず http://www.rubyinstaller.org/ から rubyinstaller-1.9.3-p0.exe をダウンロードしてRubyをインストールします。

   1  C:\Users\akanuma>ruby -version
   2  ruby 1.9.3p0 (2011-10-30) [i386-mingw32]
   3  -e:1:in `<main>': undefined local variable or method `rsion' for main:Object (NameError)

なにやらエラーが出ていますが、とりあえず続行。

Cloud FoundryのCLIであるvmcをインストールします。

   1  C:\Users\akanuma>gem install vmc
   2  Fetching: spruz-0.2.13.gem (100%)
   3  Fetching: json_pure-1.5.4.gem (100%)
   4  Fetching: rubyzip2-2.0.1.gem (100%)
   5  Fetching: mime-types-1.17.2.gem (100%)
   6  Fetching: rest-client-1.6.7.gem (100%)
   7  Fetching: terminal-table-1.4.4.gem (100%)
   8  Fetching: interact-0.2.gem (100%)
   9  Fetching: vmc-0.3.13.gem (100%)
  10  Successfully installed spruz-0.2.13
  11  Successfully installed json_pure-1.5.4
  12  Successfully installed rubyzip2-2.0.1
  13  Successfully installed mime-types-1.17.2
  14  Successfully installed rest-client-1.6.7
  15  Successfully installed terminal-table-1.4.4
  16  Successfully installed interact-0.2
  17  Successfully installed vmc-0.3.13
  18  8 gems installed
  19  Installing ri documentation for spruz-0.2.13...
  20  Installing ri documentation for json_pure-1.5.4...
  21  Installing ri documentation for rubyzip2-2.0.1...
  22  Installing ri documentation for mime-types-1.17.2...
  23  Installing ri documentation for rest-client-1.6.7...
  24  unable to convert "\xE2" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to Windows-31J for README.rdoc, skipping
  25  Installing ri documentation for terminal-table-1.4.4...
  26  Installing ri documentation for interact-0.2...
  27  Installing ri documentation for vmc-0.3.13...
  28  Installing RDoc documentation for spruz-0.2.13...
  29  Installing RDoc documentation for json_pure-1.5.4...
  30  Installing RDoc documentation for rubyzip2-2.0.1...
  31  Installing RDoc documentation for mime-types-1.17.2...
  32  Installing RDoc documentation for rest-client-1.6.7...
  33  unable to convert "\xE2" to UTF-8 in conversion from ASCII-8BIT to UTF-8 to Windows-31J for README.rdoc, skipping
  34  Installing RDoc documentation for terminal-table-1.4.4...
  35  Installing RDoc documentation for interact-0.2...
  36  Installing RDoc documentation for vmc-0.3.13...

vmcのtargetコマンドでデプロイ対象を api.cloudfoundry.com に設定します。

   1  C:\Users\akanuma>vmc target api.cloudfoundry.com
   2  Succesfully targeted to [http://api.cloudfoundry.com]

続けてログインコマンドを実行します。

   1  C:\Users\akanuma>vmc login
   2  Email: xxxxxxxxxx@xxxxx.xxx
   3  Password: ********
   4  Successfully logged into [http://api.cloudfoundry.com]

そしてアプリケーションを作成するためのディレクトリを作成して移動します。

   1  C:\Users\akanuma>mkdir hello
   2  C:\Users\akanuma>cd hello
   3  C:\Users\akanuma\hello>

次にhllo.rbという名前で下記内容のファイルを作成します。文字コードはUTF-8で、改行コードはLFにしないと失敗するようです。

   1  require 'sinatra'
   2  get '/' do
   3    "Hello from Cloud Foundry!"
   4  end

アプリケーションをデプロイします。vmc pushコマンドを実行すると追加の情報入力用のプロンプトが表示されますので、それぞれ下記のように入力します。

   1  C:\Users\akanuma\hello>vmc push
   2  Would you like to deploy from the current directory? [Yn]:
   3  Application Name: akanumahello
   4  Application Deployed URL ["akanumahello.cloudfoundry.com"]:
   5  Detected a Sinatra Application, is this correct? [Yn]:
   6  Memory Reservation ("64M", "128M", "256M", "512M", "1G", "2G") ["128M"]:
   7  Creating Application: OK
   8  Would you like to bind any services to 'akanumahello'? [yN]:
   9  Uploading Application:
  10    Checking for available resources: OK
  11    Packing application: OK
  12    Uploading (0K): OK
  13  Push Status: OK
  14  Staging Application: OK
  15  Starting Application: OK

無事デプロイされたようです。ブラウザで http://akanumahello.cloudfoundry.com/ にアクセスして「Hello from Cloud Foundry!」と表示されればひとまず成功です。

続けて変更を加えてみます。hello.rbの "Hello from Cloud Foundry!" を "Hello from Cloud Foundry and VMware!" に変更して保存します。そして下記コマンドでサーバ上に変更を反映します。

   1  C:\Users\akanuma\hello>vmc update akanumahello
   2  Uploading Application:
   3    Checking for available resources: OK
   4    Packing application: OK
   5    Uploading (0K): OK
   6  Push Status: OK
   7  Stopping Application: OK
   8  Staging Application: OK
   9  Starting Application: OK

ブラウザで再度表示を確認して、変更が反映されていれば成功です。

このチュートリアルを試す限りは簡単にアプリケーションを公開できそうです。メモリも2GBまでは使えるようですので、あまり負荷の高くないアプリケーションであれば十分に使えそうです。

posted by Png akanuma on Sun 11 Dec 2011 at 18:57

Comments:

or Preview
Social Bookmarks
  • Delicious
  • B_entry2037
  • Clip_16_12_w
Services from s21g
twpro(ツイプロ)
Twitterプロフィールを快適検索
地価2009
土地の値段を調べてみよう
MyRestaurant
自分だけのレストラン手帳
Formula
ブログに数式を埋め込める数式コミュニティ