Coder Social home page Coder Social logo

Comments (6)

jasonrhaas avatar jasonrhaas commented on June 28, 2024 1

I'm having this issue as well. Ever figure out what the problem was @johndoran ?

from docker-sonarqube.

Godin avatar Godin commented on June 28, 2024

@johndoran this doesn't look like full log, so could you please provide full log, including command, which was used to start container? Also - do you experience the same problem with other versions?

from docker-sonarqube.

johndoran avatar johndoran commented on June 28, 2024

Hi, full stack attached. I'm using ecs to deploy the container - here is my task definition.
The container has 3GB CPU
The container has 3GB Memory

stack.txt

 def sonar(self, container_version):
        return {
            "cpu": 3076,
            "essential": True,
           "image": "sonarqube:{}".format(container_version if container_version else "latest"),
            "memory": 4096,
            "portMappings": [
                {
                    'containerPort': 9000,
                    'hostPort': 9000,
                    'protocol': 'tcp'
                },
                {
                    'containerPort': 9092,
                    'hostPort': 9092,
                    'protocol': 'tcp'
                }
            ],
            "name": "sonar",
            "environment": [{"name": "SONARQUBE_JDBC_USERNAME", "value": "sonar"},
                            {"name": "SONARQUBE_JDBC_PASSWORD", "value": "MY_SONAR_PW"},
                            {"name": "SONARQUBE_JDBC_URL", "value": "jdbc:mysql://MY_URL/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance"}
                            ],
        }

from docker-sonarqube.

johndoran avatar johndoran commented on June 28, 2024

I ran the 4.5.7 docker container and here is the stacktrace
stack-4.5.7.txt

from docker-sonarqube.

Godin avatar Godin commented on June 28, 2024

@johndoran I have strong feeling that attempt with 4.5.7 is not a cold start - it seems that during startup something requesting non-existing in this version component. Possible causes:

  • non-empty db - probably the same as you used for 5.4, but SQ doesn't support downgrade of data in DB
  • non-empty data directories (some installed plugin is not compatible with this version and/or ElasticSearch indexes are corrupted)

Please try cold start.

Log for 5.4 looks strange and unhelpful, but I will also recommend to do cold start. This way we can determine - whether problem comes from state of data, or due to SQ+Docker.

from docker-sonarqube.

johndoran avatar johndoran commented on June 28, 2024

running with raw docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube
I suspect its something with my jdbc connection or something else. I will close the ticket thanks

from docker-sonarqube.

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.