You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by "Tr4sK (Jira)" <ji...@apache.org> on 2019/12/24 11:59:00 UTC

[jira] [Created] (OPENMEETINGS-2158) org.apache.wicket.WicketRuntimeException: There is no application attached to current thread Openmeetings - Installation

Tr4sK created OPENMEETINGS-2158:
-----------------------------------

             Summary: org.apache.wicket.WicketRuntimeException: There is no application attached to current thread Openmeetings - Installation
                 Key: OPENMEETINGS-2158
                 URL: https://issues.apache.org/jira/browse/OPENMEETINGS-2158
             Project: Openmeetings
          Issue Type: Bug
          Components: Installer
    Affects Versions: 5.0.0-M3
         Environment: debian buster
docker
            Reporter: Tr4sK
            Assignee: Maxim Solodovnik


Hey ppl,

I created a docker-compose file to manage openmeetings install process.

I have an issue once I get to the end of the installation process on the web page.

 

Here is my docker-compose.yml


{code:yaml}
version: '3'
services:
  kurento-media-server:
    build: ./kurento-docker/kurento-media-server/
    ports:
      - 8888:8888

  openmeetings:
    build:
      context: ./openmeetings-docker/
      args:
        - BUILD_TYPE=min
    ports:
      - 5443:5443
      - 5080:5080
    environment:
      OM_USER: 'om_admin'
      OM_PASS: 'securpass'
      OM_DB_NAME: 'openmeetings'
      OM_DB_TYPE: 'mysql'
      OM_DB_HOST: mysql
      OM_DB_USER: 'openmeetings'
      OM_DB_PASS: 'securepass'
      OM_DATA_DIR: '/opt/omdata'
      OM_KURENTO_WS_URL: 'ws://externalIP:8888/kurento'
    volumes:
      - openmeetings_data:/opt/omdata

  mysql:
    image: mysql:5.7
    environment:
      MYSQL_ROOT_PASSWORD: 'securepass'
      MYSQL_DATABASE: 'openmeetings'
      MYSQL_USER: 'openmeetings'
      MYSQL_PASSWORD: 'securepass'
    volumes:
      - mysql_data:/var/lib/mysql

volumes:
  mysql_data:
  openmeetings_data:
{code}

And here is the error:

{code:none}
openmeetings_1          | ERROR 12-24 11:44:06.401 o.a.o.w.c.ErrorMessagePanel:36 [nio-5443-exec-7] - L'installation a échoué
openmeetings_1          | org.apache.wicket.WicketRuntimeException: There is no application attached to current thread Openmeetings - Installation
openmeetings_1          |       at org.apache.wicket.Application.get(Application.java:213)                                                                                             
openmeetings_1          |       at org.apache.wicket.spring.injection.annot.SpringComponentInjector$ContextLocator.getSpringContext(SpringComponentInjector.java:156)
openmeetings_1          |       at org.apache.wicket.spring.SpringBeanLocator.getSpringContext(SpringBeanLocator.java:207)                                                                       
openmeetings_1          |       at org.apache.wicket.spring.SpringBeanLocator.locateProxyTarget(SpringBeanLocator.java:196)
openmeetings_1          |       at org.apache.wicket.proxy.LazyInitProxyFactory$AbstractCGLibInterceptor.intercept(LazyInitProxyFactory.java:362)
openmeetings_1          |       at org.apache.openmeetings.installation.Wicket_Proxy_ImportInitvalues$$EnhancerByCGLIB$$4cc6d650.loadAll(<generated>)
openmeetings_1          |       at org.apache.openmeetings.web.pages.install.InstallWizard$InstallProcess.run(InstallWizard.java:751)
openmeetings_1          |       at java.base/java.lang.Thread.run(Thread.java:834)
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)