This experiment explores how to set the optimal NTFS permission for Access 2000/XP databases. The Microsoft Jet Database Engine cannot open the file 'd: \ wwwroot \ test \ data \'. It has

Source: Internet
Author: User
Tags asp net ntfs permissions
Explore the best NTFS permission settings for Access 2000/XP databases through experiments --

We already know that ASP. NET uses ADO. Net to access the database and can access the ACCESS database through the oledb connection-one of our very common low-end databases. This article discusses several error prompts that may be seen in ASP. NET, from which you can see database files created by Access 2000 and Access XP. Different error prompts will appear when access errors occur. Hope to help you. Another key point is to use this article to give you a new understanding of the NTFS permission settings for Access database files in ASP. NET.
(1) experiment process

For the sake of convenience, let's take an experiment as an example: ApplicationProgramFor/test, the data inventory is placed in D: \ wwwroot \ test \ data \ db1.mdb. We already know that in ASP. net accesses the database as an ASP net virtual user. We need to grant this account specific NTFS permissions to Make ASP.. Net program runs normally.

To get the strictest NTFS permission settings, we will give the program the lowest NTFS permission at the beginning of the experiment:

A) grant the following permissions to ASPnet in the d: \ wwwroot \ test \ data \ Folder:

Reject allowed
Full Control □□
Modify □□
Read and run √ □
List folder directories √ □
Read √ □
Write □□

 

B) The D: \ wwwroot \ test \ data \ db1.mdb file itself grants the user ASPnet the following permissions:
√ Allow propagation of inherited permissions from parent to this object

 

1.1 For An ASPX program that only contains the "select" command, the above permission settings are not available during running, that is, the above permissions have met the operation of such programs.

1.2 For aspx programs that contain commands such as "Update" "insert" "Update,

(A) If db1.mdb is a database created by Access 2000, the following error occurs:

Server error in the "/test" application.
---------------------------------------
The Microsoft Jet Database Engine cannot open the file 'd: \ wwwroot \ test \ data \'. It has been opened exclusively by another user or has no permission to view data.
Note: An unhandled exception occurs during the execution of the current Web request. Check the stack trace information for details about the error and the source of the error in the code.
Exception details: system. Data. oledb. oledbexception: the Microsoft Jet Database Engine cannot open the file 'd: \ wwwroot \ test \ data \'. It has been opened exclusively by another user or has no permission to view data.

(B) If db1.mdb is a database created by Access XP, the following error occurs:

Server error in the "/test" application.
----------------------------------------------
The operation must use an updatable query.
Note: An unhandled exception occurs during the execution of the current Web request. Check the stack trace information for details about the error and the source of the error in the code.
Exception details: system. Data. oledb. oledbexception: The operation must use an updatable query.

 

(C) Preliminary Analysis of the Cause: Because there are commands such as "Update" "insert" "Update", the database file itself needs to be written, so the preceding permissions cannot meet this requirement, we need to further release the permissions.

We release some permissions,
A) D: \ wwwroot \ test \ data \ Folder unchanged:

B) The D: \ wwwroot \ test \ data \ db1.mdb file itself grants the user ASPnet the following permissions: Allow deny
Full Control □□
Modify □□
Read and run √ □
List folder directories √ □
Read √ □
Write √ □

 

1.3 open the permission and continue the experiment,

(A) If db1.mdb is a database created by Access 2000, the following error occurs:

Server error in the "/test" application.
------------------------------------------
Files cannot be locked.
Note: An unhandled exception occurs during the execution of the current Web request. Check the stack trace information for details about the error and the source of the error in the code.
Exception details: system. Data. oledb. oledbexception: the file cannot be locked.

 

(B) If db1.mdb is a database created by Access XP, no error occurs.

 

(C) Preliminary Analysis of the Cause: We found that a *. LDB file with the same name will be generated in the directory where the ACCESS database is opened, which is a lock mark of access. In view of this, we guess that when the user ASPnet accesses the ACCESS database, it also needs to generate a lock mark, and this directory does not allow it to write, so an error occurs. The reason why the database created by Access XP does not have this error is unknown.

We further open the permissions,
A) D: \ wwwroot \ test \ data \ folder to give the user ASPnet the following permissions: Allow deny
Full Control □□
Modify □□
Read and run √ □
List folder directories √ □
Read √ □
Write √ □

B) The D: \ wwwroot \ test \ data \ db1.mdb file itself grants the user ASPnet the following permissions:
√ Allow propagation of inherited permissions from parent to this object

1.4 continue the experiment and find that the error has been resolved. The above permission is the "minimum permission" we need to release ".

(A) If db1.mdb is a database created by Access 2000, we will find a small problem: generated *. LDB files will not be deleted by themselves. The files still exist after access, but this problem will not affect ASP.. net.

(B) If db1.mdb is a database created by Access XP, the above similar problem does not occur.

(C) Preliminary Analysis of the Cause: We only gave ASPnet the permission to write folders and did not have the permission to modify them. Therefore, once a file is written, its content cannot be modified ,*. LDB cannot be deleted.

If you have to solve this problem, you can further release the permission:
A) D: \ wwwroot \ test \ data \ folder to give the user ASPnet the following permissions: Allow deny
Full Control □□
Change √ □
Read and run √ □
List folder directories √ □
Read √ □
Write √ □

B) The D: \ wwwroot \ test \ data \ db1.mdb file itself grants the user ASPnet the following permissions:
√ Allow propagation of inherited permissions from parent to this object

1.5 is included in the experiment. In another case, we open and edit db1.mdb in access and access ASP. NET at the same time.

(A) If db1.mdb is a database created by Access 2000, we find that there is no problem.

(B) If db1.mdb is a database created by Access XP, the following error occurs:

The server error in the "/Zhao" application.
------------------------------------------------
You cannot use ''; the file is already in use.
Note: An unhandled exception occurs during the execution of the current Web request. Check the stack trace information for details about the error and the source of the error in the code.
Exception details: system. Data. oledb. oledbexception: you cannot use ''. The file is in use.

(C) Preliminary Analysis of the cause: the ACCESS database is a single-user single-threaded database. When we open and edit database files in access, we actually open the database as the current Windows user (such as administrator, ASP. by default, ASP net virtual users (affiliated to the users group) are used. They are lower than the Administrator level and cannot "snatch" permissions from the Administrator. Therefore, a conflict error occurs. We do not need to discuss the situation where Access 2000 ignores this issue. It may be that ACCESS 2000 does not consider so many factors.

1.6: Change the db1.mdb attribute to "read-only". Both Access 2000 and Access XP have the same error messages as those in access 1.2.

(2) experiment conclusion

1. First, let's repeat the origin of the NTFS permission settings for Access database files:

In ASP. by default, net accesses and operates databases as a virtual user called ASPnet, you can see this user in "Control Panel"-"Administrative Tools"-"Computer Management"-"local users and groups"-"users". The default value is:

Full name: ASP. NET computer account
The account used to run the ASP. NET auxiliary route (aspnet_wp.exe.
Affiliated to: Users Group.

Using a user in the Users group to perform file operations and database operations is much less risky than using an Administrators Group. This is also ASP. net in terms of security.

Since such a user needs to access and operate the database file itself, we need to grant it certain NTFS permissions to allow its access. Obviously, if you do not have the NTFS permission, ASPnet will be unable to access and operate the database, and the errors shown in the above experiment will appear.

2. After the above experiment, we already know that the following NTFS permission settings can meet general requirements:

A) D: \ wwwroot \ test \ data \ folder to give the user ASPnet the following permissions: Allow deny
Full Control □□
Modify □□
Read and run √ □
List folder directories √ □
Read √ □
Write √ □

B) The D: \ wwwroot \ test \ data \ db1.mdb file itself grants the user ASPnet the following permissions:
√ Allow propagation of inherited permissions from parent to this object

At the same time, we also noticed that whether db1.mdb is a "read-only" file also affects the access to ASPnet.

3. The preceding permission settings can be set directly to the ASPNET user, the Users Group, or the Everyone group. Because ASPnet is affiliated to the users group, you can set permissions for ASPnet through the user group.

4. set the NTFS permission in the "properties" dialog box-"security" tab after right-clicking a file or folder. Generally, you can give the Adminitrators group the "full control" permission, at the same time, do not easily tick in "deny". For the NTFS permission setting skills, consult the network administrator and network security experts for advice.

Note: Partition in fat and FAT32 format does not support NTFS permission.

5. the "security" tab of Windows 2000 series and Windows Server 2003 series is easily located by default, but the "Security" tab in Windows XP Professional is disabled by default, you can remove "√" from "Advanced Settings" on the "control panel"-"Folder Options"-"View" tab and "use simple sharing (recommended, after "OK", follow the above method again to see the "Security" tab.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.