Traccar server not showing live feed

nanva19899 years ago

Hello,

First of all thanks for great software, My server is started properly but am not able to see live feed,

Even i have updated my H2DB to MySql, and added devices into system.

Look on below log which is decoded version.

1600020965,A,2016/02/16,05:54:15,23.563564,87.319427,0.0,168.91,19,7,5,0,0.095,16.82 
1600020965,A,2016/02/16,05:54:45,23.563558,87.319458,0.0,171.08,20,8,5,0,0.087,18.39 
1600020965,A,2016/02/16,05:55:15,23.563558,87.319458,0.0,171.08,19,7,5,0,0.069,13.19 
1600020965,A,2016/02/16,05:55:45,23.563558,87.319458,0.0,171.08,12,7,4,0,0.043,0.052 

Please help me out..

Anton Tananaev9 years ago

Do you see messages in the history? You might be having some problem with WebSocket connection.

nanva19899 years ago

Which history, you mean log file(wrapper.log)?

Anton Tananaev9 years ago

I mean in the web interface if you select dates and request a report. Does it show anything?

nanva19899 years ago

No, even i gathered log for last one day, But UI is not showing anything?

Anton Tananaev9 years ago

What do you see in the tracker-server.log?

nanva19899 years ago
2016-02-16 00:05:04  INFO: Operating system name: Linux version: 3.13.0-77-generic architecture: amd64
2016-02-16 00:05:04  INFO: Java runtime name: OpenJDK 64-Bit Server VM vendor: Oracle Corporation version: 24.95-b01
2016-02-16 00:05:04  INFO: Memory limit heap: 1767mb non-heap: 214mb
2016-02-16 00:05:04  INFO: Character encoding: UTF-8 charset: UTF-8
2016-02-16 00:05:04  INFO: Version: 3.2-SNAPSHOT
2016-02-16 00:05:06  INFO: Starting server...
2016-02-16 00:05:57  INFO: [33D4346D] connected
2016-02-16 00:06:03 DEBUG: [33D4346D: 5002 < 27.63.214.22] HEX: 313630303032303936352c412c323031362f30322f31362c30373a30343a35342c32332e3534313730342c38372e3330323434342c31332e31382c3132352e38392c32302c31302c352c302c302e3038372c31372e38322c46200d0a313630303032303936352c412c323031362f30322f31362c30373a30353a32332c32332e3534303637362c38372e3330343335312c31362e37392c3132352e37302c32342c31312c352c302c302e3038372c31332e30312c46200d0a
2016-02-16 00:06:08 DEBUG: [33D4346D: 5002 < 27.63.214.22] HEX: 313630303032303936352c412c323031362f30322f31362c30373a30353a35332c32332e3534323431392c38372e3330353834372c31332e35312c34312e39382c31332c31302c352c302c302e3036392c31342e30372c46200d0a313630303032303936352c412c323031362f30322f31362c30373a30363a30332c32332e3534323336372c38372e33303633322c31362e33362c3132312e31302c31332c31302c352c302c302e3038372c32302e3530200d0a
2016-02-16 00:06:38 DEBUG: [33D4346D: 5002 < 27.63.214.22] HEX: 313630303032303936352c412c323031362f30322f31362c30373a30363a33332c32332e3534343130392c38372e33303830392c31382e3732392c33392e31312c31352c31302c352c302c302e3034332c342e343539200d0a
Anton Tananaev9 years ago

This protocol is not supported yet as far as I can tell. Do you have protocol documentation?

nanva19899 years ago

yes, can i share it with you?

nanva19899 years ago

<DeviceID>,<GPS Valid>,<YYYY/MM/DD>,<HH:MM:SS>,<Latitude>,<Longitude>,<Speed>,<Heading>,
0--------------- 1-------------------- 2--------------- 3----------------- 4------------- 5------------ 6------------7----------
| | | | | | |> Heading
| | | | | | |> Speed (km/h)
| | | | | |> Longitude (degrees)
| | | | |> Latitude (degrees)
| | | |> Time [GMT]
| | |> Date [GMT]
| |>GPS Valid(A/V)
|> Device ID(10 Digit)

<Network Sth>,<No. Of Satellites>,< Input Status>,<Output Status>,<Analog 1>,<Analog 2><CR><LF>
8--------------- 9-------------------- 10--------------- 11----------------- 12------------- 13--------------14------------------
| | | | | |> Analog 2 Reading
| | | | |> Analog 1Reading
| | | |> OUTPUT(Decimal Values)
| | |> INPUT(Decimal Values)
| |> No of satellites in range
|> GSM Signal Strength

Ex.
1600000001,A,2014/12/25,05:23:00,28.76098,77.56742,0.0,142,25,5,5,0,34,0.0<CR><LF>
1600000001 – Device ID
A - GPS Fix
2014/12/25 - YYYY/MM/DD
05:23:00 - HH:MM:SS
28.76098 - Latitude
77.56742 - Longitude
0.0 - Speed
142 - Heading
25 - GSM Signal Sth
5 - No. of satellites
5 - Input Status{Ststus from input7 – input 0}
[ decimal value 5 hex value 0x05 binary value 00000101]
Input7 - OFF
Input6 - OFF
Input5 - OFF
Input4 - OFF
Input3 - OFF
Input2 - ON
Input1 - OFF
Input0 - ON
For input value 130
[ decimal value 130 hex value 0x82 binary value 10000010]
Input7 - ON
Input6 - OFF
Input5 - OFF
Input4 - OFF
Input3 - OFF
Input2 - OFF
Input1 - ON
Input0 - OFF
Input7 is reserved for MAIN POWER LOST
0 - Output Status{Ststus from output7 – output 0}
[ decimal value 0 hex value 0x00 binary value 00000000]
Output7 - OFF
Output6 - OFF
Output5 - OFF
Output4 - OFF
Output3 - OFF
Output2 - OFF
Output1 - OFF
Output0 - OFF
For current design Output 0 and Output 1 are only applicable.

34 - Fuel percentage
0.0 - Analog 2 value (0-12V dc)

Anton Tananaev9 years ago

What's the device brand/model?

nanva19899 years ago

Vtracker Vt02

Anton Tananaev9 years ago

Do you have any links to the official website where I can find details about the device?

nanva19899 years ago

Sorry i cant share it. It is confidential.

Anton Tananaev9 years ago

Please send me an email to discuss implementation of this protocol if you are interested.