查出哪個程式佔用 port 443

今天要使用 IIS 開 443 port 測試
設定好確無法啟動網站,所以查了語法
netstat -ano|findstr "0.0.0.0:443"
查到pid 4836 正在使用 port 然後再查一下 pid 4836 是什麼程式
tasklist|findstr "4836"


發現是 vmware-hostd.exe 正在使用,透過下列步驟關閉 It's easier to change the port in VMware Workstation:
  1. Edit > Preferences;
  2. Shared VMs tab;
  3. Disable;
  4. Change port;
  5. Enable.
Done.

留言

這個網誌中的熱門文章

ng2-smart-table 自定 column 資料

C# Create An AutoComplete TextBox on WinForm