zoukankan      html  css  js  c++  java
  • 因修改机器名 造成 report service 2000 无法访问的几个问题

    今天把计算机的名字改了,结果重新启动, reports 竟然进不了了,提示:
     “The underlying connection was closed: The remote name could not be resolved.”
    最后,发现 是 C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportManager\RSWebApplication.config 有个配置项目不对,
    原:
    <UI>
    <ReportServerUrl> http://xxx/ReportServer </ReportServerUrl>
    </UI>
    xxx是我原来机器的名字,现在改成了yyy, 因此要改成
    <UI>
    <ReportServerUrl> http://yyy/ReportServer </ReportServerUrl>
    </UI>

    本以为ok了,结果刷新网页 ,提示:
    “报表服务器无法打开与报表服务器数据库的连接。所有请求和处理都要求与数据库建立连接。”
    原来数据库连接的 配置 也不对了,需要使用 C:\Program Files\Microsoft SQL Server\80\Tools\Binn>rsconfig 小工具进行重新配置,
    C:\Program Files\Microsoft SQL Server\80\Tools\Binn>rsconfig -c -d ReportServer -s . -a sql -u sa -p 123456

    修改成功后。report service 访问正常.

  • 相关阅读:
    浅谈隔板法
    最短路spaf及dijkstra模板
    P1219 最优贸易
    P1211 街道赛跑
    图结构模板
    P1218 过路费
    使用Asp.net Identity 创建用户 、登录代码
    asp.net identity 介绍
    响应式图像
    glyphicon 图标的使用
  • 原文地址:https://www.cnblogs.com/finema/p/1041456.html
Copyright © 2011-2022 走看看