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 :=)
[solved] Cant access 8083, Rpi2 mobel b, Wheezy
[solved] Cant access 8083, Rpi2 mobel b, Wheezy
Last edited by jonator on 14 Nov 2015 10:31, edited 1 time in total.
Re: Cant access 8083, Rpi2 mobel b, Wheezy
Solved! It was my network interface that needed to be corrected!
Before:
After, and working with:
And just to add how my wpa-conf file look like. This is for google and search purpose:
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
Code: Select all
sudo nano /etc/network/interfaces
Code: Select all
auto wlan0
allow-hotplug wlan0
iface wlan0 inet loopback
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Code: Select all
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
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