windows下啟動apache報make_sock: could not bind to address [::]:443錯誤!
查看指定端口的占用情況
netstat -aon|findstr "端口"
netstat -aon|findstr "443"
查看PID對應的進程
tasklist|findstr "pid"
結束該進程
taskkill /f /t /im "*.exe"
可修改配置文件
httpd-ssl.conf
SSL not compiled in; no https support
使用Apache自帶的工具ab進行壓力測試時出現了SSL not compiled in; no https support的錯誤。使用abs代替ab即可。