-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Admin port and server port not getting registered after upgrading the SpringBoot from 2.6.6 to 3.3.3. #3655
Comments
it would have been nice if you filled out the template. To me it is unclear if you tried to update your Spring Boot Admin server or your services that get monitored with Spring Boot Admin. In which configuration file do you have these xml tags with the port definitions? Which application server are you using? Are there any error messages in the logs? We cannot help if you just say that it is not working. |
Hi @erikpetzold , I hope the information below is helpful. The dependencies are there in the POM files with the server tags. <camel.version>4.7.0</camel.version> I'm using default springboot server Jetty When I run the application in the DEBUG mode, I see this error: java.lang.UnsupportedOperationException: 'SO_REUSEPORT' not supported |
This is just a jetty debug message, telling you that a specific feature is not available. This is not an error. Normally the apps do not get configured via pom.xml (this is the file to configure the maven build process). So put your dependencies there, but not your port-configuration. There may be placeholders in your project, that get filled with these properties during build time, but in general your configuration options should be in application.yaml (or application.properties). Can you provide a sample repo on github that shows your issue? |
Can't share the repo here. Using this plugin to replace the port in application.properties |
@rohit-jangir-codes |
Yes, tried that. But nothing different!! |
Spring Boot Admin Server information
Version:
Spring Boot version:
3.3.3
Configured Security:
Webflux or Servlet application:
Client information
Spring Boot versions:
Used discovery mechanism:
Description
I have upgraded my springBoot project from 2.6.6 to 3.3.3 after upgrading my application server port and admin ports are not working.
<server.port>6991</server.port>
<server.admin.port>6992</server.admin.port>
<services.port>6993</services.port>
Here the services.port is working as expected. But I don't see the admin and server ports getting registered and when checked via command prompt I see that the ports are not listening.
(cxfrs://http://0.0.0.0:6993/
The text was updated successfully, but these errors were encountered: