{"id":1637,"date":"2012-03-29T08:15:13","date_gmt":"2012-03-28T23:15:13","guid":{"rendered":"http:\/\/www.creationline.com\/?p=1637"},"modified":"2023-08-29T10:34:37","modified_gmt":"2023-08-29T01:34:37","slug":"cloud-foundry%e3%82%92%e4%bd%bf%e3%81%a3%e3%81%a6%e3%81%bf%e3%82%88%e3%81%866","status":"publish","type":"post","link":"https:\/\/www.creationline.com\/tech-blog\/author\/higuchi\/1637","title":{"rendered":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6]"},"content":{"rendered":"<h2>\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a<\/h2>\n<p>\u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002<\/p>\n<p>\u74b0\u5883\u5909\u6570 VCAP_SERVICES\u3001VMC_APP_PORT\u3001VCAP_APP_HOST \u304c\u7528\u3044\u3089\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u5148\u306b\u8ff0\u3079\u307e\u3057\u305f\u304c\u3001\u3069\u306e\u3088\u3046\u306a\u5f62\u306b\u306a\u3063\u3066\u3044\u308b\u306e\u304b\u3001\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u3066\u5b9f\u969b\u306e\u72b6\u614b\u306e\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002<\/p>\n<h3>\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4f5c\u6210<\/h3>\n<p>\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n<pre>cf@debian:~$ mkdir test-node\ncf@debian:~$ cd test-node\ncf@debian:~\/test-node$<\/pre>\n<p>node.js\u3067\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n<pre>cf@debian:~\/test-node$ cat &gt; app.js\nvar http = require('http');\n\nhttp.createServer(function (req, res) {\n  res.writeHead(200, {'Content-Type': 'text\/plain'});\n  res.write('VMC_APP_PORT: ' + process.env.VMC_APP_PORT + '\\n');\n  res.write('VCAP_APP_HOST: ' + process.env.VCAP_APP_HOST + '\\n');\n  res.write('VCAP_SERVICES: \\n');\n  res.write(JSON.stringify(JSON.parse(process.env.VCAP_SERVICES),null,'  '));\n  res.end('\\n');\n}).listen(process.env.VMC_APP_PORT, process.env.VCAP_APP_HOST);\ncf@debian:~\/test-node$<\/pre>\n<p>\u3053\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u74b0\u5883\u5909\u6570 VMC_APP_PORT \u3068 VCAP_APP_HOST \u3092\u8868\u793a\u3057\u3001\u74b0\u5883\u5909\u6570 VCAP_SERVICES \u306b JSON \u5f62\u5f0f\u3067\u683c\u7d0d\u3055\u308c\u3066\u3044\u308b\u30b5\u30fc\u30d3\u30b9\u3068\u306e\u63a5\u7d9a\u60c5\u5831\u3092\u6574\u5f62\u3057\u3066\u8868\u793a\u3059\u308b\u3082\u306e\u3067\u3059\u3002<\/p>\n<h3>\u30b5\u30fc\u30d3\u30b9\u3068\u95a2\u9023\u4ed8\u3051\u306a\u3044\u5834\u5408<\/h3>\n<pre>cf@debian:~\/test-node$ vmc push\nWould you like to deploy from the current directory? [Yn]:<\/pre>\n<p><strong>y<\/strong><\/p>\n<pre>Application Name:<\/pre>\n<p><strong>test-node<\/strong><\/p>\n<pre>Application Deployed URL [test-node.cloudfoundry.com]:<\/pre>\n<p><strong>test-node-creationline.cloudfoundry.com<\/strong><\/p>\n<pre>Detected a Node.js Application, is this correct? [Yn]:<\/pre>\n<p><strong>y<\/strong><\/p>\n<pre>Memory Reservation (64M, 128M, 256M, 512M, 1G, 2G) [64M]:\nCreating Application: OK\nWould you like to bind any services to 'test-node'? [yN]:<\/pre>\n<p><strong>n<\/strong><\/p>\n<pre>Uploading Application:\n  Checking for available resources: OK\n  Packing application: OK\n  Uploading (0K): OK\nPush Status: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<p>Web\u30d6\u30e9\u30a6\u30b6\u3067 http:\/\/test-node-creationline.cloudfoundry.com\/ \u306b\u30a2\u30b9\u30bb\u30b9\u3057\u307e\u3059\u3002<\/p>\n<pre>VMC_APP_PORT: 15734\nVCAP_APP_HOST: 172.30.49.88\nVCAP_SERVICES:\n{}<\/pre>\n<p>\u30b5\u30fc\u30d3\u30b9\u3068\u95a2\u9023\u4ed8\u3051\u3092\u884c\u3063\u3066\u3044\u306a\u3044\u306e\u3067\u3001VCAP_SERVICES \u306f\u7a7a\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002<\/p>\n<h3>MongoDB\u3068\u95a2\u9023\u4ed8\u3051\u305f\u5834\u5408<\/h3>\n<p>MongoDB \u30b5\u30fc\u30d3\u30b9\u3092\u30d7\u30ed\u30d3\u30b8\u30e7\u30cb\u30f3\u30b0\u3057\u3001\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u7d50\u3073\u3064\u3051\u307e\u3059\u3002<\/p>\n<pre>cf@debian:~\/test-node$ vmc create-service mongodb --bind test-node\nCreating Service [mongodb-cb673]: OK\nBinding Service [mongodb-cb673]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<pre>VMC_APP_PORT: 7550\nVCAP_APP_HOST: 172.30.49.224\nVCAP_SERVICES:\n{\n \"mongodb-1.8\": [\n  {\n   \"name\": \"mongodb-cb673\",\n   \"label\": \"mongodb-1.8\",\n   \"plan\": \"free\",\n   \"tags\": [\n    \"mongodb\",\n    \"mongodb-1.8\",\n    \"nosql\"\n   ],\n   \"credentials\": {\n    \"hostname\": \"172.30.48.73\",\n    \"host\": \"172.30.48.73\",\n    \"port\": 25112,\n    \"username\": \"e5a1ff38-99ea-4e85-a150-e5b86645734f\",\n    \"password\": \"c0a00a52-4b18-4b40-a8c6-d14b85f832f2\",\n    \"name\": \"61c9f8a9-24a1-42e7-9b03-3691e92dcd1d\",\n    \"db\": \"db\"\n   }\n  }\n ]\n}<\/pre>\n<p>\u3053\u306e\u3088\u3046\u306b\u3001\u30d7\u30ed\u30d3\u30b8\u30e7\u30cb\u30f3\u30b0\u3057\u305fMongoDB\u30b5\u30fc\u30d3\u30b9\u306e\u60c5\u5831\u304c\u683c\u7d0d\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u30b5\u30fc\u30d3\u30b9\u3078\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306e\u60c5\u5831\u306fcredentials\u306b\u683c\u7d0d\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n<p>Cloud Foundry\u4e0a\u306b\u30c7\u30d7\u30ed\u30a4\u3059\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001VCAP_SERVICES\u306b\u683c\u7d0d\u3055\u308c\u305fcredentials\u306e\u5024\u3092\u5229\u7528\u3057\u3001\u5404\u30b5\u30fc\u30d3\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u884c\u3046\u3088\u3046\u306b\u4f5c\u6210\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<p>\u5f8c\u51e6\u7406\u3068\u3057\u3066\u3001\u30c6\u30b9\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068MongoDB\u30b5\u30fc\u30d3\u30b9\u3092\u5207\u308a\u96e2\u3057\u3001\u524a\u9664\u3057\u307e\u3059\u3002<\/p>\n<pre>cf@debian:~\/test-node$ vmc unbind-service mongodb-cb673 test-node\nUnbinding Service [mongodb-cb673]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$ vmc delete-service mongodb-cb673\nDeleting service [mongodb-cb673]: OK\n\ncf@debian:~\/test-node$<\/pre>\n<h3>RabbitMQ\u3068\u95a2\u9023\u4ed8\u3051\u305f\u5834\u5408<\/h3>\n<pre>cf@debian:~\/test-node$ vmc create-service rabbitmq --bind test-node\nCreating Service [rabbitmq-7f942]: OK\nBinding Service [rabbitmq-7f942]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<pre>VMC_APP_PORT: 28116\nVCAP_APP_HOST: 172.30.49.93\nVCAP_SERVICES:\n{\n \"rabbitmq-2.4\": [\n  {\n   \"name\": \"rabbitmq-7f942\",\n   \"label\": \"rabbitmq-2.4\",\n   \"plan\": \"free\",\n   \"tags\": [\n    \"rabbitmq\"\n   ],\n   \"credentials\": {\n    \"url\": \"amqp:\/\/dlmcajkd:pZKLUcXPTb0ztT5z@172.30.48.106:12738\/cnjxofbt\"\n   }\n  }\n ]\n}<\/pre>\n<pre>cf@debian:~\/test-node$ vmc unbind-service rabbitmq-7f942 test-node\nUnbinding Service [rabbitmq-7f942]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$ vmc delete-service rabbitmq-7f942\nDeleting service [rabbitmq-7f942]: OK\n\ncf@debian:~\/test-node$<\/pre>\n<h3>Redis\u3068\u95a2\u9023\u4ed8\u3051\u305f\u5834\u5408<\/h3>\n<pre>cf@debian:~\/test-node$ vmc create-service redis --bind test-node\nCreating Service [redis-d5c4b]: OK\nBinding Service [redis-d5c4b]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<pre>VMC_APP_PORT: 51340\nVCAP_APP_HOST: 172.30.49.164\nVCAP_SERVICES:\n{\n \"redis-2.2\": [\n  {\n   \"name\": \"redis-d5c4b\",\n   \"label\": \"redis-2.2\",\n   \"plan\": \"free\",\n   \"tags\": [\n    \"redis\",\n    \"redis-2.2\",\n    \"key-value\",\n    \"nosql\"\n   ],\n   \"credentials\": {\n    \"hostname\": \"172.30.48.42\",\n    \"host\": \"172.30.48.42\",\n    \"port\": 5115,\n    \"password\": \"7c62e7d2-9ddc-4353-8c56-44a976b4ddc0\",\n    \"name\": \"f5859f7f-79e4-4e98-ae59-f16f4c098666\"\n   }\n  }\n ]\n}<\/pre>\n<pre>cf@debian:~\/test-node$ vmc unbind-service redis-d5c4b test-node\nUnbinding Service [redis-d5c4b]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$ vmc delete-service redis-d5c4b\nDeleting service [redis-d5c4b]: OK\n\ncf@debian:~\/test-node$<\/pre>\n<h3>MySQL\u3068\u95a2\u9023\u4ed8\u3051\u305f\u5834\u5408<\/h3>\n<pre>cf@debian:~\/test-node$ vmc create-service mysql --bind test-node\nCreating Service [mysql-59566]: OK\nBinding Service [mysql-59566]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<pre>VMC_APP_PORT: 20170\nVCAP_APP_HOST: 172.30.49.103\nVCAP_SERVICES:\n{\n \"mysql-5.1\": [\n  {\n   \"name\": \"mysql-59566\",\n   \"label\": \"mysql-5.1\",\n   \"plan\": \"free\",\n   \"tags\": [\n    \"mysql\",\n    \"mysql-5.1\",\n    \"relational\"\n   ],\n   \"credentials\": {\n    \"name\": \"d2c8ba4cc2b644d92bbb87028f9ccca94\",\n    \"hostname\": \"172.30.48.22\",\n    \"host\": \"172.30.48.22\",\n    \"port\": 3306,\n    \"user\": \"u6Z3hFf472aeS\",\n    \"username\": \"u6Z3hFf472aeS\",\n    \"password\": \"puhN7ZFfWMxCU\"\n   }\n  }\n ]\n}<\/pre>\n<pre>cf@debian:~\/test-node$ vmc unbind-service mysql-59566 test-node\nUnbinding Service [mysql-59566]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$ vmc delete-service mysql-59566\nDeleting service [mysql-59566]: OK\n\ncf@debian:~\/test-node$<\/pre>\n<p>\u306a\u304a\u3001MySQL\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2012\u5e741\u6708\u73fe\u5728\u3001Cloud Foundry\u306b\u306f\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002<a href=\"http:\/\/support.cloudfoundry.com\/entries\/20028001-how-to-access-mysql-instance-via-mysql-admin-client\">how to access MySql instance via MySql admin client<\/a>\u306b\u3066<\/p>\n<blockquote><p>Currently you can only get access to the service via an application that is bound to the service.<\/p><\/blockquote>\n<p>\u3068\u8ff0\u3079\u3089\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n<h3>PostgreSQL\u3068\u95a2\u9023\u4ed8\u3051\u305f\u5834\u5408<\/h3>\n<pre>cf@debian:~\/test-node$ vmc create-service postgresql --bind test-node\nCreating Service [postgresql-72603]: OK\nBinding Service [postgresql-72603]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$<\/pre>\n<pre>VMC_APP_PORT: 59532\nVCAP_APP_HOST: 172.30.49.161\nVCAP_SERVICES:\n{\n \"postgresql-9.0\": [\n  {\n   \"name\": \"postgresql-72603\",\n   \"label\": \"postgresql-9.0\",\n   \"plan\": \"free\",\n   \"credentials\": {\n    \"name\": \"dbf66107218bc4f48b6bdc9b6b46b6715\",\n    \"host\": \"172.30.48.125\",\n    \"hostname\": \"172.30.48.125\",\n    \"port\": 5432,\n    \"user\": \"u50e31499b8eb4373a1aa1237dbe71dd3\",\n    \"username\": \"u50e31499b8eb4373a1aa1237dbe71dd3\",\n    \"password\": \"pd283f0d46a06414ebc33061aef3e1a6b\"\n   }\n  }\n ]\n}<\/pre>\n<pre>cf@debian:~\/test-node$ vmc unbind-service postgresql-72603 test-node\nUnbinding Service [postgresql-72603]: OK\nStopping Application: OK\nStaging Application: OK\nStarting Application: OK                                                        \n\ncf@debian:~\/test-node$ vmc delete-service postgresql-72603\nDeleting service [postgresql-72603]: OK\n\ncf@debian:~\/test-node$<\/pre>\n<p>MySQL\u540c\u69d8\u3001PostgreSQL\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9\u306f2012\u5e741\u6708\u73fe\u5728\u3001Cloud Foundry\u306b\u306f\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002<a href=\"http:\/\/support.cloudfoundry.com\/entries\/20672393-add-console-to-postgresql-service\">Add console to PostgreSQL service<\/a>\u306b\u3066<\/p>\n<blockquote><p>We have features under development\/roadmap to provide additional features in our client tools (vmc etc.) to access cloud foundry services directly.<\/p><\/blockquote>\n<p>\u3068\u8ff0\u3079\u3089\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002 \u74b0\u5883\u5909\u6570 VCAP_SERVICES\u3001VMC_APP_PORT\u3001VCA [&#8230;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[31],"tags":[],"class_list":["post-1637","post","type-post","status-publish","format-standard","hentry","category-higuchi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3<\/title>\n<meta name=\"description\" content=\"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.creationline.com\/tech-blog\/1637\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3\" \/>\n<meta property=\"og:description\" content=\"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.creationline.com\/tech-blog\/1637\" \/>\n<meta property=\"og:site_name\" content=\"Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/creationline\" \/>\n<meta property=\"article:published_time\" content=\"2012-03-28T23:15:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-29T01:34:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.creationline.com\/tech-blog\/cms_x3GWkuX\/wp-content\/uploads\/2026\/01\/screenshot.png\" \/>\n\t<meta property=\"og:image:width\" content=\"470\" \/>\n\t<meta property=\"og:image:height\" content=\"394\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Daisuke Higuchi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@creationline\" \/>\n<meta name=\"twitter:site\" content=\"@creationline\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Daisuke Higuchi\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637\"},\"author\":{\"name\":\"Daisuke Higuchi\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/#\\\/schema\\\/person\\\/16f1373831fb6fd17387f16ae1195206\"},\"headline\":\"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6]\",\"datePublished\":\"2012-03-28T23:15:13+00:00\",\"dateModified\":\"2023-08-29T01:34:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637\"},\"wordCount\":112,\"articleSection\":[\"d-higuchi\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637\",\"url\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637\",\"name\":\"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/#website\"},\"datePublished\":\"2012-03-28T23:15:13+00:00\",\"dateModified\":\"2023-08-29T01:34:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/#\\\/schema\\\/person\\\/16f1373831fb6fd17387f16ae1195206\"},\"description\":\"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/1637#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"HOME\",\"item\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/#website\",\"url\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/\",\"name\":\"Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3\",\"description\":\"\u30a2\u30b8\u30e3\u30a4\u30eb\uff06DevOps\u3001\u30af\u30e9\u30a6\u30c9\u30cd\u30a4\u30c6\u30a3\u30d6\u3001AI\uff06LLM\u306e\u5148\u7aef\u6280\u8853\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/#\\\/schema\\\/person\\\/16f1373831fb6fd17387f16ae1195206\",\"name\":\"Daisuke Higuchi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/cms_x3GWkuX\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/d-higuchi-wp-icon-230x230.png\",\"url\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/cms_x3GWkuX\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/d-higuchi-wp-icon-230x230.png\",\"contentUrl\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/cms_x3GWkuX\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/d-higuchi-wp-icon-230x230.png\",\"caption\":\"Daisuke Higuchi\"},\"description\":\"Chef\u30fbDocker\u30fbMirantis\u88fd\u54c1\u306a\u3069\u306e\u6280\u8853\u8981\u7d20\u306b\u52a0\u3048\u3066\u3001\u4f1a\u8b70\u306e\u9032\u3081\u65b9\u30fb\u6587\u7ae0\u306e\u66f8\u304d\u65b9\u306a\u3069\u306e\u696d\u52d9\u6539\u5584\u306b\u3082\u53d6\u308a\u7d44\u3093\u3067\u3044\u307e\u3059\u3002\u300cChef\u6d3b\u7528\u30ac\u30a4\u30c9\u300d\u5171\u8457\u306e\u307b\u304b\u3001Debian Official Developer\u3082\u3084\u3063\u3066\u3044\u307e\u3059\u3002\",\"url\":\"https:\\\/\\\/www.creationline.com\\\/tech-blog\\\/author\\\/higuchi\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3","description":"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.creationline.com\/tech-blog\/1637","og_locale":"ja_JP","og_type":"article","og_title":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3","og_description":"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002","og_url":"https:\/\/www.creationline.com\/tech-blog\/1637","og_site_name":"Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3","article_publisher":"https:\/\/www.facebook.com\/creationline","article_published_time":"2012-03-28T23:15:13+00:00","article_modified_time":"2023-08-29T01:34:37+00:00","og_image":[{"width":470,"height":394,"url":"https:\/\/www.creationline.com\/tech-blog\/cms_x3GWkuX\/wp-content\/uploads\/2026\/01\/screenshot.png","type":"image\/png"}],"author":"Daisuke Higuchi","twitter_card":"summary_large_image","twitter_creator":"@creationline","twitter_site":"@creationline","twitter_misc":{"\u57f7\u7b46\u8005":"Daisuke Higuchi","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.creationline.com\/tech-blog\/1637#article","isPartOf":{"@id":"https:\/\/www.creationline.com\/tech-blog\/1637"},"author":{"name":"Daisuke Higuchi","@id":"https:\/\/www.creationline.com\/tech-blog\/#\/schema\/person\/16f1373831fb6fd17387f16ae1195206"},"headline":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6]","datePublished":"2012-03-28T23:15:13+00:00","dateModified":"2023-08-29T01:34:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.creationline.com\/tech-blog\/1637"},"wordCount":112,"articleSection":["d-higuchi"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/www.creationline.com\/tech-blog\/1637","url":"https:\/\/www.creationline.com\/tech-blog\/1637","name":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6] - Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3","isPartOf":{"@id":"https:\/\/www.creationline.com\/tech-blog\/#website"},"datePublished":"2012-03-28T23:15:13+00:00","dateModified":"2023-08-29T01:34:37+00:00","author":{"@id":"https:\/\/www.creationline.com\/tech-blog\/#\/schema\/person\/16f1373831fb6fd17387f16ae1195206"},"description":"d-higuchi |\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3068\u30b5\u30fc\u30d3\u30b9\u306e\u63a5\u7d9a \u672c\u9805\u3067\u306f\u3001Cloud Foundry\u4e0a\u3067\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306f\u3001\u30b5\u30fc\u30d3\u30b9\u3068\u3069\u306e\u3088\u3046\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u306e\u304b\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.creationline.com\/tech-blog\/1637#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.creationline.com\/tech-blog\/1637"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.creationline.com\/tech-blog\/1637#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"HOME","item":"https:\/\/www.creationline.com\/tech-blog"},{"@type":"ListItem","position":2,"name":"Cloud Foundry\u3092\u4f7f\u3063\u3066\u307f\u3088\u3046[6]"}]},{"@type":"WebSite","@id":"https:\/\/www.creationline.com\/tech-blog\/#website","url":"https:\/\/www.creationline.com\/tech-blog\/","name":"Tech Blog\uff5c\u30af\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\u30e9\u30a4\u30f3","description":"\u30a2\u30b8\u30e3\u30a4\u30eb\uff06DevOps\u3001\u30af\u30e9\u30a6\u30c9\u30cd\u30a4\u30c6\u30a3\u30d6\u3001AI\uff06LLM\u306e\u5148\u7aef\u6280\u8853","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.creationline.com\/tech-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.creationline.com\/tech-blog\/#\/schema\/person\/16f1373831fb6fd17387f16ae1195206","name":"Daisuke Higuchi","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.creationline.com\/tech-blog\/cms_x3GWkuX\/wp-content\/uploads\/2023\/08\/d-higuchi-wp-icon-230x230.png","url":"https:\/\/www.creationline.com\/tech-blog\/cms_x3GWkuX\/wp-content\/uploads\/2023\/08\/d-higuchi-wp-icon-230x230.png","contentUrl":"https:\/\/www.creationline.com\/tech-blog\/cms_x3GWkuX\/wp-content\/uploads\/2023\/08\/d-higuchi-wp-icon-230x230.png","caption":"Daisuke Higuchi"},"description":"Chef\u30fbDocker\u30fbMirantis\u88fd\u54c1\u306a\u3069\u306e\u6280\u8853\u8981\u7d20\u306b\u52a0\u3048\u3066\u3001\u4f1a\u8b70\u306e\u9032\u3081\u65b9\u30fb\u6587\u7ae0\u306e\u66f8\u304d\u65b9\u306a\u3069\u306e\u696d\u52d9\u6539\u5584\u306b\u3082\u53d6\u308a\u7d44\u3093\u3067\u3044\u307e\u3059\u3002\u300cChef\u6d3b\u7528\u30ac\u30a4\u30c9\u300d\u5171\u8457\u306e\u307b\u304b\u3001Debian Official Developer\u3082\u3084\u3063\u3066\u3044\u307e\u3059\u3002","url":"https:\/\/www.creationline.com\/tech-blog\/author\/higuchi"}]}},"_links":{"self":[{"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/posts\/1637","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/comments?post=1637"}],"version-history":[{"count":1,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/posts\/1637\/revisions"}],"predecessor-version":[{"id":65688,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/posts\/1637\/revisions\/65688"}],"wp:attachment":[{"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/media?parent=1637"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/categories?post=1637"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.creationline.com\/tech-blog\/wp-json\/wp\/v2\/tags?post=1637"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}