Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running IIS Application with different user Credentials

Tags:

security

iis

I have deployed an application on IIS Server and Servlet Exec configured. I need run the application with windows User Credentials rather than Anonymous User. I tries changing the username and password of annonmous user in properties/Security but the application stops responding changing it back to default Anonymous IIS user account works fine??

Abdul Khaliq

like image 397
Abdul Khaliq Avatar asked Jan 23 '23 03:01

Abdul Khaliq


2 Answers

If it is on iis 6 or greater, there is a place you can create application pools. If you don't have a dedicated application pool for your application yet, create one. While creating you can set the default identity it should work with. You can set it to system defaults or a custom identity you've created...

like image 173
deostroll Avatar answered Feb 14 '23 19:02

deostroll


You should change the identity for the application pool (not the website). So it's best to create a specific application pool for every site which needs specific user credentials.

But this question really belongs on serverfault.com

like image 23
Philippe Leybaert Avatar answered Feb 14 '23 17:02

Philippe Leybaert