Team - trying to complete the Devnet Lab on IoX and stuck at this step:
https://learninglabs.cisco.com/tracks/Cisco-IOx/IoT-IOx-Intro/iot-iox-app-docker/step/9
The issue: when I issue the command:
ioxclient application install ioxapp_bjc_01 package.tar
it FAILS and I get back:
BRIACARL-M-5191:IoX_Application_with_Docker briancarlson$ ioxclient application install ioxapp_bjc_01 package.tar Currently active profile : default Command Name: application-install Error processing command : Post https://127.0.0.1:8443/iox/api/v2/hosting/apps: dial tcp 127.0.0.1:8443: getsockopt: connection refused
IS THIS AN ERROR IN THE LAB INSTRUCTIONS ? PLEASE HELP
... View more
Team - I want to install / run an MQTT broker service on the GOS of a CGR 1100. I used these steps, but got stuck, steps 1 and 2 worked, but step 3 did not work. I realize Intel Edison is slightly different from Yocto, but can it work ? What steps did I miss ? Thank You - Brian +++++++++++++++++++++++++++++++++++++++++++ https://software.intel.com/en-us/blogs/2015/02/20/building-and-running-mosquitto-mqtt-on-intel-edison Download mosquitto from mosquitto.org 1 $> wget http://mosquitto.org/files/ source /mosquitto-1.3.5. tar .gz Extract the archive 1 $> tar xzf mosquitto-1.3.5 2 $> cd mosquitto-1.3.5 Build 1 $> make WITH_SRV=no Test and install your mosquitto compilation view sourceprint? 01 # Create user mosquitto 02 $> add user mosquitto 03 04 # Test 05 $> cd test /broker 06 $> make test 07 $> cd ../../ 08 09 # Install 10 $> cp client/mosquitto_pub /usr/bin 11 $> cp client/mosquitto_sub /usr/bin 12 $> cp lib/libmosquitto.so.1 /usr/lib 13 $> cp src/mosquitto /usr/bin
... View more