[core.karaf.internal.FeatureInstaller] - Failed installing

I have noticed that the following error is being reported approx every 1 minute

[core.karaf.internal.FeatureInstaller] - Failed installing 'openhab-binding-weather, openhab-transformation-RegEx, openhab-transformation-Exec, openhab-transformation-Javascript'

I have read that this can be fixed it by removing them from /var/lib/openhab2/config/org/openhab/addons.config, however in doing this this appears to uninstall the transformations. Installing them again - via PaperUI puts them back into the config file and the error still persisits.

I am running openHAB 2.5.0~S1496-1 (Build #1496)

Any suggestions greatly welcomed. Thanks.

I have a similar problem. I recently moved my OpenHAB2 system from Windows to Raspberry Pi (Jessie). After a few bumps mainly due to Java I had it working 100% for about 2 weeks. I then wanted to try clearing cache and logs in the same manner I did under Windows - a serious mistake. OH2 would run but no logs were available via openhab-cli showlogs. Out of desperation I uninstalled OH2 and reinstalled. Now I get [ERROR] [core.karaf.internal.FeatureInstaller] - Failed installing ‘openhab-binding-wemo1, openhab-binding-mailcontrol, openhab-binding-http’: Error restarting bundles:. At times I also get similar referring to various system bindings. I have been successfull in getting OH2 to run again but it’s clumpsy, and won’t work on auto startup after a power fail.

Here’show I uninstalled:
sudo systemctl stop openhab2.service
sudo apt-get purge openhab2*
sudo rm /etc/apt/sources.list.d/openhab2.list

Here’s how I Reinstalled:
wget -qO - ‘https://bintray.com/user/downloadSubjectPublicKey?username=openhab’ | sudo apt-key add -
sudo apt-get install apt-transport-https
echo ‘deb https://dl.bintray.com/openhab/apt-repo2 stable main’ | sudo tee /etc/apt/sources.list.d/openhab2.list
sudo apt-get update
sudo apt-get install openhab2
sudo apt-get install openhab2-addons
Copy from Windows C:\• SYSTEM ADD ONs\OpenHAB-2.4.0\addons to Raspberry Pi /home/pi/Downloads using WinSCP Windows application
Copy from Windows C:\• SYSTEM ADD ONs\OpenHAB-2.4.0\conf to Raspberry Pi /home/pi/Downloads using WinSCP Windows application
sudo rm -r /etc/openhab2/*
sudo cp -r /home/pi/Downloads/conf/* /etc/openhab2
sudo cp /home/pi/Downloads/addons/* /usr/share/openhab2/addons
ls -al /etc/openhab2/ /usr/share/openhab2/addons/
sudo chown -R openhab:openhab /usr/share/openhab2/addons/
sudo systemctl start openhab2.service
sudo systemctl status openhab2.service
sudo systemctl daemon-reload
sudo systemctl enable openhab2.service
openhab-cli showlogs

This is the only way I have found to get OH2 again:
ls -al /var/lib/openhab2/config/org/openhab/
sudo rm -r /var/lib/openhab2/config/org/openhab/*
sudo rm -r /var/lib/openhab2/cache/*
sudo rm -r /var/lib/openhab2/tmp/*
sudo reboot
openhab-cli showlogs

This does not work:
sudo rm -r /var/lib/openhab2/config/org/openhab/*
sudo reboot
openhab-cli showlogs

This does not work
sudo openhab-cli stop
sudo openhab-cli start –debug

I originally thought this is a permission issue somewhere.

Help will be appreciated…bob