Getting Invalid Packet Length when running SonarQube Job (from Bamboo) - oracle

We are using SonarQube 4.5.6 and invoking jobs from Bamboo Build plans.
Last night one of the Bamboo builds failed showing this error (date 06-Jan-2016 00:07:04):
[ERROR] Failed to execute goal org.codehaus.mojo:sonar-maven-plugin:2.6:sonar (default-cli) on project plantmaterial-overall: Fail to decorate 'org.sonar.api.resources.File#5ae75570[key=src/main/java/com/bayer/plantmaterial/service/mission/MissionInitiatedServiceImpl.java,deprecatedKey=com.bayer.plantmaterial.service.mission.MissionInitiatedServiceImpl,path=src/main/java/com/bayer/plantmaterial/service/mission/MissionInitiatedServiceImpl.java,dir=com/bayer/plantmaterial/service/mission,filename=MissionInitiatedServiceImpl.java,language=Java]':
[ERROR] ### Error querying database. Cause: java.sql.SQLRecoverableException: IO Error: Invalid Packet Lenght
[ERROR] ### The error may exist in org.sonar.core.source.db.SnapshotSourceMapper
[ERROR] ### The error may involve org.sonar.core.source.db.SnapshotSourceMapper.selectSnapshotSourceByComponentKey-Inline
[ERROR] ### The error occurred while setting parameters
[ERROR] ### SQL: SELECT data FROM snapshot_sources source INNER JOIN snapshots s ON s.id=source.snapshot_id and s.islast=1 INNER JOIN projects p ON p.id=s.project_id and p.enabled=1 WHERE p.kee = ?
[ERROR] ### Cause: java.sql.SQLRecoverableException: IO Error: Invalid Packet Lenght
Looks like an Oracle JDBC error
This was a nightly build, I ran it manually and then it succeeded. Is this a glitch or what could be the cause?

Related

json-patch-1.13.jar: CVE-2021-4279(9.8) Quarkus 2.15.2.Final

The dependency check is now failing on json-patch:
[ERROR] Failed to execute goal org.owasp:dependency-check-maven:7.4.3:check (default-cli) on project ins-app: [ERROR] [ERROR] One or more dependencies were identified with vulnerabilities that have a CVSS score greater than or equal to '8.0': [ERROR] [ERROR] json-patch-1.13.jar: CVE-2021-4279(9.8) CVE is https://nvd.nist.gov/vuln/detail/CVE-2021-4279
The fix PR is probably here (Starcounter-Jack/JSON-Patch#7ad6af4). But it is another repository?
https://github.com/java-json-tools/json-patch/issues/144
It is actually a bug on DependencyCheck, one that was already addressed:
https://github.com/jeremylong/DependencyCheck/issues/5212
You could add it to your suppression list.

How to fixe An error is occurred in the checkin process: Exception while executing SCM command in mvn release:prepare?

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:3.0.0-M1:prepare (default-cli) on project ***: An error is occurred in the checkin process: Exception while executing SCM command.: JGit checkin failure! Exception caught during execution of push command: Source ref refs/heads/d865f6170aaa91ed8860420f7bbe586243b7ecae doesn't resolve to any object. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-release-plugin:3.0.0-M1:prepare (default-cli) on project qure-api: An error is occurred in the checkin process: Exception while executing SCM command.
Hello,
I try to execute a release jenkins pipeline and I got this error when try do to: mvn release:prepare
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:3.0.0-M1:prepare (default-cli) on project qure-api: An error is occurred in the checkin process: Exception while executing SCM command.: JGit checkin failure! Exception caught during execution of push command: Source ref refs/heads/d865f6170aaa91ed8860420f7bbe586243b7ecae doesn't resolve to any object. -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-release-plugin:3.0.0-M1:prepare (default-cli) on project qure-api: An error is occurred in the checkin process: Exception while executing SCM command.

MI test Module-Transport error on installation

I am trying to install micro-integrator from https://github.com/wso2/micro-integrator. I followed the instructions, but encountered an error. The below log shows the error message:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-test) on project org.wso2.carbon.ei.tests.transport: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test failed: The forked VM terminated without saying properly goodbye. VM crash or System.exit called ? -

Sakai 12.1 deploy command error when connecting to MySQL through JBDC driver

I am currently trying to deploy an instance of the latest Sakai 12.1 on Tomcat, but when I run the
mvn clean install sakai:deploy -Dmaven.tomcat.home=$CATALINA_HOME -Dsakai.home=$CATALINA_HOME/sakai -Dsakai.cleanup=true -Djava.net.preferIPv4Stack=true command, if executes without errors until the "Sakai Core Kernel Implementation" modules (out of the 413), returning this:
...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 07:30 min
[INFO] Finished at: 2018-05-17T13:33:19+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project sakai-kernel-impl: There are test failures.
[ERROR]
[ERROR] Please refer to /home/usuario/sakai/kernel/kernel-impl/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :sakai-kernel-impl
I have seen the error log and the first one is in the RoleAccessTest test.
The log info:
...
13:29:15,161 INFO PoolBase:505 - sakai - Driver does not support get/set network timeout for connections. (not supported feature)
13:29:15,168 ERROR PoolBase:441 - sakai - Failed to execute connection test query (insufficient user privileges or object not found: DUAL).
13:29:15,169 ERROR HikariPool:541 - sakai - Exception during pool initialization.
java.sql.SQLSyntaxErrorException: insufficient user privileges or object not found: DUAL
at org.hsqldb.jdbc.JDBCUtil.sqlException(Unknown Source)
...
[EDIT: Looking at the preceding log, why does HSQLDB arises in the error stack? Isn't supposed to be only MySQL?]
Later, in another line:
WARN JdbcServicesImpl:195 - HHH000341: Could not obtain connection metadata
The Mysql Driver JAR is correctly copied in /opt/tomcat/lib, and the DB user and credentials correctly set in /opt/tomcat/sakai/local.properties
I do not want to deploy Sakai without running test as this is a complete fresh installation and there should not be any errors...
Any help?
Look in your sakai.properties or local.properties. It probably has the line
# validationQuery#javax.sql.BaseDataSource=select 1 from DUAL
This is the SQL query Sakai issues by default to check whether the database is reachable. It looks as though the database system you're using doesn't support that query, so you'll either need to set that property to some other query, or switch the database system you're using. MySQL supports this query, so if you have
vendor#org.sakaiproject.db.api.SqlService=mysql
I'm wrong and it must be something else.

Execute failed: java.io.IOException: Cannot run program "mkdir"

I am trying to build maven project.I am getting following error. The complete stack trace is below
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:run (rpmbuild) on project ers: An Ant BuildException has occured: The following error occurred while executing this line:
[ERROR] C:\Users\XYZ-PC\git\ers\target\rpm-spec-template\rpmbuild.xml:4: Execute failed: java.io.IOException: Cannot run program "mkdir": CreateProcess error=2, The system cannot find the file specified
[ERROR] around Ant part ...<ant antfile="C:\Users\XYZ-PC\git\ers\target/rpm-spec-template/rpmbuild.xml"/>... # 4:93 in C:\Users\XYZ-PC\git\ers\target\antrun\build-main.xml
[ERROR] -> [Help 1]
I have tried searching out this problem but all I found is that may be its JRE problem, I have checked and made sure that my source is using JDK not JRE.
I am stuck and any help would be appreciated.

Resources