2012-08-31 1 views
1

내 mongodb 서비스에 연결하기 위해 내 앱을 시작하는 동안 VCAP_SERVICES을 읽길 원하지만 null입니까?왜 VCAP_SERVICES이 (가) null입니까?

barry-alexanders-MacBook-Pro:~ barryalexander$ vmc create-service mongodb mongodb-relcal RelCal 
Creating Service: OK 
Binding Service [mongodb-relcal]: OK 
Stopping Application 'RelCal': OK 
Staging Application 'RelCal': OK             
Starting Application 'RelCal': OK            

barry-alexanders-MacBook-Pro:~ barryalexander$ vmc apps 

+-------------+----+---------+-------------------------+----------------+ 
| Application | # | Health | URLS     | Services  | 
+-------------+----+---------+-------------------------+----------------+ 
| RelCal  | 1 | RUNNING | relcal.cloudfoundry.com | mongodb-relcal | 
| barry  | 1 | STOPPED | barry.cloudfoundry.com |    | 
+-------------+----+---------+-------------------------+----------------+ 

barry-alexanders-MacBook-Pro:~ barryalexander$ vmc env RelCal 
No Environment Variables 

답변

4

vmc 'env'명령을 사용할 때 VCAP_SERVICES이 표시되지 않습니다. 그러나 우리는 출력이 VCAP_SERVICES ENV의 변수를 표시하고 그 요청에 대한 헤더 출력이 모양이 간단한 노드 앱

var http = require('http'); 
var util = require('util'); 

http.createServer(function (req, res) { 
    res.writeHead(200, {'Content-Type': 'text/plain'}); 
    res.write(util.inspect(process.env.VCAP_SERVICES)); 
    res.write("\n\n************\n\n"); 
    res.end(util.inspect(req.headers)); 

}).listen(3000); 

밀어 볼 수있다;

'{"mongodb-2.0":[{"name":"mongo-test","label":"mongodb-2.0","plan":"free","tags":["mongodb","mongodb-1.8","nosql","document"],"credentials":{"hostname":"172.30.48.70","host":"172.30.48.70","port":25137,"username":"7ad80054-bb70-49fa-9aae-6ff5c1b458fc","password":"491bcfe9-e441-4caf-8422-00a81dbf727b","name":"4b354e7e-c39d-4053-89e1-7195b1360fd9","db":"db","url":"mongodb://7ad80054-bb70-49fa-9aae-6ff5c1b458fc:[email protected]:25137/db"}}]}' 

************ 

{ host: 'node-headers.cloudfoundry.com', 
    'x-forwarded-for': '80.175.199.28, 172.30.8.253', 
    connection: 'close', 
    'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1', 
    accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 
    'accept-language': 'en-US,en;q=0.8', 
    'accept-charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3', 
    'x-cluster-client-ip': '80.175.199.28', 
    cookie: '__qca=P0-351832036-1339515989739; s_nr=1344955391423; __utma=207604417.1698837494.1342027762.1345020276.1345215879.7; __utmc=207604417; __utmz=207604417.1342027762.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); s_cc=true; s_sq=%5B%5BB%5D%5D', 
    'accept-encoding': 'gzip,deflate,sdch' } 

당신은 당신이 참조 할 수 있도록 사용하려면이 응용 프로그램을 http://node-headers.cloudfoundry.com에서 실행 볼 수 있습니다.