使用 Windows Server 2008 中的声纳
我想在 Windows Server 2008 r2 64 上安装声纳。 我这样配置了 conf/sonar.properties
文件:
sonar.web.host : [my_server_ip]
sonar.web.port: 8888
sonar.web.context: /sonar
我启动了 StartSonar.bat
,在 Windows 防火墙提示中,我回答授予从公共网络的访问权限。 当我尝试从服务器访问 http://[my_server_ip]:8888/sonar 时,一切都很好。但是当我尝试从另一台计算机访问此页面时却无法访问。
怎么了?
I want to install sonar on Windows Server 2008 r2 64.
I configured my conf/sonar.properties
file like this:
sonar.web.host : [my_server_ip]
sonar.web.port: 8888
sonar.web.context: /sonar
I started StartSonar.bat
, in windows firewall prompt I answered to grant access from public networks.
When I tried to access http://[my_server_ip]:8888/sonar from server it's all good. But when I tried to access to this page from another one computer I can't.
What's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您遇到了某种网络问题。从“公共网络”计算机上,您可以
telnet [your_server_ip] 8888
并获得连接吗?如果不是,那么您需要诊断原因。让您的本地网络专家参与其中。在不了解更多有关网络配置方式的信息的情况下,您的声纳服务器是否位于内部网络上(而您的“公共网络”计算机可能位于也可能不是)等等......
It sounds like you have some kind of networking issue. From the "public network" computer, can you
telnet [your_server_ip] 8888
and get a connection? If not, then you need to diagnose why. Get your local network guru involved.Without knowing more about how your network is configured, if your Sonar server is on an internal network (whereas your "public network" computer might or might not be), etc...