很多中文文章:http://vmware.csdn.net/second.html?regionid=1709
英文的:http://docs.cloudfoundry.com/tags/tutorial.html
Cloud Foundry可以发布java web应用,java独立应用。
它其实就是一个虚拟机,只不过是可以发送一条命令就会自动往里面安装各种软件,jdk,j2ee就是其中的一种软件。
目前我申请的那个帐号里面有2G的空间,512M的内存,4核CPU。这点免费空间也不好找啊。呵呵
四篇入门文章:
http://cnblog.cloudfoundry.com/2012/06/30/69/
http://cnblog.cloudfoundry.com/2012/06/23/70/
http://cnblog.cloudfoundry.com/2012/06/30/71/
http://cnblog.cloudfoundry.com/2012/06/30/73/
常用vmc命令:http://docs.cloudfoundry.com/tools/vmc/vmc-quick-ref.html
指定target: prompt$ vmc target api.cloudfoundry.com prompt$ vmc target api.<domain>.cloudfoundry.com
列出当前target:vmc target
列出所有可用target: vmc targets
登陆:prompt$ vmc login <youremail@email.com> --passwd <yourpassword>
登出:prompt$ vmc logout
改密码: prompt$ vmc passwd
当前cloudfoundry 版本信息:prompt$ vmc info
为当前Micro cloudfoundry 添加用户:prompt$ vmc add-user --email <newemail@email.com> --passwd <newpasswd>
当前Micro cloudfoundry 删除用户:prompt$ vmc delete-user <useremail@email.com>