PageAdmin网站内容管理系统(CMS)交流论坛

注册

 

QQ登录

只需一步,快速开始

发新话题 回复该主题

请教:服务器应用程序不可用 [复制链接]

1#
服务器应用程序不可用您试图在此 Web 服务器上访问的 Web 应用程序当前不可用。请点击 Web 浏览器中的“刷新”按钮重试您的请求。
管理员注意事项: 详述此特定请求失败原因的错误消息可在 Web 服务器的系统事件日志中找到。请检查此日志项以查明导致该错误发生的原因。
分享 转发
TOP
2#

IIS问题,重装
TOP
3#

帮你在百度里搜索了下,答案如下

当出现asp.net程序出现以下提示问题时:
Server Application Unavailable
The web application you are attempting to access on this web server is currently unavailable.  Please hit the "Refresh" button in your web browser to retry your request. Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur.
解决方法如下:
1、找到安装Framework的文件夹的CONFIG文件夹,一般就是下面的路径:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG
2、在这个路径中找到machine.config这个文件打开,最好用UltraEdit-32或文本编辑器打开
3、查找<processModel autoConfig="true" />这一项
4、找到后修改成:
<processModel userName="machine" password="AutoGenerate" autoConfig="true" />
5、如果还不行则说明权限不够,可改成:
<processModel userName="SYSTEM" password="AutoGenerate" autoConfig="true" />6、创建ASPNET用户,设置好口令,并将ASPNET用户添加到Administrators组中;
7、启动cmd.exe,然后执行以下命令:
runas /profile /user:ASPNET cmd.exe
aspnet_regiis -i 执行以上命令时需要输入你创建用户的口令.
8、将ASPNET用户从Administrators组中删除;将其用户设为Guests用户组中。为了安全起见,最好将ASPNET用户从所有的用户组中删除,不赋予其任何权限。
9、重启IIS即可 。或者重启系统。
TOP
发新话题 回复该主题