Missing Web Channel on Docker Setup

Nobe2 years ago

Hi, i have Traccar working on Docker Setup with the latest image, but i don't see any other channel in Notifications Panel than Telegram(setup in config file) i just need to play with the Web channel but can't see it either.

Do i have to add any other configuration to be able to see it?

Image

This is my xml configuration

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
<properties>
    <entry key='config.default'>./conf/default.xml</entry>

    <entry key='database.driver'>com.mysql.cj.jdbc.Driver</entry>
    <entry key='database.url'>jdbc:mysql://mysql:3306/traccar?serverTimezone=UTC&amp;allowPublicKeyRetrieval=true&amp;useSSL=false&amp;allowMultiQueries=true&amp;autoReconnect=true&amp;useUnicode=yes&amp;characterEncoding=UTF-8&amp;sessionVariables=sql_mode=''</entry>
    <entry key='database.user'>xxxx</entry>
    <entry key='database.password'>xxxx</entry>
    <!-- telegram -->
    <entry key='notificator.types'>telegram</entry>
    <entry key='notificator.telegram.key'>token</entry>
    <entry key='notificator.telegram.chatId'>userId</entry>
</properties>
Anton Tananaev2 years ago

That's because you removed all the other channels:

<entry key='notificator.types'>telegram</entry>
Nobe2 years ago

Oh wow, i'm going to remove it and test it, i was dealing with this problem like a week... thanks Anton

Nobe2 years ago

Yes, was that, now i see:

  • Web
  • Email

Thanks a lot Anton!