Giter Site home page Giter Site logo

Comments (14)

nataliiakel avatar nataliiakel commented on May 24, 2024

@gitlab-pano Pls provide the details of your script and the env variables? Also, what JRS version do you use?

from js-docker.

 avatar commented on May 24, 2024

I am using your Docker container, so presumably the JRS version is controlled by that.

DB_USER=username
DB_PASSWORD=dbpswrd
DB_HOST=jasper6.redacted.us-west-2.rds.amazonaws.com
DB_PORT=5432
DB_NAME=JasperReports
JRS_DBCONFIG_REGEN=False
JRS_HTTPS_ONLY=False

Volume: /path/local/jasper:/usr/local/tomcat/webapps/jasperserver-pro

from js-docker.

 avatar commented on May 24, 2024

I am using the following resource file:
TIB_js-jrs_6.3.2_bin.zip

And this is my dockerfile:

# Copyright (c) 2016. TIBCO Software Inc.
# This file is subject to the license terms contained
# in the license file that is distributed with this file.
# version: 6.3.0-v1.0.4
FROM tomcat:8.0-jre8

# Copy jasperreports-server-<ver> zip file from resources dir.
# Build will fail if file not present.
COPY resources/TIB_js-jrs*zip /tmp/jasperserver.zip

RUN apt-get update && apt-get install -y postgresql-client unzip xmlstarlet && \
    rm -rf /var/lib/apt/lists/* && \
    unzip /tmp/jasperserver.zip -d /usr/src/ && \
    mv /usr/src/jasperreports-server-* /usr/src/jasperreports-server && \
    mkdir -p /usr/local/share/jasperreports-pro/license && \
    rm -rf /tmp/*

# Extract phantomjs, move to /usr/local/share/phantomjs, link to /usr/local/bin.
# Comment out if phantomjs not required.
RUN wget \
    "https://bitbucket.org/ariya/phantomjs/downloads/\
phantomjs-2.1.1-linux-x86_64.tar.bz2" \
    -O /tmp/phantomjs.tar.bz2 --no-verbose && \
    tar -xjf /tmp/phantomjs.tar.bz2 -C /tmp && \
    rm -f /tmp/phantomjs.tar.bz2 && \
    mv /tmp/phantomjs*linux-x86_64 /usr/local/share/phantomjs && \
    ln -sf /usr/local/share/phantomjs/bin/phantomjs /usr/local/bin && \
    rm -rf /tmp/*
# In case you wish to download from a different location you can manually
# download the archive and copy from resources/ at build time. Note that you
# also # need to comment out the preceding RUN command
#COPY resources/phantomjs*bz2 /tmp/phantomjs.tar.bz2
#RUN tar -xjf /tmp/phantomjs.tar.bz2 -C /tmp && \
#    rm -f /tmp/phantomjs.tar.bz2 && \
#    mv /tmp/phantomjs*linux-x86_64 /usr/local/share/phantomjs && \
#    ln -sf /usr/local/share/phantomjs/bin/phantomjs /usr/local/bin && \
#    rm -rf /tmp/*

# Set default environment options.
ENV CATALINA_OPTS="${JAVA_OPTIONS:--Xmx2g -XX:+UseParNewGC \
    -XX:+UseConcMarkSweepGC} \
    -Djs.license.directory=${JRS_LICENSE:-/usr/local/share/jasperreports-pro/license}"

# Configure tomcat for SSL (optional). Uncomment ENV and RUN to enable generation of
# self-signed certificate and to set up JasperReports Server to use HTTPS only.
#
#ENV DN_HOSTNAME=${DN_HOSTNAME:-jasper.panosoft.com} \
#    KS_PASSWORD=${KS_PASSWORD:-redacted} \
#    JRS_HTTPS_ONLY=${JRS_HTTPS_ONLY:-true} \
#    HTTPS_PORT=${HTTPS_PORT:-8443}
#
#RUN keytool -genkey -alias self_signed -dname "CN=${DN_HOSTNAME}" \
#        -keyalg RSA -storepass "${KS_PASSWORD}" \
#        -keypass "${KS_PASSWORD}" \
#        -keystore /root/.keystore && \
#    xmlstarlet ed --inplace --subnode "/Server/Service" --type elem \
#        -n Connector -v "" --var connector-ssl '$prev' \
#    --insert '$connector-ssl' --type attr -n port -v "${HTTPS_PORT:-8443}" \
#    --insert '$connector-ssl' --type attr -n protocol -v \
#        "org.apache.coyote.http11.Http11NioProtocol" \
#    --insert '$connector-ssl' --type attr -n maxThreads -v "150" \
#    --insert '$connector-ssl' --type attr -n SSLEnabled -v "true" \
#    --insert '$connector-ssl' --type attr -n scheme -v "https" \
#    --insert '$connector-ssl' --type attr -n secure -v "true" \
#    --insert '$connector-ssl' --type attr -n clientAuth -v "false" \
#    --insert '$connector-ssl' --type attr -n sslProtocol -v "TLS" \
#    --insert '$connector-ssl' --type attr -n keystorePass \
#        -v "${KS_PASSWORD}"\
#    --insert '$connector-ssl' --type attr -n keystoreFile \
#        -v "/root/.keystore" \
#    ${CATALINA_HOME}/conf/server.xml

# Expose ports. Note that you must do one of the following:
# map them to local ports at container runtime via "-p 8080:8080 -p 8443:8443"
# or use dynamic ports.
EXPOSE ${HTTP_PORT:-8080} ${HTTPS_PORT:-8443}

COPY tomcat-users.xml /usr/local/tomcat/conf/tomcat-users.xml
COPY scripts/entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]

# Default action executed by entrypoint script.
CMD ["run"]

from js-docker.

NicoTexas avatar NicoTexas commented on May 24, 2024

Are you using docker compose to start your Postgres DB?

from js-docker.

 avatar commented on May 24, 2024

from js-docker.

 avatar commented on May 24, 2024

This is my docker-compose.yml

version: '2'
services:
  Jasper6:
    image: gitlab.domain.com:5500/service_apps/jasperserver6:master-2805
    environment:
      DB_USER: xxxxxxx
      DB_PASSWORD: xxxxxxx
      DB_HOST: jasper6.xxxxxxx.us-west-1.rds.amazonaws.com
      DB_NAME: JasperReports
      JRS_DBCONFIG_REGEN: 'False'
      JRS_HTTPS_ONLY: 'False'
      DB_PORT: '5432'
    volumes:
    - /efs/data/jasper/customization:/usr/local/share/jasperreports-pro/customization
    - /efs/data/jasper/license:/usr/local/share/jasperreports-pro/license
    ports:
    - 8080:8080/tcp
    - 8443:8443/tcp

from js-docker.

 avatar commented on May 24, 2024

It appears that there is a problem with the initial database setup. I have created a blank database, but after the build and deployment it is still empty. I have verified that the database is accessible from inside the container. I have also verified that the username and password are correct.

from js-docker.

 avatar commented on May 24, 2024

My logs now:
`PostgreSQL accepting connections
Unable to locate tools.jar. Expected to find it in /usr/lib/jvm/java-8-openjdk-amd64/lib/tools.jar
Buildfile: /usr/src/jasperreports-server/buildomatic/build.xml
[echo] Filtering properties (cleaning out blank spaces)
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] Tomcat DBCP Factory: com.jaspersoft.jasperserver.tomcat.jndi.JSCommonsBasicDataSourceFactory
[echo] creating /usr/src/jasperreports-server/buildomatic/build_conf/default
[delete] Deleting directory /usr/src/jasperreports-server/buildomatic/build_conf/default
[mkdir] Created dir: /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[echo] chkAndSetLocaleDbSettings: dbType is postgresql
[echo] chkAndSetLocaleDbSettings: db.set.lc_collate and db.set.lc_ctype are NOT both set
[echo] chkAndSetLocaleDbSettings: parse: scripts.properties for db commands
[copy] Copying 35 files to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default/webapp/WEB-INF
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] using settings file: /usr/src/jasperreports-server/buildomatic/build_conf/default/maven_settings.xml

init-source-paths:
[echo]
[echo] Property values (dev.xml:init-source-paths):
[echo] Source Paths:
[echo] js-path = ${js-base-path}
[echo] js-pro-path = ${js-pro-base-path}
[echo] Other Paths:
[echo] maven-localrepo-path = /root/.m2/repository
[echo]
[echo]

deploy-webapp-datasource-configs:
[echo]
[echo] Property values (in app-server.xml: deploy-webapp):
[echo] jsEdition = ${jsEdition}
[echo] warSourceDir = ${warSourceDir}
[echo] warTargetDir = /usr/local/tomcat/webapps/jasperserver-pro
[echo] webAppName = jasperserver-pro
[echo] webAppNameCE = jasperserver
[echo] webAppNamePro = jasperserver-pro
[echo] webAppNameSrc = ${webAppNameSrc}
[echo] webAppNameDel = ${webAppNameDel}
[echo] warTargetDirDel = ${warTargetDirDel}
[copy] Copying 4 files to /usr/local/tomcat/webapps/jasperserver-pro

BUILD SUCCESSFUL
Total time: 0 seconds
Unable to locate tools.jar. Expected to find it in /usr/lib/jvm/java-8-openjdk-amd64/lib/tools.jar
Buildfile: /usr/src/jasperreports-server/buildomatic/build.xml
[echo] Filtering properties (cleaning out blank spaces)
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] Tomcat DBCP Factory: com.jaspersoft.jasperserver.tomcat.jndi.JSCommonsBasicDataSourceFactory
[echo] chkAndSetLocaleDbSettings: dbType is postgresql
[echo] chkAndSetLocaleDbSettings: db.set.lc_collate and db.set.lc_ctype are NOT both set
[echo] chkAndSetLocaleDbSettings: parse: scripts.properties for db commands
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] using settings file: /usr/src/jasperreports-server/buildomatic/build_conf/default/maven_settings.xml

deploy-jdbc-jar:
[echo] Copy JDBC drivers to the app-server
[echo] First copy jars
[echo] FROM the conf_source/db/app-srv-jdbc-drivers folder
[echo] TO the folder /usr/local/tomcat/lib
[echo] About to copy JS repository JDBC driver (if it exists):
[echo] Copy jdbc driver from: /usr/src/jasperreports-server/buildomatic/conf_source/db/postgresql/jdbc/postgresql-9.2-1002.jdbc4.jar
[echo] Copy jdbc driver to: /usr/local/tomcat/lib
[copy] Copying 1 file to /usr/local/tomcat/lib
[copy] Copying /usr/src/jasperreports-server/buildomatic/conf_source/db/postgresql/jdbc/postgresql-9.2-1002.jdbc4.jar to /usr/local/tomcat/lib/postgresql-9.2-1002.jdbc4.jar

BUILD SUCCESSFUL
Total time: 0 seconds
Unable to locate tools.jar. Expected to find it in /usr/lib/jvm/java-8-openjdk-amd64/lib/tools.jar
Buildfile: /usr/src/jasperreports-server/buildomatic/build.xml
[echo] Filtering properties (cleaning out blank spaces)
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] Tomcat DBCP Factory: com.jaspersoft.jasperserver.tomcat.jndi.JSCommonsBasicDataSourceFactory
[echo] creating /usr/src/jasperreports-server/buildomatic/build_conf/default
[delete] Deleting directory /usr/src/jasperreports-server/buildomatic/build_conf/default
[mkdir] Created dir: /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default
[echo] chkAndSetLocaleDbSettings: dbType is postgresql
[echo] chkAndSetLocaleDbSettings: db.set.lc_collate and db.set.lc_ctype are NOT both set
[echo] chkAndSetLocaleDbSettings: parse: scripts.properties for db commands
[copy] Copying 35 files to /usr/src/jasperreports-server/buildomatic/build_conf/default
[copy] Copying 1 file to /usr/src/jasperreports-server/buildomatic/build_conf/default/webapp/WEB-INF
[echo] chkIfPackageManagedTomcat: check if package managed tomcat
[echo] using settings file: /usr/src/jasperreports-server/buildomatic/build_conf/default/maven_settings.xml

deploy-jdbc-jar:
[echo] Copy JDBC drivers to the app-server
[echo] First copy jars
[echo] FROM the conf_source/db/app-srv-jdbc-drivers folder
[echo] TO the folder /usr/local/tomcat/lib
[echo] About to copy JS repository JDBC driver (if it exists):
[echo] Copy jdbc driver from: /usr/src/jasperreports-server/buildomatic/conf_source/db/postgresql/jdbc/postgresql-9.2-1002.jdbc4.jar
[echo] Copy jdbc driver to: /usr/local/tomcat/lib
[copy] Copying 1 file to /usr/local/tomcat/lib
[copy] Copying /usr/src/jasperreports-server/buildomatic/conf_source/db/postgresql/jdbc/postgresql-9.2-1002.jdbc4.jar to /usr/local/tomcat/lib/postgresql-9.2-1002.jdbc4.jar

BUILD SUCCESSFUL
Total time: 0 seconds
29-Aug-2017 19:54:16.679 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server version: Apache Tomcat/8.0.45
29-Aug-2017 19:54:16.681 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server built: Jun 26 2017 20:06:07 UTC
29-Aug-2017 19:54:16.681 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Server number: 8.0.45.0
29-Aug-2017 19:54:16.682 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Name: Linux
29-Aug-2017 19:54:16.682 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log OS Version: 3.13.0-96-generic
29-Aug-2017 19:54:16.682 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Architecture: amd64
29-Aug-2017 19:54:16.682 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Java Home: /usr/lib/jvm/java-8-openjdk-amd64/jre
29-Aug-2017 19:54:16.682 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Version: 1.8.0_141-8u141-b15-1~deb9u1-b15
29-Aug-2017 19:54:16.683 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log JVM Vendor: Oracle Corporation
29-Aug-2017 19:54:16.683 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_BASE: /usr/local/tomcat
29-Aug-2017 19:54:16.683 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log CATALINA_HOME: /usr/local/tomcat
29-Aug-2017 19:54:16.683 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.config.file=/usr/local/tomcat/conf/logging.properties
29-Aug-2017 19:54:16.684 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
29-Aug-2017 19:54:16.684 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djdk.tls.ephemeralDHKeySize=2048
29-Aug-2017 19:54:16.684 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources
29-Aug-2017 19:54:16.685 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Xmx2g
29-Aug-2017 19:54:16.685 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -XX:+UseParNewGC
29-Aug-2017 19:54:16.685 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -XX:+UseConcMarkSweepGC
29-Aug-2017 19:54:16.685 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djs.license.directory=/usr/local/share/jasperreports-pro/license
29-Aug-2017 19:54:16.686 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.endorsed.dirs=/usr/local/tomcat/endorsed
29-Aug-2017 19:54:16.686 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.base=/usr/local/tomcat
29-Aug-2017 19:54:16.686 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Dcatalina.home=/usr/local/tomcat
29-Aug-2017 19:54:16.686 INFO [main] org.apache.catalina.startup.VersionLoggerListener.log Command line argument: -Djava.io.tmpdir=/usr/local/tomcat/temp
29-Aug-2017 19:54:16.686 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent Loaded APR based Apache Tomcat Native library 1.2.12 using APR version 1.5.2.
29-Aug-2017 19:54:16.687 INFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
29-Aug-2017 19:54:16.690 INFO [main] org.apache.catalina.core.AprLifecycleListener.initializeSSL OpenSSL successfully initialized (OpenSSL 1.1.0f 25 May 2017)
29-Aug-2017 19:54:16.765 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-apr-8080"]
29-Aug-2017 19:54:16.776 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["ajp-apr-8009"]
29-Aug-2017 19:54:16.778 INFO [main] org.apache.catalina.startup.Catalina.load Initialization processed in 435 ms
29-Aug-2017 19:54:16.799 INFO [main] org.apache.catalina.core.StandardService.startInternal Starting service Catalina
29-Aug-2017 19:54:16.800 INFO [main] org.apache.catalina.core.StandardEngine.startInternal Starting Servlet Engine: Apache Tomcat/8.0.45
29-Aug-2017 19:54:16.809 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/jasperserver-pro
29-Aug-2017 19:54:38.258 INFO [localhost-startStop-1] org.apache.jasper.servlet.TldScanner.scanJars At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
2017-08-29 19:55:03,106 ERROR EhCacheImpl,localhost-startStop-1:556 - -- JasperServer: EhCacheImpl shutdown called. This normal shutdown operation.
2017-08-29 19:55:03,112 ERROR EhCacheImpl,localhost-startStop-1:559 - -- JasperServer: EhCacheImpl calling cleanerTimer.cancel(). This normal shutdown operation.
-- JasperServer: ProfileAttributeCacheImpl shutdown called. This normal shutdown operation.
2017-08-29 19:55:03,199 ERROR ContextLoader,localhost-startStop-1:331 - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'proOnStartPropagator' defined in ServletContext resource [/WEB-INF/applicationContext-onStart-web-pro.xml]: Invocation of init method failed; nested exception is com.jaspersoft.jasperserver.api.JSException: Cannot find tenant by ID : organizations
Arguments:
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1514)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:521)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:458)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:293)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:223)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:290)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:191)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:636)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:934)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:479)
at org.springframework.web.context.ContextLoader.configureAndRefreshWebApplicationContext(ContextLoader.java:410)
at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:306)
at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:112)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4853)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5314)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:145)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:753)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:729)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:717)
at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:1129)
at org.apache.catalina.startup.HostConfig$DeployDirectory.run(HostConfig.java:1871)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: com.jaspersoft.jasperserver.api.JSException: Cannot find tenant by ID : organizations
Arguments:
at com.jaspersoft.ji.war.themes.MTThemePropagatorImpl.fillCache(MTThemePropagatorImpl.java:651)
at com.jaspersoft.ji.war.themes.MTThemePropagatorImpl.propagateActiveThemeChange(MTThemePropagatorImpl.java:613)
at com.jaspersoft.ji.war.themes.MTThemeOnStartPropagator.afterPropertiesSet(MTThemeOnStartPropagator.java:54)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1573)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1511)
... 25 more
29-Aug-2017 19:55:03.279 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file
29-Aug-2017 19:55:03.290 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardContext.startInternal Context [/jasperserver-pro] startup failed due to previous errors
29-Aug-2017 19:55:03.322 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.oracle.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.323 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.oracle.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.324 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.sqlserver.SQLServerDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.324 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.sqlserver.SQLServerDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.325 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.db2.DB2Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.326 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.db2.DB2Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.326 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.hive.HiveDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.326 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.hive.HiveDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.327 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.impala.ImpalaDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.327 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.impala.ImpalaDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.328 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.mongodb.MongoDBDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.328 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.mongodb.MongoDBDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.329 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.redshift.RedshiftDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.329 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [tibcosoftware.jdbc.redshift.RedshiftDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.329 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesJdbc The web application [jasperserver-pro] registered the JDBC driver [org.teiid.jdbc.TeiidDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
29-Aug-2017 19:55:03.331 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [Thread-3] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
java.lang.Object.wait(Object.java:502)
com.jaspersoft.jasperserver.war.themes.ThemeCache$RefreshThread.run(ThemeCache.java:316)
29-Aug-2017 19:55:03.332 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [CascadeCacheCleaner] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
java.util.TimerThread.mainLoop(Timer.java:552)
java.util.TimerThread.run(Timer.java:505)
29-Aug-2017 19:55:03.332 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [quartzScheduler_Worker-1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:552)
29-Aug-2017 19:55:03.333 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [quartzScheduler_Worker-2] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:552)
29-Aug-2017 19:55:03.334 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [Timer-1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
java.util.TimerThread.mainLoop(Timer.java:552)
java.util.TimerThread.run(Timer.java:505)
29-Aug-2017 19:55:03.335 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [License activation thread] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.net.SocketInputStream.socketRead0(Native Method)
java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
java.net.SocketInputStream.read(SocketInputStream.java:171)
java.net.SocketInputStream.read(SocketInputStream.java:141)
java.io.BufferedInputStream.fill(BufferedInputStream.java:246)
java.io.BufferedInputStream.read(BufferedInputStream.java:265)
org.apache.axis.transport.http.HTTPSender.readHeadersFromSocket(HTTPSender.java:583)
org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:143)
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
org.apache.axis.client.Call.invokeEngine(Call.java:2784)
org.apache.axis.client.Call.invoke(Call.java:2767)
org.apache.axis.client.Call.invoke(Call.java:2443)
org.apache.axis.client.Call.invoke(Call.java:2366)
org.apache.axis.client.Call.invoke(Call.java:1812)
com.jp.protection.pub.pro.integration.ws.gen.LicensingFacadeSoapBindingStub.activateLicense(LicensingFacadeSoapBindingStub.java:409)
com.jp.protection.pub.pro.integration.ws.LicensingFacadeWS.activateLicense(LicensingFacadeWS.java:224)
com.jaspersoft.ji.license.LicenseActivationFacade.activateLicense(LicenseActivationFacade.java:77)
com.jaspersoft.ji.license.LicenseSupport.a(LicenseSupport.java:218)
com.jaspersoft.ji.license.LicenseProviderImpl$1.run(LicenseProviderImpl.java:324)
java.lang.Thread.run(Thread.java:748)
29-Aug-2017 19:55:03.337 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [bitronix-task-scheduler] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Thread.sleep(Native Method)
bitronix.tm.timer.TaskScheduler.run(TaskScheduler.java:245)
29-Aug-2017 19:55:03.339 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [BufferManager Cleaner] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
java.lang.Object.wait(Native Method)
org.teiid.common.buffer.impl.BufferManagerImpl$Cleaner.run(BufferManagerImpl.java:120)
java.util.TimerThread.mainLoop(Timer.java:555)
java.util.TimerThread.run(Timer.java:505)
29-Aug-2017 19:55:03.340 WARNING [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesThreads The web application [jasperserver-pro] appears to have started a thread named [Scheduled-eviction-thread-0] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
sun.misc.Unsafe.park(Native Method)
java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1093)
java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:809)
java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1074)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1134)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
java.lang.Thread.run(Thread.java:748)
29-Aug-2017 19:55:03.347 SEVERE [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [jasperserver-pro] created a ThreadLocal with key of type [org.teiid.query.parser.QueryParser$1] (value [org.teiid.query.parser.QueryParser$1@5b2d08bd]) and a value of type [org.teiid.query.parser.QueryParser] (value [org.teiid.query.parser.QueryParser@5d4c3c43]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
29-Aug-2017 19:55:03.348 SEVERE [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [jasperserver-pro] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@2f461d55]) and a value of type [org.apache.axis.MessageContext] (value [org.apache.axis.MessageContext@466be08b]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
29-Aug-2017 19:55:03.349 SEVERE [localhost-startStop-1] org.apache.catalina.loader.WebappClassLoaderBase.checkThreadLocalMapForLeaks The web application [jasperserver-pro] created a ThreadLocal with key of type [org.apache.axis.utils.XMLUtils.ThreadLocalDocumentBuilder] (value [org.apache.axis.utils.XMLUtils$ThreadLocalDocumentBuilder@7530701b]) and a value of type [org.apache.xerces.jaxp.DocumentBuilderImpl] (value [org.apache.xerces.jaxp.DocumentBuilderImpl@4922e4da]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
29-Aug-2017 19:55:03.368 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/jasperserver-pro has finished in 46,558 ms
29-Aug-2017 19:55:03.368 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/manager
29-Aug-2017 19:55:03.501 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/manager has finished in 133 ms
29-Aug-2017 19:55:03.502 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/examples
29-Aug-2017 19:55:03.742 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/examples has finished in 240 ms
29-Aug-2017 19:55:03.743 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/docs
29-Aug-2017 19:55:03.827 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/docs has finished in 84 ms
29-Aug-2017 19:55:03.827 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/ROOT
29-Aug-2017 19:55:03.936 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/ROOT has finished in 109 ms
29-Aug-2017 19:55:03.937 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deploying web application directory /usr/local/tomcat/webapps/host-manager
29-Aug-2017 19:55:04.020 INFO [localhost-startStop-1] org.apache.catalina.startup.HostConfig.deployDirectory Deployment of web application directory /usr/local/tomcat/webapps/host-manager has finished in 83 ms
29-Aug-2017 19:55:04.029 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["http-apr-8080"]
29-Aug-2017 19:55:04.052 INFO [main] org.apache.coyote.AbstractProtocol.start Starting ProtocolHandler ["ajp-apr-8009"]
29-Aug-2017 19:55:04.144 INFO [main] org.apache.catalina.startup.Catalina.start Server startup in 47365 ms
29-Aug-2017 19:55:34.749 INFO [License activation thread] org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access: this web application instance has been stopped already. Could not load [org.apache.axis.transport.http.SocketInputStream]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [org.apache.axis.transport.http.SocketInputStream]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading(WebappClassLoaderBase.java:1353)
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForClassLoading(WebappClassLoaderBase.java:1341)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1206)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1167)
at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:779)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at com.jp.protection.pub.pro.integration.ws.gen.LicensingFacadeSoapBindingStub.activateLicense(LicensingFacadeSoapBindingStub.java:409)
at com.jp.protection.pub.pro.integration.ws.LicensingFacadeWS.activateLicense(LicensingFacadeWS.java:224)
at com.jaspersoft.ji.license.LicenseActivationFacade.activateLicense(LicenseActivationFacade.java:77)
at com.jaspersoft.ji.license.LicenseSupport.a(LicenseSupport.java:218)
at com.jaspersoft.ji.license.LicenseProviderImpl$1.run(LicenseProviderImpl.java:324)
at java.lang.Thread.run(Thread.java:748)

Exception in thread "License activation thread" java.lang.NoClassDefFoundError: org/apache/axis/transport/http/SocketInputStream
at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:779)
at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at com.jp.protection.pub.pro.integration.ws.gen.LicensingFacadeSoapBindingStub.activateLicense(LicensingFacadeSoapBindingStub.java:409)
at com.jp.protection.pub.pro.integration.ws.LicensingFacadeWS.activateLicense(LicensingFacadeWS.java:224)
at com.jaspersoft.ji.license.LicenseActivationFacade.activateLicense(LicenseActivationFacade.java:77)
at com.jaspersoft.ji.license.LicenseSupport.a(LicenseSupport.java:218)
at com.jaspersoft.ji.license.LicenseProviderImpl$1.run(LicenseProviderImpl.java:324)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.lang.ClassNotFoundException: Illegal access: this web application instance has been stopped already. Could not load [org.apache.axis.transport.http.SocketInputStream]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForClassLoading(WebappClassLoaderBase.java:1343)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1206)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1167)
... 17 more
Caused by: java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [org.apache.axis.transport.http.SocketInputStream]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading(WebappClassLoaderBase.java:1353)
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForClassLoading(WebappClassLoaderBase.java:1341)
... 19 more
29-Aug-2017 19:55:56.943 INFO [Scheduled-eviction-thread-0] org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading Illegal access: this web application instance has been stopped already. Could not load [org.infinispan.util.concurrent.BoundedConcurrentHashMap$Values]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [org.infinispan.util.concurrent.BoundedConcurrentHashMap$Values]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading(WebappClassLoaderBase.java:1353)
at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForClassLoading(WebappClassLoaderBase.java:1341)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1206)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1167)
at org.infinispan.util.concurrent.BoundedConcurrentHashMap.values(BoundedConcurrentHashMap.java:2113)
at org.infinispan.container.DefaultDataContainer.purgeExpired(DefaultDataContainer.java:189)
at org.infinispan.eviction.EvictionManagerImpl.processEviction(EvictionManagerImpl.java:102)
at org.infinispan.eviction.EvictionManagerImpl$ScheduledTask.run(EvictionManagerImpl.java:144)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)`

from js-docker.

nataliiakel avatar nataliiakel commented on May 24, 2024

@gitlab-pano It's worth trying to create database manually.
Login to container and execute following commands, but make sure DB endpoint is set correctly in default_master.properties

cd /buildomatic
js-ant import-sample-data-pro
js-ant deploy-webapp-pro

from js-docker.

 avatar commented on May 24, 2024

from js-docker.

nataliiakel avatar nataliiakel commented on May 24, 2024

@gitlab-pano logs are still pointing to missing production data for the repo. Login to the container where JasperServer is deployed, not to DB container, and execute:

./js-ant import-minimal-pro
or
./js-ant create-load-js-db -pro
or
./js-ant ant run-production-data-pro (this target will add samples)
and
./js-ant deploy-webapp-pro

from js-docker.

 avatar commented on May 24, 2024

from js-docker.

nataliiakel avatar nataliiakel commented on May 24, 2024

@gitlab-pano I am glad that server is successfully started now, but db_init should have been triggered as part of build process. Not quite sure what went wrong there. For certificate question please refer to Docker documentation.

from js-docker.

nataliiakel avatar nataliiakel commented on May 24, 2024

@gitlab-pano Will close this issue since original issue is resolved now.

from js-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.