NodeJS在Gentoo AMD64上初始化V8时出错

时间:2011-12-28 12:03:43

标签: node.js v8

我设法在机器上编译V8引擎,但是当我输入

  

$ node

     

致命错误:v8 :: Debug :: SetDebugMessageDispatchHandler初始化V8时出错

我有V8版本3.6.6.11,D8控制台正常工作。 我尝试了portjs版本的nodejs 0.6.6,从github编译的版本显示了同样的错误。 我想问题是堆栈分配堆

  

$ ulimit -a

core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 31707
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 31707
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

这是一个虚拟机,可能会带来一些限制......

  

Linux 2.6.36-hardened-r9-guest-hardened-01 x86_64 QEMU虚拟CPU版本0.13.0 AuthenticAMD GNU / Linux   有什么想法吗?

3 个答案:

答案 0 :(得分:6)

在使用Vyacheslav Egorov的debuggin nodejs之后我们发现,mmap未能分配内存(Operation not permitted) - 这是由一些Gentoo的安全标志引起的(改变它可能需要重新编译内核)< / p>

最后我使用了github

中的node v0.6 branch
./configure --without-snapshot
make
make install

paxctl -m /usr/local/bin/node

添加MPROTECT标志

- PaX flags: -----m-x-e-- [/usr/local/bin/node]
        MPROTECT is disabled
        RANDEXEC is disabled
        EMUTRAMP is disabled

请注意:

在服务器上运行Rails应用程序时放到config/boot.rb

ENV['EXECJS_RUNTIME'] = 'Node' if ENV['RAILS_ENV'] == 'production'

答案 1 :(得分:1)

我怀疑这是由于未能分配代码范围(仅在x64版本的V8中使用)。在deps/v8/src/heap.cc尝试将code_range_size_(512*MB),更改为code_rage_size_(32*MB),并重新编译节点。

答案 2 :(得分:1)

这是我在为Android编译V8时从/var/log/kern.log得到的:

  

Dec 30 11:42:26 stormrage kernel: grsec: From 82.247.154.152: denied RWX mmap of <anonymous mapping> by /mnt/sdb/cyanogen/android/system/out/host/linux-x86/bin/mksnapshot[mksnapshot:32426] uid/euid:1014/1014 gid/egid:1014/1014, parent /usr/bin/gmake[make:28416] uid/euid:1014/1014 gid/egid:1014/1014

我怀疑你的错误与我的错误(GRSEC问题)和做

  

paxctl -m /mnt/sdb/cyanogen/android/system/out/host/linux-x86/bin/mksnapshot

适合我。 我在Gentoo x64 Hardened下作为VMWare ESXi来宾。  感谢。