在 PowerVPS 上安装 Node.js

发布于 2024-10-03 05:51:39 字数 216 浏览 5 评论 0原文

我有一台来自 PowerVPS 的 VPS,它具有 CentOS 5.5(默认配置)。
我需要安装 Node.JS 来安装 Ajax IM
有人对如何在计算机上安装 Node.JS 有任何建议/信息吗?

I have one VPS from PowerVPS which has CentOS 5.5 (default configuration).
I need to install Node.JS for an Ajax IM installation.
Does anyone have any advice/information on how to install Node.JS on the machine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

于我来说 2024-10-10 05:51:39

尽管这不是“官方支持”(意味着支持将有助于解决问题等),但这很容易做到。

通过 SSH 登录服务器。然后运行以下命令:


cd /root
wget http://nodejs.org/dist/v0.8.8/node-v0.8.8.tar.gz
gunzip node-v0.8.8.tar.gz
tar -xf node-v0.8.8.tar.gz
cd node-v0.8.8
./configure
make
make install

运行这些命令后,您应该能够键入 which node 以查看二进制文件的完整路径。

[root@host ~]# which node
/usr/local/bin/node

要进行测试,您可以创建一个包含以下内容的新文件:

var sys = require("sys");
sys.puts("Hello World!");

保存并运行它。我将测试文件命名为“foo.js”。

[root@host ~]# node foo.js
Hello World!

应该可以做到这一点。如果出现错误,请确保已安装 GCC。 (yum install gcc

希望有帮助!

Rob Yates

销售工程师

PowerVPS / Virtacore Systems

Although this is not "officially supported" (meaning support will help troubleshoot problems and such), this is pretty easy to do.

Login to the server via SSH. Then run the following commands:


cd /root
wget http://nodejs.org/dist/v0.8.8/node-v0.8.8.tar.gz
gunzip node-v0.8.8.tar.gz
tar -xf node-v0.8.8.tar.gz
cd node-v0.8.8
./configure
make
make install

After those commands are run, you should be able to type which node to see the full path to the binary.

[root@host ~]# which node
/usr/local/bin/node

To test, you can create a new file with the following contents:

var sys = require("sys");
sys.puts("Hello World!");

Save it and then run it. I named my test file 'foo.js'.

[root@host ~]# node foo.js
Hello World!

That should do it. If you get errors, make sure you have GCC installed. (yum install gcc)

Hope that helps!

Rob Yates

Sales Engineer

PowerVPS / Virtacore Systems

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文