Openhab is not showing any sensor data on it's browser UI

Hi All I am new to openhab and not know how the openhab subscribe for mqtt messages. I have written code which is for ardino with ethernet shiled. I called it as Ethernet Gateway The Code is like:-

#include <SPI.h>
#include <Ethernet.h>
#include <Wire.h>
#include <PubSubClient.h>

const byte MY_ADDRESS = 42;

//Ethernet
byte mac[] = {0xB0, 0xCD, 0xAE, 0x0F, 0xDE, 0x10};
//byte mac[] = {0xB8, 0x27, 0xEB, 0x54, 0xD2, 0xB7};
//DC-4A-3E-F6-DF-BB
IPAddress ip(192, 168, 2, 61);
byte server1[] = { 192, 168, 1, 10 };
EthernetClient ethClient;

unsigned long keepalivetime = 0;
unsigned long MQTT_reconnect = 0;

int led = 12;
bool conn_ok;

void callback(char* topic, byte* payload, unsigned int length) {
Serial.println(“Callback”);
Serial.print(“TopicSerial.println(topic)”);
Serial.print(“LengthSerial.println(length)”);
Serial.print(“PayloadSerial.write(payload,length)”);
Serial.println();
}

PubSubClient client(server1, 1883, callback, ethClient);

void setup()
{
Wire.begin (MY_ADDRESS);
Serial.begin (9600);

Serial.println(“starting”);

//wait for IP address
Serial.println(Ethernet.begin(mac));

while (Ethernet.begin(mac) != 1)

{
Serial.println(“Error getting IP address via DHCP, trying again…”);
delay(3000);
}

Serial.println(“ethernet OK”);
keepalivetime = millis();
Wire.onReceive (receiveEvent);

while (client.connect(server1) != 1)
{
Serial.println(“Error connecting to MQTT”);
delay(3000);
}
MQTT_reconnect = millis();
Serial.println(“setup complete”);

}

volatile struct
{
int nodeID;
int sensorID;
unsigned long var1_usl;
float var2_float;
float var3_float; //
int var4_int;
} SensorNode;

int sendMQTT = 0;
volatile boolean haveData = false;

void loop()
{

if (haveData)
{
Serial.println ("Received Device ID = “);
Serial.println (SensorNode.sensorID);
Serial.println (” Time = ");
Serial.println (SensorNode.var1_usl);
Serial.println ("Value ");
Serial.println (SensorNode.var2_float);
sendMQTT = 1;
haveData = false;
} // end if haveData

if (sendMQTT == 1)
{

Serial.println("starting MQTT send");

conn_ok = client.connected();
if (conn_ok == 1)
{
  Serial.println("MQTT connected OK from MQTT Send");
}
else
{
  Serial.println("MQTT NOT connected OK from MQTT Send");
}

//no connection, reconnect
if (conn_ok == 0)
{
  client.disconnect();
  delay(5000);
  while (client.connect(server1) != 1)
  {
    Serial.println("Error connecting to MQTT");
    delay(4000);
  }
  Serial.println("reconnected to MQTT");
  MQTT_reconnect = millis();
}

int varnum;
char buff_topic[6];
char buff_message[12];

//send var2_float
varnum = 2;
buff_topic[6];
buff_message[7];
sprintf(buff_topic, " % 02d % 01d % 01d", SensorNode.nodeID, SensorNode.sensorID, varnum);
dtostrf (SensorNode.var2_float, 2, 1, buff_message);
client.publish(buff_topic, buff_message);
 Serial.println("PUBLISH");
 Serial.println(buff_topic);
 Serial.println(buff_message);
 Serial.println("PUBLISH");
 
 


delay(2000);

//send var3_float
varnum = 3;
sprintf(buff_topic, " % 02d % 01d % 01d", SensorNode.nodeID, SensorNode.sensorID, varnum);
dtostrf (SensorNode.var3_float, 2, 1, buff_message);
client.publish(buff_topic, buff_message);

 Serial.println("PUBLISH 1");
 Serial.println(buff_topic);
 Serial.println(buff_message);
 Serial.println("PUBLISH 1");
delay(2000);

//send var4_int, RSSI
varnum = 4;
sprintf(buff_topic, " % 02d % 01d % 01d", SensorNode.nodeID, SensorNode.sensorID, varnum);
sprintf(buff_message, " % 04d % ", SensorNode.var4_int);
client.publish(buff_topic, buff_message);


 Serial.println("PUBLISH 2");
 Serial.println(buff_topic);
 Serial.println(buff_message);
 Serial.println("PUBLISH 2");

sendMQTT = 0;

}//end if sendMQTT

//client.loop needs to run every iteration.
client.loop();

if ((millis() - MQTT_reconnect) > 60000)
{
conn_ok = client.connected();
if (conn_ok == 1)
{
Serial.println(“MQTT connected OK”);
}
else
{
Serial.println(“MQTT NOT connected OK”);
}

//no connection, reconnect
if (conn_ok == 0)
{
  client.disconnect();
  delay(5000);
  while (client.connect(server1) != 1)
  {
    Serial.println("Error connecting to MQTT");
    delay(4000);
  }
}

Serial.println("reconnected to MQTT");
MQTT_reconnect = millis();

}

} // end of loop

void receiveEvent (int howMany)
{
if (howMany < sizeof SensorNode)
return;

// read into structure
byte * p = (byte *) &SensorNode;
for (byte i = 0; i < sizeof SensorNode; i++)
*p++ = Wire.read ();

haveData = true;
}

The logs i am getting on mosquitto are as follows
Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 2’, … (4 bytes))
1488736050: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 3’, … (4 bytes))
1488736052: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 4’, … (6 bytes))
1488736060: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736060: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►
1488736075: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736075: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►
1488736077: Received PINGREQ from 7f000001ff3258bc4f2f
1488736077: Sending PINGRESP to 7f000001ff3258bc4f2f
1488736086: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 2’, … (4 bytes))
1488736088: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 3’, … (4 bytes))
1488736090: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 4’, … (6 bytes))
1488736090: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736090: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►
1488736099: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 7 2’, … (5 bytes))
1488736102: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 7 3’, … (5 bytes))
1488736104: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 7 4’, … (6 bytes))
1488736104: Received PINGREQ from ak
1488736104: Sending PINGRESP to ak
1488736105: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736105: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►
1488736107: Received PINGREQ from 7f000001ff3258bc4f2f
1488736107: Sending PINGRESP to 7f000001ff3258bc4f2f
1488736115: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 2 2’, … (5 bytes))
1488736117: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 2 3’, … (6 bytes))
1488736119: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 2 4’, … (6 bytes))
1488736120: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736120: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►
1488736125: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 2’, … (4 bytes))
1488736127: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 3’, … (4 bytes))
1488736129: Received PUBLISH from └¿:slight_smile:
░═«☼▐►±:╓► (d0, q0, r0, m0, ’ 12 6 4’, … (6 bytes))
1488736135: Received PINGREQ from └¿:slight_smile:
░═«☼▐►±:╓►
1488736135: Sending PINGRESP to └¿:slight_smile:
░═«☼▐►±:╓►

I have started openhab and it is not showing anything in browser
Openhab Config is:-
################################# MQTT Transport ######################################

Define your MQTT broker connections here for use in the MQTT Binding or MQTT

Persistence bundles. Replace with a id you choose.

URL to the MQTT broker, e.g. tcp://localhost:1883 or ssl://localhost:8883

mqtt:broker.url=tcp://localhost:1883

Optional. Client id (max 23 chars) to use when connecting to the broker.

If not provided a default one is generated.

mqtt:broker.clientId=ak

Optional. User id to authenticate with the broker.

#mqtt:broker.user=administrator

Optional. Password to authenticate with the broker.

#mqtt:broker.pwd=akshay

Optional. Set the quality of service level for sending messages to this broker.

Possible values are 0 (Deliver at most once),1 (Deliver at least once) or 2

(Deliver exactly once). Defaults to 0.

mqtt:broker.qos=0

Optional. True or false. Defines if the broker should retain the messages sent to

it. Defaults to false.

mqtt:broker.retain=true

Optional. True or false. Defines if messages are published asynchronously or

synchronously. Defaults to true.

mqtt:broker.async=true

Optional. Defines the last will and testament that is sent when this client goes offline

Format: topic:message:qos:retained

#mqtt:broker.lwt=

my openhab events logs are as follows:-

2017-03-05 23:16:55.846 [INFO ] [.o.core.internal.CoreActivator] - openHAB runtime has been started (v1.8.3).
2017-03-05 23:16:56.818 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - mDNS service has been started
2017-03-05 23:16:57.739 [INFO ] [o.o.i.s.i.DiscoveryServiceImpl] - Service Discovery initialization completed (bound to address: 127.0.0.1).
2017-03-05 23:16:57.739 [INFO ] [.io.transport.mqtt.MqttService] - MQTT Service initialization completed.
2017-03-05 23:16:57.739 [INFO ] [o.i.t.m.i.MqttBrokerConnection] - Starting MQTT broker connection 'broker’
2017-03-05 23:16:58.597 [INFO ] [penhab.io.rest.RESTApplication] - Started REST API at /rest
2017-03-05 23:17:06.430 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'akshay.sitemap’
2017-03-05 23:17:06.555 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'rrd4j.persist’
2017-03-05 23:17:06.586 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'demo.items’
2017-03-05 23:17:08.240 [INFO ] [.o.u.w.i.servlet.WebAppServlet] - Started Classic UI at /classicui/openhab.app
2017-03-05 23:17:14.958 [INFO ] [.service.AbstractActiveService] - Oceanic Refresh Service has been started
2017-03-05 23:17:15.246 [INFO ] [.o.i.t.xpl.XplTransportService] - xPL Manager source address set to clinique-openhab.openhab
2017-03-05 23:17:15.262 [INFO ] [.o.i.t.xpl.XplTransportService] - xPL transport has been started
2017-03-05 23:17:15.262 [INFO ] [.o.i.t.xpl.XplTransportService] - xPL transport configuration
2017-03-05 23:17:15.340 [INFO ] [.service.AbstractActiveService] - Sonos Refresh Service has been started
2017-03-05 23:17:15.355 [INFO ] [.service.AbstractActiveService] - HDanywhere Refresh Service has been started
2017-03-05 23:17:15.612 [INFO ] [o.harmonyhub.HarmonyHubGateway] - HarmonyHub gateway activated
2017-03-05 23:17:15.892 [ERROR] [b.b.i.BTDeviceDiscoveryService] - Error while initializing local bluetooth device.
javax.bluetooth.BluetoothStateException: BlueCove libraries not available
at com.intel.bluetooth.BlueCoveImpl.createDetectorOnWindows(BlueCoveImpl.java:963) ~[na:na]
at com.intel.bluetooth.BlueCoveImpl.detectStack(BlueCoveImpl.java:477) ~[na:na]
at com.intel.bluetooth.BlueCoveImpl.access$500(BlueCoveImpl.java:70) ~[na:na]
at com.intel.bluetooth.BlueCoveImpl$1.run(BlueCoveImpl.java:1085) ~[na:na]
at java.security.AccessController.doPrivileged(Native Method) ~[na:1.8.0_112]
at com.intel.bluetooth.BlueCoveImpl.detectStackPrivileged(BlueCoveImpl.java:1083) ~[na:na]
at com.intel.bluetooth.BlueCoveImpl.getBluetoothStack(BlueCoveImpl.java:1076) ~[na:na]
at javax.bluetooth.LocalDevice.getLocalDeviceInstance(LocalDevice.java:75) ~[na:na]
at javax.bluetooth.LocalDevice.getLocalDevice(LocalDevice.java:95) ~[na:na]
at org.openhab.binding.bluetooth.internal.BTDeviceDiscoveryService.run(BTDeviceDiscoveryService.java:113) ~[na:na]
2017-03-05 23:17:15.957 [WARN ] [io.squeezeserver.SqueezeServer] - Empty or null configuration. Ignoring.
2017-03-05 23:17:16.507 [INFO ] [.o.b.ebus.internal.EBusBinding] - Update eBus Binding configuration …
2017-03-05 23:17:16.558 [INFO ] [o.o.c.j.i.e.s.ScriptManager ] - Available engines:
2017-03-05 23:17:16.558 [INFO ] [o.o.c.j.i.e.s.ScriptManager ] - Oracle Nashorn
2017-03-05 23:17:16.574 [INFO ] [o.c.j.i.e.scriptmanager.Script] - Loading Script jsr223_demo.py
2017-03-05 23:17:16.574 [WARN ] [o.o.c.j.i.e.s.ScriptManager ] - No Engine found for File: jsr223_demo.py
2017-03-05 23:17:16.668 [INFO ] [c.internal.ModelRepositoryImpl] - Loading model 'demo.rules’
2017-03-05 23:17:17.006 [INFO ] [t.AbstractSocketChannelBinding] - The interval to retry connection setups will be set to the default value of 5
2017-03-05 23:17:17.009 [INFO ] [t.AbstractSocketChannelBinding] - The cron job to reset connections will be set to the default value of 0 0 0 * * ?
2017-03-05 23:17:17.009 [INFO ] [t.AbstractSocketChannelBinding] - The setting to queue write operation until a channel gets connected will be set to the default value of true
2017-03-05 23:17:17.009 [INFO ] [t.AbstractSocketChannelBinding] - The setting to share channels between directions will be set to the default value of true
2017-03-05 23:17:17.029 [INFO ] [t.AbstractSocketChannelBinding] - Listening for incoming connections on /0:0:0:0:0:0:0:0:25001
2017-03-05 23:17:17.029 [INFO ] [t.protocol.internal.TCPBinding] - The maximum time out for blocking write operations will be set to the default vaulue of 3000
2017-03-05 23:17:17.031 [INFO ] [.service.AbstractActiveService] - TCP Refresh Service has been started
2017-03-05 23:17:17.031 [INFO ] [t.protocol.internal.TCPBinding] - The blocking nature of read/write operations will be set to the default vaulue of false
2017-03-05 23:17:17.034 [INFO ] [t.protocol.internal.TCPBinding] - The preamble for all write operations will be set to the default vaulue of ""
2017-03-05 23:17:17.039 [INFO ] [t.protocol.internal.TCPBinding] - The postamble for all write operations will be set to the default vaulue of ""
2017-03-05 23:17:17.039 [INFO ] [t.protocol.internal.TCPBinding] - Updating states with returned values will be set to the default vaulue of true
2017-03-05 23:17:17.041 [INFO ] [t.protocol.internal.TCPBinding] - The characterset will be set to the default vaulue of ASCII
2017-03-05 23:17:17.090 [INFO ] [inding.lcn.internal.LcnBinding] - Loading LCN configuration…
2017-03-05 23:17:17.105 [INFO ] [inding.lcn.internal.LcnBinding] - LCN configuration loaded.
2017-03-05 23:17:17.105 [INFO ] [.b.l.i.LcnBindingActiveService] - LCN Refresh Service has been started
2017-03-05 23:17:17.121 [INFO ] [.service.AbstractActiveService] - RME Refresh Service has been started
2017-03-05 23:17:17.517 [INFO ] [rg.openhab.io.cv.CVApplication] - Started Cometvisu API at /services/cv
2017-03-05 23:17:17.610 [INFO ] [.b.sonos.internal.SonosBinding] - Querying the network for any other Sonos device
2017-03-05 23:17:23.090 [INFO ] [.service.AbstractActiveService] - FritzBox refresh Service has been started
2017-03-05 23:17:23.324 [INFO ] [.service.AbstractActiveService] - IRtrans Refresh Service has been started
2017-03-05 23:17:23.988 [INFO ] [.service.AbstractActiveService] - HTTP Refresh Service has been started
2017-03-05 23:17:24.035 [WARN ] [.o.p.cosm.internal.CosmService] - The Cosm API-Key is missing - please configure it in openhab.cfg
2017-03-05 23:17:24.066 [INFO ] [.p.rrd4j.internal.RRD4jService] - Removing invalid defintion component = null heartbeat = 0 min/max = 0.0/0.0 step = 0 0 archives(s) = [] 0 items(s) = []
2017-03-05 23:17:24.253 [WARN ] [o.p.g.i.GCalPersistenceService] - gcal:username must not be blank - please configure an aproppriate username in openhab.cfg
2017-03-05 23:17:24.253 [WARN ] [o.p.g.i.GCalPersistenceService] - gcal:password must not be blank - please configure an aproppriate password in openhab.cfg
2017-03-05 23:17:24.253 [WARN ] [o.p.g.i.GCalPersistenceService] - gcal:url must not be blank - please configure an aproppriate url in openhab.cfg
2017-03-05 23:17:24.285 [WARN ] [o.p.m.i.MqttPersistenceService] - mqtt-persistence:topic
2017-03-05 23:17:24.285 [WARN ] [o.p.m.i.MqttPersistenceService] - mqtt-persistence:message
2017-03-05 23:17:24.331 [INFO ] [.service.AbstractActiveService] - Sallegra Refresh Service has been started
2017-03-05 23:17:24.394 [INFO ] [.b.s.internal.SoulissActivator] - souliss binding has been started.
2017-03-05 23:17:24.409 [INFO ] [.b.s.internal.SoulissActivator] - Load parameter from file: /properties/typicals_value_bytes.properties
2017-03-05 23:17:24.432 [INFO ] [.b.s.internal.SoulissActivator] - Load parameter from file: /properties/commands_OHtoSOULISS.properties
2017-03-05 23:17:24.437 [INFO ] [.s.i.n.typicals.StateTraslator] - ok
2017-03-05 23:17:24.440 [INFO ] [.b.s.internal.SoulissActivator] - Load parameter from file: /properties/states_SOULISStoOH.properties
2017-03-05 23:17:24.440 [INFO ] [.s.i.n.typicals.StateTraslator] - ok
2017-03-05 23:17:24.440 [INFO ] [.b.s.internal.SoulissActivator] - Load parameter from file: /properties/itemsType_SOULISS.properties
2017-03-05 23:17:24.442 [INFO ] [.s.i.n.typicals.StateTraslator] - ok
2017-03-05 23:17:24.445 [INFO ] [.b.s.internal.SoulissActivator] - Load parameter from file: /properties/commands_to_states.properties
2017-03-05 23:17:24.457 [INFO ] [.s.i.n.typicals.StateTraslator] - ok
2017-03-05 23:17:24.571 [INFO ] [.service.AbstractActiveService] - VDR Monitor Service has been started
2017-03-05 23:17:24.665 [INFO ] [insteonplm.InsteonPLMActivator] - Insteon PLM binding has been started.
2017-03-05 23:17:24.914 [INFO ] [.service.AbstractActiveService] - Sonance Refresh Service has been started
2017-03-05 23:17:24.977 [INFO ] [.service.AbstractActiveService] - XBMC Refresh Service has been started
2017-03-05 23:17:25.304 [INFO ] [.b.t.internal.TellstickBinding] - Activate Thread[Component Resolve Thread (Bundle 98),10,main]
2017-03-05 23:17:25.679 [INFO ] [.z.internal.ZWaveActiveBinding] - ZWave ‘updated’ with null config
2017-03-05 23:17:25.694 [INFO ] [b.s.internal.SysteminfoBinding] - Using Sigar version 1.6.4.129
2017-03-05 23:17:25.694 [ERROR] [b.s.internal.SysteminfoBinding] - System monitor error: {}
org.hyperic.sigar.SigarException: java.lang.UnsatisfiedLinkError: org.hyperic.sigar.Sigar.getNetInterfaceList()[Ljava/lang/String;
at org.hyperic.sigar.SigarProxyCache.invoke(SigarProxyCache.java:220) ~[sigar-1.6.4.jar:na]
at com.sun.proxy.$Proxy78.getNetInterfaceList(Unknown Source) ~[na:na]
at org.openhab.binding.systeminfo.internal.SysteminfoBinding.initializeSystemMonitor(SysteminfoBinding.java:419) [bundlefile:na]
at org.openhab.binding.systeminfo.internal.SysteminfoBinding.updated(SysteminfoBinding.java:403) [bundlefile:na]
at org.eclipse.equinox.internal.cm.ManagedServiceTracker$1.run(ManagedServiceTracker.java:183) [org.eclipse.equinox.cm_1.0.400.v20120522-1841.jar:na]
at org.eclipse.equinox.internal.cm.SerializedTaskQueue$1.run(SerializedTaskQueue.java:36) [org.eclipse.equinox.cm_1.0.400.v20120522-1841.jar:na]
2017-03-05 23:17:25.726 [INFO ] [.service.AbstractActiveService] - NetworkHealth Refresh Service has been started
2017-03-05 23:17:25.741 [INFO ] [.service.AbstractActiveService] - Systeminfo Refresh Service has been started
2017-03-05 23:17:25.991 [ERROR] [.o.b.a.internal.AutelisBinding] - Host config parameter is missing
2017-03-05 23:17:26.849 [ERROR] [.o.b.e.internal.EHealthBinding] - Error connecting to serial port 'null’
org.openhab.binding.ehealth.internal.EHealthException: Serial port ‘null’ could not be found. Available ports are:
COM3
COM4

at org.openhab.binding.ehealth.protocol.SerialConnector.connect(SerialConnector.java:124) ~[na:na]
at org.openhab.binding.ehealth.internal.EHealthBinding.updated(EHealthBinding.java:136) ~[na:na]
at org.eclipse.equinox.internal.cm.ManagedServiceTracker$1.run(ManagedServiceTracker.java:183) [org.eclipse.equinox.cm_1.0.400.v20120522-1841.jar:na]
at org.eclipse.equinox.internal.cm.SerializedTaskQueue$1.run(SerializedTaskQueue.java:36) [org.eclipse.equinox.cm_1.0.400.v20120522-1841.jar:na]

2017-03-05 23:17:26.849 [INFO ] [.o.b.s.internal.SoulissBinding] - START
2017-03-05 23:17:26.849 [INFO ] [.o.b.s.i.n.udp.UDPServerThread] - Start UDPServerThread - Server in ascolto sulla porta 49447
2017-03-05 23:17:26.849 [INFO ] [b.s.i.network.typicals.Monitor] - Start MonitorThread
2017-03-05 23:17:26.849 [INFO ] [s.i.network.udp.SendDispatcher] - Start SendDispatcherThread
2017-03-05 23:17:26.849 [INFO ] [.b.s.i.n.t.RefreshSUBSCRIPTION] - Start RefreshSUBSCRIPTIONThread
2017-03-05 23:17:26.849 [INFO ] [b.s.i.n.typicals.RefreshHEALTY] - Start RefreshDBSTRUCTThread
2017-03-05 23:17:26.849 [WARN ] [o.b.i.i.Iec6205621MeterBinding] - Empty or null configuration. Ignoring.
2017-03-05 23:17:26.849 [INFO ] [.service.AbstractActiveService] - Souliss Refresh Service has been started
2017-03-05 23:17:26.864 [WARN ] [o.b.s.i.StiebelHeatPumpBinding] - Empty or null configuration. Ignoring.
2017-03-05 23:17:26.864 [INFO ] [.b.t.internal.TellstickBinding] - Called with config null
2017-03-05 23:17:26.864 [INFO ] [.b.t.internal.TellstickBinding] - Loading TelldusCore from C:/Program Files/Telldus/;C:/Program Files (x86)/Telldus/
2017-03-05 23:17:26.864 [WARN ] [.b.t.internal.TellstickBinding] - Will do a reinit of listeners, no message received for 600 seconds
2017-03-05 23:17:26.864 [INFO ] [.b.t.internal.TellstickBinding] - Listeners removed
2017-03-05 23:17:26.942 [INFO ] [.service.AbstractActiveService] - SNMP Refresh Service has been started
2017-03-05 23:17:26.942 [INFO ] [.b.k8055.internal.k8055Binding] - No config supplied - using default values
2017-03-05 23:17:27.301 [INFO ] [.service.AbstractActiveService] - Wemo Refresh Service has been started
2017-03-05 23:17:27.402 [INFO ] [.s.internal.SiteWhereActivator] - SiteWhere persistence bundle has been started.
2017-03-05 23:17:27.433 [INFO ] [.i.SiteWherePersistenceService] - About to connect using SiteWhere Agent…
2017-03-05 23:17:27.433 [INFO ] [.i.SiteWherePersistenceService] - Sending event to device with hardware id: 123-OPENHAB-234908324
2017-03-05 23:17:27.433 [INFO ] [.i.SiteWherePersistenceService] - If no device registered, using specification: 5a95f3f2-96f0-47f9-b98d-f5c081d01948
2017-03-05 23:17:27.433 [INFO ] [.i.SiteWherePersistenceService] - MQTT Host: localhost
2017-03-05 23:17:27.433 [INFO ] [.i.SiteWherePersistenceService] - MQTT Port: 1883
2017-03-05 23:17:27.433 [WARN ] [com.sitewhere.agent.Agent ] - Using default outbound SiteWhere MQTT topic: SiteWhere/input/protobuf
2017-03-05 23:17:27.433 [WARN ] [com.sitewhere.agent.Agent ] - Using default inbound SiteWhere MQTT topic: SiteWhere/system/123-OPENHAB-234908324
2017-03-05 23:17:27.433 [WARN ] [com.sitewhere.agent.Agent ] - Using default inbound command MQTT topic: SiteWhere/commands/123-OPENHAB-234908324
2017-03-05 23:17:27.652 [INFO ] [.service.AbstractActiveService] - Anel NET-PwrCtrl Service has been started
2017-03-05 23:17:27.777 [ERROR] [io.gpio.internal.GPIOActivator] - No supported operating system was found, GPIO service won’t be available
2017-03-05 23:17:27.933 [WARN ] [i.i.InfluxDBPersistenceService] - The password is missing. To specify a password configure the password parameter in openhab.cfg.
2017-03-05 23:17:29.027 [ERROR] [i.i.InfluxDBPersistenceService] - database connection failed throwing an exception
2017-03-05 23:17:29.027 [ERROR] [i.i.InfluxDBPersistenceService] - database connection error Connection refused: connect
2017-03-05 23:17:29.027 [ERROR] [i.i.InfluxDBPersistenceService] - database connection does not work for now, will retry to use the database.
2017-03-05 23:17:29.105 [ERROR] [b.k.i.connection.KNXConnection] - No IP address or serial port could be found in configuration!
2017-03-05 23:17:29.105 [WARN ] [b.k.i.connection.KNXConnection] - Inital connection to KNX bus failed!
2017-03-05 23:17:30.121 [WARN ] [.p.sense.internal.SenseService] - The Open.Sen.se API-Key is missing - please configure it in openhab.cfg
2017-03-05 23:17:30.261 [INFO ] [o.b.p.internal.PifaceActivator] - Piface binding has been started.
2017-03-05 23:17:30.386 [WARN ] [.p.m.i.MysqlPersistenceService] - The SQL database URL is missing - please configure the sql:url parameter in openhab.cfg
2017-03-05 23:17:30.433 [INFO ] [.service.AbstractActiveService] - Exec Refresh Service has been started
2017-03-05 23:17:30.526 [INFO ] [.service.AbstractActiveService] - Pulseaudio Monitor Service has been started
2017-03-05 23:17:30.542 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: IP[255.255.255.255]
2017-03-05 23:17:30.542 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: ReceivePort[9761]
2017-03-05 23:17:30.542 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: Send Port[9760]
2017-03-05 23:17:30.557 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: Register On Startup[true]
2017-03-05 23:17:30.557 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: Send Delay [100]
2017-03-05 23:17:30.557 [INFO ] [.l.internal.LightwaveRfBinding] - LightwaveBinding: Timeout for Ok Messages [500]
2017-03-05 23:17:31.525 [WARN ] [.o.b.ebus.internal.EBusBinding] - eBus connector still not started, started it yet!
2017-03-05 23:17:31.525 [INFO ] [.o.b.ebus.internal.EBusBinding] - Update eBus Binding configuration …
2017-03-05 23:17:31.540 [INFO ] [l.internal.LightwaveRfWifiLink] - Starting LightwaveRfWifiLink Connection
2017-03-05 23:17:32.071 [INFO ] [.b.l.i.LightwaveRFSenderThread] - Ok message not received for 100,!Fp
, retrying again. Retry count 2
2017-03-05 23:17:32.695 [INFO ] [.b.l.i.LightwaveRFSenderThread] - Ok message not received for 100,!F
p
, retrying again. Retry count 3
2017-03-05 23:17:33.319 [INFO ] [.b.l.i.LightwaveRFSenderThread] - Ok message not received for 100,!Fp
, retrying again. Retry count 4
2017-03-05 23:17:33.943 [INFO ] [.b.l.i.LightwaveRFSenderThread] - Ok message not received for 100,!F
p
, retrying again. Retry count 5
2017-03-05 23:17:34.567 [ERROR] [.b.l.i.LightwaveRFSenderThread] - Unable to send message 100,!F*p
after 5 attemps giving up

can anyone help me in how to show published data form mqtt broker on openhab ui???

http://docs.openhab.org/addons/bindings/mqtt1/readme.html

and take a look at the examples:

http://docs.openhab.org/addons/bindings/mqtt1/readme.html#example-inbound-configurations