[solved] Cant access 8083, Rpi2 mobel b, Wheezy

Discussions about RaZberry - Z-Wave board for Raspberry computer
Post Reply
jonator
Posts: 5
Joined: 13 Nov 2015 09:21
Location: Sweden

[solved] Cant access 8083, Rpi2 mobel b, Wheezy

Post by jonator »

Hi all I am a new RaZberry user and cant get it to work.

I have downloaded a fresh new Wheezy(as the razberry image didnt boot at all??) and I did run sudo apt-upgrade and update, rebooted, and then installed through the wget razberry.z-wave.me/install again and everything seems fine but I still cannot connect to 8083 after I have saved my new password at the 8084 page. The :8084 page have always worked fine...

"Page cannot be displayed" all the time when trying to access :8083

I have tried this thread but it doesn't help, alltough everything seems OK: viewtopic.php?f=3422&t=19799&p=48167&hi ... ect#p48167

So whats next...? Where is the log files etc I need to check in?

Thank alot

edit: When I Google this issue again I see some threads about a conflict with something called Openhab - how do I controll this further?

edit2: I have found some posts from this forum and my conclusion is for now that I will check /boot/cmdline.txt and remove console=tty1 if it is there and check in folder /opt/z-way-server and run LD_LIBRARY_PATH=libs ./z-way-server and see if there is any errors.

Using this as a notepad for use when i get home, hope its ok :=)
Last edited by jonator on 14 Nov 2015 10:31, edited 1 time in total.
jonator
Posts: 5
Joined: 13 Nov 2015 09:21
Location: Sweden

Re: Cant access 8083, Rpi2 mobel b, Wheezy

Post by jonator »

Solved! It was my network interface that needed to be corrected!

Code: Select all

sudo nano /etc/network/interfaces 
Before:

Code: Select all

auto wlan0
allow-hotplug wlan0
iface wlan0 inet loopback
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
After, and working with:

Code: Select all

auto lo
 iface lo inet loopback
 auto wlan0
 iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
And just to add how my wpa-conf file look like. This is for google and search purpose:

Code: Select all

network={
ssid="YOUR_NETWORK_NAME"
psk="YOUR_NETWORK_PASSWORD"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
auth_alg=OPEN
}

proto could be either RSN (WPA2) or WPA (WPA1).
key_mgmt could be either WPA-PSK (most probably) or WPA-EAP (enterprise networks)
pairwise could be either CCMP (WPA2) or TKIP (WPA1)
auth_alg is most probably OPEN, other options are LEAP and SHARED
Post Reply