IISNode exec默默地失败

时间:2014-06-29 20:17:59

标签: node.js iis exec windows-server-2012 iisnode

我正在尝试使用GitHub webhooks和node.js构建自动代码提取服务。 当我昨天运行这个代码时,它就像一个魅力,并将正确的存储库拉到正确的文件夹,但今天它开始无声地失败。它适用于我的开发机器。

如瓷砖中所述,我正在使用IISNode在IIS下运行它,但我开始怀疑是否应该在没有IIS的情况下托管它。这是我写的代码。

var exec    =   require('child_process').exec,
http    =   require('http'),
path    =   require('path'),
config  =   require('./config'),
server  =   http.createServer(function(req, res) {

var incomingData = '';

req.on('data', function(data) {
    incomingData += data;
});

req.on('end', function() {
    incomingData = JSON.parse(incomingData);
    var repoName = incomingData.repository.name;
    var pullPath = path.resolve('..', repoName);

    console.log(pullPath);
    var body = "<html><body>stdout: ";
    exec('cd ' + pullPath + ' && git pull', function (error, stdout, stderr) {
        if( error !== null ){
            console.log(error);
        }

        console.log("stdout: " + stdout);
        console.log("stderr: " + stderr);
        body += stdout;
    });
    body += "</body></html>";

        res.writeHead(200, {
          'Content-Length': body.length,
          'Content-Type': 'text/plain' });
        res.write(body, 'utf8');
        res.end();
    });
}).listen(config.web.port);

为什么突然停止工作?

编辑: 我在issnode的github页面上打开了一个问题。 https://github.com/tjanczuk/iisnode/issues/352

EDIT2: 添加一些调试信息 http://tjanczuk.github.io/iisnode/iisnode-debug.html#iisnode_ver=0.2.11&node=node.exe&dns=DNS&worker_pid=600&node_pid=1200&worker_mem_ws=11072&worker_mem_pagefile=4728&node_mem_ws=12820&node_mem_pagefile=12696&app_processes=1&process_active_req=1&app_active_req=1&worker_total_req=1&np_retry=1&req_time=0&hresult=0

edi3: 看起来我有问题... / app.js / debug /它获得标题,但似乎永远等待从服务器获得响应。

1 个答案:

答案 0 :(得分:0)

我弄清楚出了什么问题,我没有为IISNode保存github凭据。我通过将主页指向我的Admin-user(使用github ssh密钥)来“破解”它。

我通过更多的谷歌搜索弄明白了,并意识到我正在产生许多似乎无法解决的git实例(他们正在等待我输入的密码)。