updated concept theme.
homepage topic chat: tasklist: composer profile page notf. screen chats
faviconCommunity (community.nodebb.org)
@HolyPhoenix and @a_5mith Thank you for your patience and for trying to help.
I tried installing NodeBB from the beginning again and when I got to sudo npm install -g npm I noticed that I was getting npm WARN unmet dependency in PuTTY as a result. I think I will send my host another support ticket and ask them to install NodeBB for me.
I think the npm WARN
message you might be able to safely ignore. Did you try going any further? Good luck with the support ticket!
@psychobunny said:
I think the
npm WARN
message you might be able to safely ignore. Did you try going any further? Good luck with the support ticket!
I ended up signing on with a new host, WiredTree, yesterday and will be leaving HostGator once I get a few domains that I have registered with them transferred to Namecheap. I had an idea that my server with HostGator was messed up but didn't know exactly how much until I installed Magento on a new site with WiredTree. The install went flawlessly on WT and was a nightmare when trying to do the same on HG... all of WT's software is up to date as far as I can tell while some of HG's is close to being end of life. I will try installing NodeBB one more time on my own once things settle down and if I still can't do it, I will send WT a support ticket.
@HolyPhoenix
[email protected] [~]# yum install -g npm
Loaded plugins: fastestmirror, security
[email protected] [~]# yum install npm
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
Setting up Install Process
No package npm available.
Error: Nothing to do
any suggestion for these erors ?
@a_5mith
[email protected] [/home/chanrad]# cd nodebb
[email protected] [/home/chanrad/nodebb]# sudo npm install -g npm
sudo: npm: command not found
[email protected] [/home/chanrad/nodebb]# sudo yump install -g npm
sudo: yump: command not found
[email protected] [/home/chanrad/nodebb]# sudo yum install -g npm
^[[ALoaded plugins: fastestmirror, security
[email protected] [/home/chanrad/nodebb]# yum install npm
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
i'm sure i'm in nodebb folder thats the log..
@nakre you are in nodebb, didn't look like it from first logs, lack of npm might suggest you've not got everything from the software stack part. Can you try
cd ../
sudo yum install npm
cd nodebb
sudo npm install -g npm
sudo npm install
@a_5mith
[email protected] [/home/chanrad/nodebb]# cd ../
[email protected] [/home/chanrad]# sudo yum install npm
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
when i used sudo yum install nodejs git redis ImageMagick npm
Setting up Install Process
No package nodejs available.
Package git-1.7.1-3.el6_4.1.i686 already installed and latest version
No package redis available.
Package ImageMagick-6.5.4.7-7.el6_5.i686 already installed and latest version
No package npm available.
Nothing to do
If I remember correctly npm is in the EPEL repository, and based on your error it looks like you don't have the repo enabled. This guide looks pretty good.
Make sure you use the right EPEL release for your version of centos.
Once you finish that then run the npm command again and it should work. You shouldn't need to install it to the nodebb directory.
Did adding the EPEL repository work for you?
@HolyPhoenix maybe i should give up.. if i can't manage to install it how could i maintenance it ;x still thanks a lot for helping me out, these comments may help some others as well..
Here are latest logs i have.. i'm kinda very sure i have epel enabled.
[email protected] [/]# cd home
[email protected] [/home]# cd chanrad
[email protected] [/home/chanrad]# cd nodebb
[email protected] [/home/chanrad/nodebb]# sudo npm install -g npm
sudo: npm: command not found
[email protected] [/home/chanrad/nodebb]# cd ..
[email protected] [/home/chanrad]# sudo yum install npm
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
Command line error: no such option: -g
[email protected] [/home/chanrad]# cd ../
[email protected] [/home]# sudo yum install npm
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
[email protected] [/home/chanrad]# sudo vim /etc/yum.repos.d/remi.repo
[remi]
name=Les RPM de remi pour Enterprise Linux 6 - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/6/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/6/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
@HolyPhoenix Sure here it is..
[email protected] [~]# cd /etc/yum.repos.d
[email protected] [/etc/yum.repos.d]# ls
./ epel.repo pgdg-93-centos.repo
../ epel.repo.rpmnew remi.repo
CentOS-Base.repo epel-testing.repo .remi.repo.swp
CentOS-Debuginfo.repo mirrors-rpmforge rpmforge.repo
CentOS-Media.repo mirrors-rpmforge-extras webtatic.repo
CentOS-Vault.repo mirrors-rpmforge-testing
[email protected] [/etc/yum.repos.d]#
and what happens if you run?
- cat /etc/release
[email protected] [/etc]# cat /etc/release
CentOS release 6.5 (Final)
LSB_VERSION=base-4.0-ia32:base-4.0-noarch:core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarch
cat: /etc/lsb-release.d: Is a directory
CentOS release 6.5 (Final)
CentOS release 6.5 (Final)
cpe:/o:centos:linux:6:GA
[email protected] [/etc]#
Hmmm... It looks like the repo files are there, but it appears it isn't loading the repo.
I guess the last thing to check is yum itself. I think you can list the repos yum has loaded with a
- sudo yum repolist
Edit: I found these instructions online. They mention enabling the EPEL repository within the command itself. That might prove useful.
Node.js and npm are available from the Fedora Extra Packages for Enterprise Linux (EPEL) repository. If you haven't already done so, first enable EPEL.
To check if you have EPEL, run
yum repolist
if you don't see epel, install it via RPM (At the time of this writing, the last version is 6.8.).
First import the key:
sudo rpm --import
sudo rpm -Uvh http://download-i2.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
And then run the following command to install node and npm:
sudo yum install nodejs npm --enablerepo=epel
or if this doesn't work for you install node separately:
sudo yum install npm --enablerepo=epel
@HolyPhoenix here is the last log, i also tried ./nodebb setup to see the errors may help dunno..
[email protected] [~]# sudo yum repolist
Loaded plugins: fastestmirror, security
Loading mirror speeds from cached hostfile
module.js:333
throw err;
^
Error: Cannot find module 'nconf'
at Function.Module._resolveFilename (module.js:331:15)
at Function.Module._load (module.js:273:25)
at Module.require (module.js:357:17)
at require (module.js:373:17)
at Object.<anonymous> (/home/chanrad/nodebb/app.js:23:13)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:349:32)
at Function.Module._load (module.js:305:12)
at Function.Module.runMain (module.js:490:10)