首页 > 其他分享 >错误: HTTP management port configuration not found

错误: HTTP management port configuration not found

时间:2023-10-09 09:35:05浏览次数:36  
标签:management HTTP standalone found configuration port

原文链接:https://www.longkui.site/error/http-management-port-configuration-not-found/4791/

调试一个JAVA项目,用的是wildfly(Jboss),前面用的正常,今天debug的时候突然报错:

错误: HTTP management port configuration not found

看了看网上的答案说是 standalone.bat被修改了,我打开看了看,对比了一下发现没有被修改。于是从其他方面找原因。

1.原因一

首先重启一下IDEA,如果还不正常往下看,

我最后发现,是另外一个配置文件出错了,如下图:

在standalone/configuration 路径下的standalone.xml 文件被修改成standalone.xml.tmp。 虽然不知道什么情况下会修改这个文件的后缀,但是恢复文件名后,程序是正常运行的。

有可能是跑多个java项目时来回切换导致的。

2.原因二

上面方法不可行时,尝试把deployments 全部删除后,重新启动项目。

标签:management,HTTP,standalone,found,configuration,port
From: https://www.cnblogs.com/longkui-site/p/17750728.html

相关文章

  • maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories
    原文链接:https://www.longkui.site/error/maven-default-http-blocker-http-0-0-0-0-blocked-mirror-for-repositories/4659/0.背景给新电脑配置maven环境,然后执行mvncleaninstall的时候开始报错,maven-default-http-blocker(http://0.0.0.0/):Blockedmirrorforrepositor......
  • 异步爬虫实战:实际应用asyncio和aiohttp库构建异步爬虫
    在网络爬虫的开发中,异步爬虫已经成为一种非常流行的技术。它能够充分利用计算机的资源,提高爬虫效率,并且能够处理大量的运算请求。Python中的asyncio和aiohttp库提供了强大的异步爬虫支持,使得开发者能够轻松构建高效的异步爬虫。什么是异动爬虫?为什么要使用自动爬虫?异步爬虫是一......
  • centos7系统中创建临时接口,使用jmeter进行http压测
    要在一台CentOS7服务器上使用JMeter进行HTTP接口的压测,首先需要在服务器上部署一个Web服务器,然后在其上部署您想要测试的接口。以下是一些简单的步骤来实现这一目标:步骤1:在CentOS7服务器上安装Web服务器您可以选择安装常用的Web服务器,比如Apache或Nginx。以下......
  • harbor登录时报错error parsing HTTP 404 response body: invalid character
    **harbor登录时报如下错误: **[root@localhostTDFW-publish-tar]#dockerlogin--username=user1192.168.2.10:8090--passworduser1_passWARNING!Using--passwordviatheCLIisinsecure.Use--password-stdin.Errorresponsefromdaemon:Get"http://192.168.2.......
  • [极客大挑战 2019]Http 1
    原理来源页的修改ip修改浏览器修改解题过程一看题目涉及到抓包咯,进入靶场界面没啥东西,查看原代码发现一个文件,拼在url地址后面发现要修改来源页,那就抓包吧补上来源还要修改浏览器还要本地访问--得到flag......
  • 14_Http编程
    2、性能更高的第三方库HttpRouterhttps://github.com/julienschmidt/httprouterhttps://pkg.go.dev/github.com/julienschmidt/httprouter2.1HttpRouter与net/http比较HttpRouter相较于Go语言官方库net/http性能更高,它支持URL中携带访问参数、支持多种访问类型(G......
  • ansible-playbook批量安装httpd,按主机名提供不同的index.html(如node1的index.html欢迎
    [root@ansible~]#vim/etc/ansible/hosts[webservers]10.0.0.150ansible_connection=local10.0.0.160#创建角色相关目录[root@ansiblehtml]#mkdir-pv/data/ansible/roles/httpd/{tasks,handlers,files}mkdir:createddirectory'/data/ansible'mkdir:crea......
  • C# 如何获取Url的host以及是否是http
    获取整个url地址:在页面(cstml)中Microsoft.AspNetCore.Http.Extensions.UriHelper.GetDisplayUrl(Context.Request);在Controller中Microsoft.AspNetCore.Http.Extensions.UriHelper.GetDisplayUrl(Request);获取请求的方式(scheme:http/https):httpInasp.net4.6->Reques......
  • c# 最终 https的
          可获取公司https的 publicstaticvoidtest2(Stringurl){           WebClientwc=newWebClient();           wc.Encoding=Encoding.UTF8;           wc.Headers.Add("Accept:text/html,application/xhtml+xml,app......
  • 编译安装nginx,实现多域名 https
     #编译安装nginx[root@centos8~]#yum-yinstallgccpcre-developenssl-develzlib-devel[root@centos8~]#useradd-s/sbin/nologinnginx[root@centos8~]#cd/usr/local/src/[root@centos8src]#wgethttp://nginx.org/download/nginx-1.18.0.tar.gz......