windows下启动Apache报443错误!

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即可。

原文地址:https://www.cnblogs.com/monogem/p/9802407.html