(Running AWS on an internal Windows 2008 Server. Installed the server under-the-gun as a newbie trying to get a project done on a tight deadline about a year ago. Now I have the time to go back and correct a few things.)
One of the functions of our application is viewing uploaded files (PDF, DOC, etc). Right now, those files are stored in folders under the webroot. I'd like to move them off the web server and onto a server dedicated to document management.
I'm comfortable both saving and retrieving files using UNC pathnames, and I constructed the application so that it would only take a single configuration variable change in order to move the base path. However, I'm having permissions problems when I try to access the file shares. It looks like AWS is running as the local admin on the web server. When I debug the app under working preview on my own computer, it appears that I'm running as me (as the logged-in user), and then access happens just as I'd expect, but of course the behavior is different on the web server.
Is it required that AWS be local admin on the server? Can AWS run as a different user so that I can more effectively deal with network share permissions? How do I set up the server to run as a different user?
It is pretty critical that the only access to these files is through the web application (for security and audit trail purposes), but it is a pain to deal with local Administrator permissions across Windows file shares.
Thanks!
-Mark
One of the functions of our application is viewing uploaded files (PDF, DOC, etc). Right now, those files are stored in folders under the webroot. I'd like to move them off the web server and onto a server dedicated to document management.
I'm comfortable both saving and retrieving files using UNC pathnames, and I constructed the application so that it would only take a single configuration variable change in order to move the base path. However, I'm having permissions problems when I try to access the file shares. It looks like AWS is running as the local admin on the web server. When I debug the app under working preview on my own computer, it appears that I'm running as me (as the logged-in user), and then access happens just as I'd expect, but of course the behavior is different on the web server.
Is it required that AWS be local admin on the server? Can AWS run as a different user so that I can more effectively deal with network share permissions? How do I set up the server to run as a different user?
It is pretty critical that the only access to these files is through the web application (for security and audit trail purposes), but it is a pain to deal with local Administrator permissions across Windows file shares.
Thanks!
-Mark
Comment