tomcat root page is available
/360suite url returns 404 error
in tomcat/logs/localhost-{date}.log an error appears on 360Suite startup
03-May-2021 07:51:22.858 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.listenerStart Exception sending context initialized event to listener instance of class com.gbs.three60.suite.gui.Three60ContextListener
java.lang.LinkageError: loader constraint violation: when resolving method "org.slf4j.impl.StaticLoggerBinder.getLoggerFactory()Lorg/slf4j/ILoggerFactory;" the class loader 'org.apache.catalina.loader.ParallelWebappClassLoader@4a340715 (urls: ['], parents: [)'java.net.URLClassLoader@30c7da1e']) of the current class, org/slf4j/LoggerFactory, and the class loader 'java.net.URLClassLoader@30c7da1e (urls: ['], parents: [)'System']) for resolved class, org/slf4j/impl/StaticLoggerBinder, have different Class objects for the type org/slf4j/ILoggerFactory used in the signature
Product : 360Suite
You configured your tomcat to log with slf4j or other application is configured to log with slf4j but with an older version than the one embedded in 360Suite
Your class loader detect a conflict between the two versions of slf4j.
For example following this documentation.
stop tomcat
go to the directory where you put your jul-to-slf4j jar file
detect the version you selected
download the jcl-over-slf4j version matching the one you found (https://mvnrepository.com/artifact/org.slf4j/jcl-over-slf4j)
add it to the upper directory
in webapps/360.suite/WEB-INF/lib delete slf4j-api and jcl-over-slf4j jar files
start tomcat
stop tomcat
in webapps/360.suite/WEB-INF/lib delete slf4j-api and jcl-over-slf4j jar files
start tomcat
The only side effect will be that logs from SMB transfer will be less verbose.