IIS 权限访问 App_Data 文件夹以读取/写入数据库

发布于 2024-11-25 02:00:59 字数 376 浏览 1 评论 0原文

IIS 7.0 ( Windows 2003 Server )

我在 IIS 上部署了 ASP.Net ( VS 2008 ) 应用程序。应用程序正在尝试读取 MS Access DB,删除现有表,然后再次将数据重新提取到 MS Access DB。

阅读&写入发生在 MS Access DB 上。应用程序从源代码中运行得很好。

在 Windows XP 或 Windows 2003 Server IIS 上部署它时,应用程序无法与 MS Access DB 交互,因此会引发异常。

我意识到这是因为 Read &对位于 App_Data 文件夹中的 MS Access DB 的写入访问权限。

如何启用已部署文件夹的读写(管理员)权限?

IIS 7.0 ( Windows 2003 Server )

I have deployed a ASP.Net ( VS 2008) Application on IIS. Application is trying to read MS Access DB, delete the existing Tables and again re extract the data to the MS Access DB.

Read & Write takes place on MS Access DB. Application works great from Source Code.

On deploying it on Windows XP or Windows 2003 Server IIS, Application fails to interact with MS Access DB and so it throws an Exception.

I realized this is causes because of Read & Write Access to MS Access DB which is located on the App_Data Folder.

How to enable Read and Write ( Admin ) Rights on the Deployed folder ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拒绝两难 2024-12-02 02:00:59

对于 IIS 7.5+ (Windows Server 2008),更好的答案是允许“IIS_IUSRS”组进行写入。我相信这个组甚至包含了 IIS 8+ AppPool 用户,因此它是确保对 App_Data 的写入访问的更持久的方法

C:\inetpub\wwwroot> icacls App_Data /grant IIS_IUSRS:M
processed file: App_Data
Successfully processed 1 files; Failed processing 0 files

C:\inetpub\wwwroot> 

A better answer for IIS 7.5+ (Windows Server 2008) is to allow write by the group "IIS_IUSRS". I believe this group even incorporates the IIS 8+ AppPool users, so its a much more durable way to ensure write access to App_Data

C:\inetpub\wwwroot> icacls App_Data /grant IIS_IUSRS:M
processed file: App_Data
Successfully processed 1 files; Failed processing 0 files

C:\inetpub\wwwroot> 
冷月断魂刀 2024-12-02 02:00:59

尝试转到 App_Data 文件夹属性并添加具有读写权限的 ASPNET 用户

Try to go to App_Data folder property and add ASPNET user with read and write privileges

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文