zoukankan      html  css  js  c++  java
  • 关于ReportingService的无法apply URL[转]

    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.
  • 相关阅读:
    搭建本地yum仓库
    linux下查看http 并发和 tcp连接数
    MySQL用户管理及SQL语句详解
    API开发之接口安全(一)----生成sign
    TP5使用API时不可预知的内部异常
    TP5通用化API接口数据封装
    根据指定日期获取近一周,及该月起止时间戳
    14-Promise
    4-字符串扩展与新增方法
    换行
  • 原文地址:https://www.cnblogs.com/shenfengok/p/2880542.html
Copyright © 2011-2022 走看看