arşiv

yazılar buna göre etiketlendi; ‘IIS’

.Net Core Uygulamasının IIS de Otomatik Başlatılması ve Sürekli Çalışır Tutulması

Pazartesi, 18 Nis 2022 yorum yok

IIS’te çalıştırmak üzere geliştirilen .Net Core/.Net Framework uygulamaları çeşitli başlangıç ayarlarına sahiptir.

Bu gönderide .Net Core uygulamasının otomatik olarak başlamasını ve her zaman IIS üzerinde çalışmasını sağlamak için yapılabilecek ayarlardan bahsetmeye çalışacağım. Bu ayarlar en çok karşılaştığımız aşağıdaki iki soruna çözüm sunmaktadır.

  • IIS de yayınladığımız projelerde siteye ilk girişteki bekleme (Önyükleme) süresinin uzun olması
  • Arka planda çalışan servisin belirli bir süre sonra durması ve sürekli çalışmaması

Kaynak: https://www-cozumpark-com.cdn.ampproject.org/c/s/www.cozumpark.com/net-core-uygulamasinin-iis-de-otomatik-baslatilmasi-ve-surekli-calisir-tutulmasi/amp/

Categories: Genel Tags: ,

Get password for IIS Application Pool account

Salı, 22 Ağu 2017 yorum yok

APPCMD:

appcmd is an IIS tool used to manage IIS server. It provides many functions that can be used to manager server related activities like create/configure sites, start/recycle/stop app pools, etc.

Retrieve Password of an App Pool identity account:

  1. To retrieve password for an app pool identity account, open the command prompt in administrative mode.
  2. Navigate to C:\Windows\System32\inetsrv directory. This is the location where appcmd.exe exists.
  3. Type the below command and press enter.
    appcmd.exe list apppool <<app_pool_name>> /text:*
    For example: I have an app pool in my IIS named SampleAppPool which has been assigned a particular account’s identity whose password I would like to retrieve. So I would enter the below command in command prompt.

    cmd

  4. Press enter and the result will be as shown below. Due to security reasons, I have removed the username and password from the image but trust me, it shows the username and password there.result

Referance: https://amoghnatu.net/2015/01/15/get-password-for-iis-application-pool-account/

Categories: Asp.NET, IIS Tags: ,