linux 安装 并运行SSL 443端口
linux 安装 并运行SSL 443端口 安装SSL的端口的代码如下: yum install mod_ssl systemctl restart httpd 至于防火墙,常见应用直接添加服务即可,都预设好的。 firewall-cmd --permanent --add-service=https systemctl start firewalld(启动防火墙) 运行以上代码出现: FirewallD is not running 那么输入: systemctl start firewalld (启动防火墙) 然后开放443端口: firewall-cmd --zone=public --add-port=443/tcp --permanent 加载: firewall-cmd --reload 查看运行所有端口 netstat -tln 就是这样子ok了, 不过如果是需要将http协议变成https 协议的话 先去阿里云的控制台,点云服务器ECS 然后图如下: 来源: CSDN 作者: 柠檬味拥抱 链接: https://blog.csdn.net/qq_18108159/article/details/103602438