如何在共享托管中托管Node.Js应用程序
我想在共享托管中托管一个node.js应用程序。有没有人要参考或参考文件?
如何在共享托管中托管Node.Js应用程序
我想在共享托管中托管一个node.js应用程序。有没有人要参考或参考文件?
Answers:
您可以在典型的Linux,Apache和PHP(LAMP)共享主机上运行node.js服务器。即使NPM,Express和Grunt运行正常,我也已经成功安装了它。按照步骤:
1)使用以下代码在服务器上创建一个新的PHP文件并运行它:
<?php
//Download and extract the latest node
exec('curl http://nodejs.org/dist/latest/node-v0.10.33-linux-x86.tar.gz | tar xz');
//Rename the folder for simplicity
exec('mv node-v0.10.33-linux-x86 node');
2)使用npm安装节点应用程序的方式相同,例如jt-js-sample:
<?php
exec('node/bin/npm install jt-js-sample');
3)从PHP运行节点应用程序:
<?php
//Choose JS file to run
$file = 'node_modules/jt-js-sample/index.js';
//Spawn node server in the background and return its pid
$pid = exec('PORT=49999 node/bin/node ' . $file . ' >/dev/null 2>&1 & echo $!');
//Wait for node to start up
usleep(500000);
//Connect to node server using cURL
$curl = curl_init('http://127.0.0.1:49999/');
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
//Get the full response
$resp = curl_exec($curl);
if($resp === false) {
//If couldn't connect, try increasing usleep
echo 'Error: ' . curl_error($curl);
} else {
//Split response headers and body
list($head, $body) = explode("\r\n\r\n", $resp, 2);
$headarr = explode("\n", $head);
//Print headers
foreach($headarr as $headval) {
header($headval);
}
//Print body
echo $body;
}
//Close connection
curl_close($curl);
//Close node server
exec('kill ' . $pid);
瞧!看一下PHP共享主机上的节点应用程序的演示。
编辑:我在GitHub上启动了一个Node.php项目。
连接SSH并按照以下说明在共享主机上安装Node
简而言之,您首先安装NVM,然后使用NVM安装您选择的Node版本。
wget -qO- https://cdn.rawgit.com/creationix/nvm/master/install.sh | bash
重新启动外壳程序(关闭并重新打开会话)。那么你
nvm install stable
例如,安装最新的稳定版本。您可以安装您选择的任何版本。检查node --version
当前使用的节点版本,并nvm list
查看已安装的版本。
另外,您可以轻松切换版本(nvm use <version>
)
如果您使用SSH,则不需要PHP或任何棘手的解决方法。
nvm:command not found
话)可以运行以下命令:命令source ~/.nvm/nvm.sh
我使用以下命令在bluehost.com(共享服务器)上安装了Node.js:
wget <path to download file>
tar -xf <gzip file>
mv <gzip_file_dir> node
这将下载tar文件,解压缩到目录,然后将该目录重命名为“ node”,以使其易于使用。
然后
./node/bin/npm install jt-js-sample
Returns:
npm WARN engine jt-js-sample@0.2.4: wanted: {"node":"0.10.x"} (current: {"node":"0.12.4","npm":"2.10.1"})
jt-js-sample@0.2.4 node_modules/jt-js-sample
└── express@4.12.4 (merge-descriptors@1.0.0, utils-merge@1.0.0, cookie-signature@1.0.6, methods@1.1.1, cookie@0.1.2, fresh@0.2.4, escape-html@1.0.1, range-parser@1.0.2, finalhandler@0.3.6, content-type@1.0.1, vary@1.0.0, parseurl@1.3.0, serve-static@1.9.3, content-disposition@0.5.0, path-to-regexp@0.1.3, depd@1.0.1, qs@2.4.2, on-finished@2.2.1, debug@2.2.0, etag@1.6.0, proxy-addr@1.0.8, send@0.12.3, type-is@1.6.2, accepts@1.2.7)
我现在可以使用以下命令:
# ~/node/bin/node -v
v0.12.4
# ~/node/bin/npm -v
2.10.1
出于安全原因,我将节点目录重命名为其他名称。
npm start
在中尝试过,jt-js-sample
然后转到mysite.com:5000,但该页面不可用。我需要改为使用IP地址吗?
A2托管允许在其共享托管帐户上使用node.js。我可以保证我对他们有过积极的经历。
以下是其知识库中有关使用Apache / LiteSpeed作为反向代理安装node.js的说明:https ://www.a2hosting.com/kb/installable-applications/manual-installations/installing-node-js-on-managed- 托管帐户。大约需要30分钟来设置配置,并且可以与npm,Express,MySQL等一起使用。
请参阅a2hosting.com。
您应该寻找一家提供这种功能的托管公司,但是标准的简单static + PHP + MySQL托管将不允许您使用node.js。
您需要找到专为node.js设计的主机,或者购买虚拟专用服务器并自行安装。