I did a fresh manual install using Debian 12 with tomcat 10 and the full lucee-6.2.0.321.jar; the thing was up and running, but I noticed that the admin was extremely slow, each page taking anything from 10 to 30 seconds to load - this was going directly through port 8080 to tomcat, bypassing the Apache connector altogether. I noticed a fair number of error lines in /var/log/lucee/application.log with this error message:
“ERROR”,“http-nio-8080-exec-5”,“04/04/2025”,“15:32:13”,“OSGi”,"The OSGi Bundle with name [org.apache.commons.net] in version [[3.3.0,]] is not available locally [ (/var/lucee/config/server/lucee-server/bundles)] or from the update provider [ (https://update.lucee.org)].;org.osgi.framework.BundleException: The OSGi Bundle with name [org.apache.commons.net] in version [[3.3.0,]] is not available locally [ (/var/lucee/config/server/lucee-server/bundles)] or from the update provider [ (https://update.lucee.org)].
So I did this:
wget https://repo1.maven.org/maven2/commons-net/commons-net/3.3/commons-net-3.3.jar -O /var/lucee/config/server/lucee-server/bundles/org.apache.commons.net-3.3.0.jar
chown tomcat:tomcat /var/lucee/config/server/lucee-server/bundles/org.apache.commons.net-3.3.0.jar
systemctl restart tomcat10
Afterwards, the Lucee admin was running fine, no more extreme load times. I don’t know if there is some misconfiguration on my behalf, but I cannot find anything where I could have made any change to the setup that would require this bundle. There was already a org.apache.commons.commons-net-3.9.0.jar in /var/lucee/config/server/lucee-server/bundles/, but it seems that for some reason, org.apache.commons.net-3.3.0.jar is required and cannot be loaded automatically?
Is there something that I failed to do in the setup of Lucee or is there maybe some quirk in the current lucee-6.2.0.321.jar? I mean I have no issue either way, as it’s running fine after I downloaded the file from maven, but I wanted to find out what the root cause of the issue is here.
OS: Debian 12
Java Version: Java 21 Temurin
Tomcat Version: Tomcat 10
Lucee Version: 6.2.0.321