0
我有一個「世界你好」運行Ubuntu遠程服務器上的微細節點的測試應用程序(Nginx的代理,PM2管理)的Node.js - 在瀏覽器中顯示的頁面推新代碼
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World');
}).listen(8080, '127.0.0.1');
console.log('Server running at http://127.0.0.1:8080/');
運行正常後不會改變(本地Ubuntu的服務器上:
curl http://127.0.0.1:8080
Hello World
,並通過Web瀏覽器
當我更新代碼:
changing to: res.end('Hello World, again');
,並通過SCP推:
scp -v -i ~/.ssh/id_rsa.pub -r hello.js [email protected]:/home/myself
hello.js有效地修改在遠程服務器上,但正在運行的應用程序節點是hello.js仍顯示先前的文字...
什麼我是否想讓新代碼運行?
感謝反饋
非常感謝...我忘了 - 觀看,現在正在更新,重新啓動並顯示新的文本! – erwin