Force uninstall addon in OH2?

I have installed mios bindning addon, and I tried to uninstall it, and now I get
"2017-03-01 07:30:33.906 [ERROR] [core.karaf.internal.FeatureInstaller] - Failed uninstalling ‘openhab-binding-mios1’: Feature named ‘openhab-binding-mios1/0.0.0’ is not installed"

I wonder if there is anyway to force an uninstall or how can I get rid this error message as it shows in the log file fromt time to time.

Same applies to me.
Any way to force uninstall or remove the warning failed to uninstall 0/0/0 bindings?

Did you use PaperUI to install and then uninstall the binding or it was manually installed (placing the *.jar file in the /usr/share/openhab2/addons folder) in the first place?

You could try the following:

Enter into Karaf console with: ssh openhab@localhost -p 8101 with password: habopen
and then:

bundle:list
or
bundle:list |grep mios
bundle:uninstall <ID>
2 Likes

Thanks, following worked:

bundle:list | grep Mios
bundle:uninstall
feature:uninstall openhab-binding-mios1
feature:install openhab-binding-mios1

3 Likes