博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于ReportingService的无法apply URL[转]
阅读量:6415 次
发布时间:2019-06-23

本文共 1353 字,大约阅读时间需要 4 分钟。

But when you click Apply you get the response: Reserving url http://+:80 The Url has already been reserved

RESOLUTION:  Using the "netsh http show urlacl" command we see that /ReportServer and  /Reports are already reserved. You can also run "netsh http show urlacl | find "Report"" - to see just those two lines. >netsh http show urlacl | find "Report"     Reserved URL            : http://+:80/ReportServer/     Reserved URL            : http://+:80/Reports/
To resolve - simply delete the reserved URLs and recreate them.  I think we're to assume SRSS had been installed on this server once before but not properly uninstalled.
C:\Windows\system32>netsh http delete urlacl http://+:80/ReportServer/ URL reservation successfully deleted
C:\Windows\system32>netsh http delete urlacl http://+:80/Reports/ URL reservation successfully deleted
Then if you re-run >netsh http show urlacl | find "Report" - you'll see nothing.
Now to re-create the bindings:

  1. Open "Reporting Services Configuration Manager" -Click Connect
  2. Click "Web Service URL" - then click "Apply" at the bottom and it should succeed this time.
  3. Click "Report Manager URL" - then click "Apply".  If Apply is grayed out, simply rename Reports to Report, then back to Reports.  Apply will become available and you can click it.
  4. Then visit each URL to test.

转载于:https://www.cnblogs.com/shenfengok/archive/2013/01/28/2880542.html

你可能感兴趣的文章
字符串常用函数
查看>>
-bash: xhost: command not found
查看>>
unity3d 给游戏添加音源 Unity3d adds a sound source to the game
查看>>
内存分哪些区 C++,ios,java
查看>>
[hexo]如何更换主题、删除文章
查看>>
cinder-volume报错vmdk2 is reporting problems, not sending heartbeat. Service will appear "down".
查看>>
linux 安装jdk
查看>>
在Linux下删除文件及文件夹(rm)
查看>>
算法:快速排序
查看>>
低中高脚本算法目录
查看>>
循环和选择
查看>>
文本比较算法Ⅱ——Needleman/Wunsch算法
查看>>
idea的debug调试快捷键
查看>>
阿里云ECS部署ES
查看>>
你对DBA的定义是什么?
查看>>
面试常问-数据库索引实现原理
查看>>
黑马程序员————类的第五个成员内部类
查看>>
46. Permutations
查看>>
团队编程项目作业名称-成员简介
查看>>
加法器
查看>>