System started rule is running endless since OH2.5 update

Hey! Two days ago, I updtated my OH2.4 to OH2.5 stable. Since that update my two rules with trigger “when System started” are running endless.

Log:

2019-12-31 09:21:22.541 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:21:22.542 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:21:22.543 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:21:22.544 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:21:22.545 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:21:32.660 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:21:32.664 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:21:32.669 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:21:32.926 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:21:32.930 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:22:04.340 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:22:04.344 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:22:04.348 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:22:04.607 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:22:04.608 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:22:45.006 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:22:45.012 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:22:45.019 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:22:46.012 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:22:46.016 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:23:38.935 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:23:38.936 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:23:38.937 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:23:39.793 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:23:39.795 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:24:03.632 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:24:03.633 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF
2019-12-31 09:24:07.672 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:24:07.674 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:24:07.676 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:24:21.362 [INFO ] [smarthome.model.script.heating.rules] - Heating system started
2019-12-31 09:24:21.365 [INFO ] [smarthome.model.script.heating.rules] - Heating NORMAL: Bad 1h heiß - ABBRUCH
2019-12-31 09:24:21.367 [INFO ] [smarthome.model.script.heating.rules] - Heating system Bad1hHot OFF
2019-12-31 09:24:21.604 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState init
2019-12-31 09:24:21.612 [INFO ] [e.smarthome.model.script.astro.rules] - Virtual_NightState OFF

astro.rules

"OpenHAB system started - astro"
when
    System started
then
    createTimer(now.plusSeconds(180)) [|
        logInfo(logfilename, "Virtual_NightState init")
        if (now.isAfter((Astro_SunsetTime.state as DateTimeType).zonedDateTime.toInstant.toEpochMilli) ||
            now.isBefore((Astro_SunriseTime.state as DateTimeType).zonedDateTime.toInstant.toEpochMilli)
        ) {
            Virtual_NightState.postUpdate(ON)
            logInfo(logfilename, "Virtual_NightState ON")
        } else {
            Virtual_NightState.postUpdate(OFF)
            logInfo(logfilename, "Virtual_NightState OFF")
        }
    ]
end

heating.rules

rule "Initialize uninitialized Heating Items"
when
    System started
then
    createTimer(now.plusSeconds(180)) [ |
        logInfo(logfilename, "Heating system started")
        if (Astro_SeasonName.state == "SUMMER" || Astro_SeasonName.state == "SPRING") {
            Heating_Mode.postUpdate("OFF_SUMMER")
            logInfo(logfilename, "Heating system OFF SUMMER")
        }
        if (Heating_Mode.state == NULL) {
            Heating_Mode.postUpdate("NORMAL")
            logInfo(logfilename, "Heating system NORMAL")
        }
        //G_Heating_Normal.members.filter[item | item.state == NULL].forEach[item | item.sendCommand(19.0)]
		Heating_Bad1hHot.sendCommand(OFF)
        logInfo(logfilename, "Heating system Bad1hHot OFF")
    ]
end

The rules file is not touched since yesterday, so i dont know why its running all time…

ls -l /etc/openhab2/rules/
total 96
-rw-r--r-- 1 openhab openhab  2984 Dec 30 22:24 astro.rules
-rw-rw-r-- 1 openhab openhab  8199 Dec 10 20:30 batterie.rules
-rw-r--r-- 1 openhab openhab  4959 Dec 29 23:21 blitzwolf.rules
-rw-rw-r-- 1 openhab openhab   783 Dec 29 12:40 christmastree.rules
-rw-r--r-- 1 openhab openhab   940 Nov 27 13:13 exec.rules
-rw-rw-r-- 1 openhab openhab 16761 Dec 30 22:27 heating.rules
-rw-rw-r-- 1 openhab openhab  1396 Dec 15 13:32 lingling.rules
-rw-r--r-- 1 openhab openhab   368 Oct 24 12:44 readme.txt
-rw-rw-r-- 1 openhab openhab 32568 Dec 29 23:20 sonoff.rules
-rw-rw-r-- 1 openhab openhab  2740 Dec 12 14:38 xiaomi.rules

Any idea why the rule is fired multiple times?

Constant restart of bindings ? Check addons.config/addons.cfg for bad addons.
And search the forum before posting please, there’s already multiple threads on this.

1 Like

No the astro and zwave binding I’m using for these rules are running well in version 2.5.
I already used the search, but i dont find any solution. Before the update to OH2.5 my rules are working fine, now only the “System started” rules are freaking out, anything else is working fine after the update.

openhab> bundle:list | grep "stro"
234 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Astro Binding
openhab> bundle:list | grep "ave"                                                                
246 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: ZWave Binding

If you have restdocs installed, for instance, its location moved and the system is trying to load an invalid addons causing all addons to reload every minute. Your response indicates you did not search the forum well.

But for some people this problem has been seen to be about addons.cfg attempting to load nonsense bindings etc., nothing to do with the ones that still work.

Actually usually in addons.config file located in userdata. Restdocs got moved and yahooweather is now invalid.

addons.cfg

cat /var/lib/openhab2/config/org/openhab/addons.config 
:org.apache.felix.configadmin.revision:=L"2"
binding="serial1,mqtt,mihome,astro,ntp,miio,openweathermap,exec,expire1,zwave"
misc="openhabcloud"
package="standard"
persistence="mapdb,influxdb"
service.pid="org.openhab.addons"
transformation="map,jsonpath"
ui="basic,paper,habpanel,homebuilder,habmin"

Here is my bundle list from the console, where can i see which one is the bad addon?

openhab> bundle:list
START LEVEL 100 , List Threshold: 50
 ID │ State  │ Lvl │ Version                 │ Name
────┼────────┼─────┼─────────────────────────┼───────────────────────────────────────────────────
 19 │ Active │  80 │ 5.3.1.201602281253      │ OSGi JAX-RS Connector
 20 │ Active │  80 │ 2.8.2.v20180104-1110    │ Gson: Google Json Library for Java
 21 │ Active │  80 │ 18.0.0                  │ Guava: Google Core Libraries for Java
 22 │ Active │  80 │ 27.1.0.jre              │ Guava: Google Core Libraries for Java
 23 │ Active │  80 │ 1.0.1                   │ Guava InternalFutureFailureAccess and InternalFut
 24 │ Active │  80 │ 3.0.0.v201312141243     │ Google Guice (No AOP)
 25 │ Active │  80 │ 4.8.35.v20190528-1517   │ ClassGraph
 26 │ Active │  80 │ 3.18.1.GA               │ Javassist
 29 │ Active │  80 │ 3.5.5                   │ JmDNS
 31 │ Active │  80 │ 1.0.0                   │ Units of Measurement API
 33 │ Active │  80 │ 1.1.0.Final             │ Bean Validation API
 35 │ Active │  80 │ 2.0.1                   │ javax.ws.rs-api
 36 │ Active │  80 │ 2.9.2                   │ Joda-Time
 37 │ Active │  80 │ 0.5.8                   │ Jollyday
 38 │ Active │  80 │ 3.2.0.v201101311130     │ ANTLR Runtime
 40 │ Active │  80 │ 1.1                     │ Commons Exec
 41 │ Active │  80 │ 2.2.0                   │ Commons IO
 42 │ Active │  80 │ 2.6                     │ Commons Lang
 51 │ Active │  80 │ 4.2.7                   │ Apache Karaf :: OSGi Services :: Event
 66 │ Active │  80 │ 1.4.7.1                 │ Apache ServiceMix :: Bundles :: xstream
 69 │ Active │  80 │ 4.14.0                  │ Apache XBean OSGI Bundle Utilities
 70 │ Active │  80 │ 4.14.0                  │ Apache XBean :: Classpath Resource Finder
 71 │ Active │  80 │ 2.12.0.v20160420-0247   │ EMF Common
 72 │ Active │  80 │ 2.12.0.v20160420-0247   │ EMF Ecore
 73 │ Active │  80 │ 2.11.0.v20160420-0247   │ EMF Change Model
 74 │ Active │  80 │ 2.12.0.v20160420-0247   │ EMF XML/XMI Persistence
 75 │ Active │  80 │ 3.10.400.v20190516-1504 │ Common Eclipse Runtime
104 │ Active │  80 │ 0.8.0.v20190822-0801    │ org.eclipse.lsp4j
105 │ Active │  80 │ 0.8.0.v20190822-0801    │ org.eclipse.lsp4j.jsonrpc
106 │ Active │  80 │ 2.19.0.v20190902-0728   │ Xtend Runtime Library
107 │ Active │  80 │ 2.19.0.v20190902-0728   │ Xtend Macro Interfaces
108 │ Active │  80 │ 2.19.0.v20190902-0737   │ Xtext
109 │ Active │  80 │ 2.19.0.v20190902-0952   │ Xtext Common Types
110 │ Active │  80 │ 2.19.0.v20190902-0737   │ Xtext IDE Core
111 │ Active │  80 │ 2.19.0.v20190902-0737   │ Xtext Utility
112 │ Active │  80 │ 2.19.0.v20190902-0952   │ Xbase Model
113 │ Active │  80 │ 2.19.0.v20190902-0952   │ Xbase Generic IDE Services
114 │ Active │  80 │ 2.19.0.v20190902-0728   │ Xbase Runtime Library
129 │ Active │  80 │ 1.9.6                   │ MIME streaming extension
131 │ Active │  80 │ 7.1.0                   │ org.objectweb.asm.commons
132 │ Active │  80 │ 7.1.0                   │ org.objectweb.asm.tree
133 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Core
134 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Audio
135 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: OAuth2Client
136 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Binding XML
137 │ Active │  90 │ 2.5.0                   │ openHAB Core :: Bundles :: Boot
138 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration Core
139 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration Discovery
140 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration mDNS Dis
141 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration Dispatch
142 │ Active │  75 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration XML
143 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Ephemeris
144 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: ID
145 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Console
146 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Console for OSGi runti
147 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: HTTP Interface
149 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Monitor
150 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Network I/O
151 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: REST Interface
152 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Audio REST Interface
153 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: REST Interface :: Core
154 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: REST mDNS Announcer
155 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: REST JAX-RS Optimizati
156 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Sitemap REST Interface
157 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: SSE Interface
158 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Voice REST Interface
159 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: mDNS Service
160 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Karaf Integration
161 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Core
162 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Items
163 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Item IDE
164 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Items Runtime
165 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Language Server
166 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Persistence
167 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Persistence IDE
168 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Persistence Runt
169 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Rules
170 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Rule IDE
171 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Rules Runtime
172 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Script
173 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Script IDE
174 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Script Runtime
175 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Sitemap
176 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Sitemap IDE
177 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Sitemap Runtime
178 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Thing
179 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Thing IDE
180 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Model Thing Runtime
181 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Persistence
182 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Scheduler Service
183 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Semantics
184 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: JSON Storage
185 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Thing
186 │ Active │  75 │ 2.5.0                   │ openHAB Core :: Bundles :: Thing XML
187 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Transformation Service
188 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: UI
189 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: UI Icon Support
190 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Voice
191 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: Dashboard UI
200 │ Active │  80 │ 1.4.0                   │ ThreeTen-Extra
201 │ Active │  80 │ 1.0.3                   │ Units of Measurement Common Library
202 │ Active │  80 │ 1.0.10                  │ Units of Measurement Implementation for Java SE
203 │ Active │  80 │ 4.1.42.Final            │ Netty/Codec
204 │ Active │  80 │ 4.1.42.Final            │ Netty/Resolver
205 │ Active │  80 │ 4.1.42.Final            │ Netty/Codec/HTTP
206 │ Active │  80 │ 1.4.0                   │ javax.xml.soap API
207 │ Active │  80 │ 4.1.42.Final            │ Netty/Transport
208 │ Active │  80 │ 4.1.42.Final            │ Netty/Handler
209 │ Active │  80 │ 4.1.42.Final            │ Netty/Common
210 │ Active │  80 │ 4.1.42.Final            │ Netty/Buffer
211 │ Active │  80 │ 2.5.0.201912290627      │ openHAB Add-ons :: Bundles :: IpCamera Binding
214 │ Active │  80 │ 2.20                    │ Dagger
215 │ Active │  80 │ 1.1.2                   │ hivemq-mqtt-client
216 │ Active │  80 │ 3.15.0.OH2              │ nrjavaserial
217 │ Active │  80 │ 4.1.42.Final            │ Netty/Transport/Native/Epoll
218 │ Active │  80 │ 4.1.42.Final            │ Netty/Transport/Native/Unix/Common
219 │ Active │  80 │ 2.2.5                   │ rxjava
220 │ Active │  80 │ 1.0.0                   │ IO.Socket Engine Client
221 │ Active │  80 │ 1.0.0                   │ IO.Socket Socket Client
222 │ Active │  80 │ 1.9.2                   │ Jackson JSON processor
223 │ Active │  80 │ 1.9.2                   │ Data mapper for Jackson JSON processor
224 │ Active │  80 │ 20180813.0.0            │ JSON in Java
225 │ Active │  80 │ 1.10.0                  │ Apache Commons Codec
226 │ Active │  80 │ 3.2.1                   │ Commons Collections
227 │ Active │  80 │ 3.3.0                   │ Commons Net
228 │ Active │  80 │ 4.2.3                   │ Apache HttpClient OSGi bundle
229 │ Active │  80 │ 4.2.3                   │ Apache HttpCore OSGi bundle
230 │ Active │  80 │ 3.1.0.7                 │ Apache ServiceMix :: Bundles :: commons-httpclient
231 │ Active │  80 │ 3.8.1.1                 │ Apache ServiceMix :: Bundles :: okhttp
232 │ Active │  80 │ 1.13.0.1                │ Apache ServiceMix :: Bundles :: okio
233 │ Active │  80 │ 2.1.2                   │ Java Concurrency Tools Core Library
234 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Astro Binding
235 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Exec Binding
236 │ Active │  80 │ 1.14.0                  │ openHAB Expire Binding
237 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Xiaomi Mi Smart Hom
238 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Xiaomi Mi IO Binding
239 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: MQTT Broker Binding
240 │ Active │  81 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: MQTT Things and Cha
241 │ Active │  82 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: MQTT HomeAssistant
242 │ Active │  82 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: MQTT Homie Conventi
243 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: NTP Binding
244 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: OpenWeatherMap Bind
245 │ Active │  80 │ 1.14.0                  │ openHAB Serial Binding
246 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: ZWave Binding
247 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: 1.x Compatibility Layer
248 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration USB-Seri
249 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration USB-Seri
250 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Configuration Serial
251 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: MQTT Transport
252 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Serial Transport
253 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Serial Transport for R
254 │ Active │  80 │ 2.5.0                   │ openHAB Core :: Bundles :: Serial Transport for R
255 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: IO :: Java Sound Su
256 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: IO :: openHAB Cloud
257 │ Active │  80 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: IO :: Web Audio Sup
258 │ Active │  80 │ 1.14.0                  │ openHAB InfluxDB Persistence bundle
259 │ Active │  80 │ 1.14.0                  │ openHAB MapDB Persistence Bundle
260 │ Active │  75 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Transformation Serv
261 │ Active │  75 │ 2.5.0                   │ openHAB Add-ons :: Bundles :: Transformation Serv
262 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: Basic UI
263 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: HABmin UI
264 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: HomeBuilder UI
265 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: Icon Set :: Classic
266 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: Paper UI
267 │ Active │  80 │ 2.5.0                   │ openHAB UI :: Bundles :: HABPanel UI
268 │ Active │  80 │ 1.0.2                   │ reactive-streams

In /etc/openhab2/services/addons.cfg no line is active, all commented out.
I have installed the IPCamera binding manually with all required packages, maybe one of this could be my problem?

ls -l /usr/share/openhab2/addons/
total 10252
-rw-r--r-- 1 openhab openhab      70 Dec 15 23:56 README
-rw-rw-r-- 1 openhab openhab   46111 Jul 30 22:05 javax.xml.soap-api-1.4.0.jar
-rw-rw-r-- 1 openhab openhab  277351 Dec  7 22:35 netty-buffer-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab  318187 Dec  7 22:35 netty-codec-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab  594388 Dec  7 22:41 netty-codec-http-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab  603879 Dec  7 22:35 netty-common-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab  436951 Dec  7 22:35 netty-handler-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab   32843 Dec  7 22:35 netty-resolver-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab  473465 Dec  7 22:35 netty-transport-4.1.42.Final.jar
-rw-rw-r-- 1 openhab openhab 7691933 Dec 29 17:27 org.openhab.binding.ipcamera-2.5.0-SNAPSHOT.jar

Is there any logfile where i can see which addon is not found or loaded correctly?

Most people find the issue in addons.config which is in the userdata folder, I believe. Since OH cannot load the invalid addon it would not appear in Karaf.Any of those manually installed v2 addons could cause issues too, especially if they have not been updated for version 2.5.