發表文章

目前顯示的是 1月, 2018的文章

Windows 10 1703升至1709出現 IIS 503 錯誤

1. 似乎是在C:\inetpub的資料夾權限出了問題,因為不用升級方式而整個重新安裝系統至1709,再重新安裝 IIS 是沒有出現此問題。裡面的 C:\inet\temp\appPools\ 似乎須先刪除,再重啟 IIS。若無法刪除,請將作業系統進入安全模式再刪除該資料夾。 2. 應用程式集區 -> DefaultAppPool -> 進階設定 -> 載入使用者設定檔設為 false 參考資料: https://support.microsoft.com/en-us/help/929135/how-to-perform-a-clean-boot-in-windows https://support.microsoft.com/en-us/help/4050891/error-http-503-and-was-event-5189-from-web-applications-on-windows-10 https://stackoverflow.com/questions/13322937/http-error-503-the-service-is-unavailable

Windows 10 開啟自動載入程式

圖片
1. 開啟本機或檔案管理員 -> 檢視 -> 資料夾選項 -> 檢視 -> 點選顯示隱藏的檔案,資料夾及磁碟機。 2. 複製要開機自動啟動的程式至以下路徑 C:\Users\accuser\AppData\Roaming\Microsoft\Windows\Start Menu\Program s\啟動

Migrated a lvm space to a swap memory on CentOS 7

圖片
1. lvmdisplay to get lv path 2.  lvreduce -L -8G /dev/centos /dev/centos/sharedisk 3.  lvcreate -L 8G -n lvswap centos   # centos is VG Name 4.  mkswap /dev/centos/lvswap 5.  swapon -a