My spring_boot_version is '2.0.5.RELEASE',spring_version = '4.3.8.RELEASE' and the spring dependencies that i am using running for rabbit mq is:
compile("org.springframework.boot:spring-boot-starter-websocket:$spring_boot_version") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
compile "org.springframework.boot:spring-boot-starter-log4j2:$spring_boot_version"
compile("org.springframework.amqp:spring-rabbit:2.1.4.RELEASE") {
exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
}
compile "org.codehaus.jackson:jackson-mapper-asl:1.9.13"
compile "org.apache.logging.log4j:log4j-web:2.7"
The app works fine in my local machine but i am getting this error while running the spring boot server as a systemd service on linux server. How to resolve this on server level?