Where did you add the path?
How did you start the node.js process?
If you installed from git, I'm not sure that an rc file would have been installed. Did you actually run something like "make install"? Or did you just run "make"?
Do you need to install grom git? node is available in the ports tree and would, I think, install the rc file for you.
Is there anything at any of the following paths?
/usr/local/etc/rc.d/node
/usr/etc/rc.d/node
/etc/rc.d/node
No node in any of those paths.
I start node by typing "node server.js". Node must be executable from anywhere, which is why I need to set the path.
The whole reason I install from git is because the purpose I need it for requires a very specific version of node - v0.8. It is much easier to install node via pkg_add, but then I get v0.10 which breaks my web server (I'm running Parsoid for a mediawiki install I did, Parsoid is a pain in the ass and very particular about it's requirements).
I use "git clone" currently to get what I need, then I have to build the branch using "git checkout", then run "/.configure && gmake", then set a path using "set path=(/usr/local/www/mediawiki/www/extensions/Parsoid/js/node $path)".
Pain in the ass to have to do this every time I reboot the server.
Is grom git some enhance version of git that would automate the whole process I listed above, and do a proper install? If so, sign me up. Could I just do "pkg_add -r grom git" or something like that, and then if I use it to grab a git it will do the rest for me?