Hi,
Just installed Raspbian and Emonview V2 code on a Raspberry Pi 2 Model B. I have followed the instructions in https://github.com/emoncms/emonview). I can see all of my nodes using Putty to SSH in to the Pi and run emonhub manually (so that bit is working). However I get the following when running pi@raspberrypi ~ $ sudo /etc/init.d/redis-server start
Starting redis-server: failed and if I try and use Chrome to look at the ip address (which in my case is 192.168.0.132) the browser comes up with 'This web page is unavailable'. Do I have to do anything else (other than what it says? Thoughts will as always be appreciated
Thanks Andy
Re: EmonView V2
Hello Andy, emonview is in a very early stage of development so there will be a lot of bugs and the install docs are incomplete. But the problem appears to be redis-server not starting which is a dependency. perhaps see if you can find out why redis is not starting. There may be something in /var/log/redis
Re: EmonView V2
Hi Andy, I was in fact just installing Emonview V2 yesterday as well, and came across this thread having similar issues. I was able to get it going and thought I would share a couple points in case they may be of help. My install is on a RaspberryPi B+, but I assume it's similar.
sudo /etc/init.d/emonview status
sudo /etc/init.d/feedwriter status
sudo /etc/init.d/redis-server status
Running sudo /etc/init.d/redis-server start will return a failed error if redis is already running. I was hung up on this trying to find the problem, when there wasn't any.
sudo mkdir /var/log/redis
sudo touch /var/log/redis/redis-server.log
sudo chown -R redis:redis /var/log/redis
mkdir /home/pi/data/store
Hope that helps someone. I now have Emonview running pretty solid, monitoring and logging my wood stove temperatures!
Zeke
Re: EmonView V2
The redis error got me for a while too until I found this thread: http://openenergymonitor.org/emon/node/9996
Re: EmonView V2
Yes, in fact it was that same post that tipped me off as well.. kudos to anjur!