您现在的位置是:课程教程文章
安装mongodb需要ssl吗
2023-12-18 21:04课程教程文章 人已围观
-
MongoDB数据库深度剖析
MongoDB数据库深度剖析... -
React全栈商城管理系统(react/redux/node/ex
React全栈商城管理系统(react/redux/node/ex特别说明: 本套课程使用的react-router-dom为V5版本,若使用最新的react-router-dom... -
免费SSL证书申请和配置 实现https支持
免费SSL证书申请和配置 实现https支持1. 老师介绍 鲁大师: CRMEB微擎项目负责人,CRMEB论坛超级版主,CRMEB开发群管理员... -
【赵强老师】MongoDB插入数据
【赵强老师】MongoDB插入数据这里将介绍如何将数据插入到MongoDB的集合中。文档的数据结构和JSON基本一样。...
安装MongoDB是需要配置ssl的。关于MongoDB 的SSL 配置, 官方文档挺齐全的。
win10 64位 安装 OpenSSL-Win64 的安装版, 添加环境变量path
由于文档提供的基本是Linux 的, 网上搜索到的也是Linux 这样的, 自己改成了 windows 的
G: cd G:\ca openssl req -newkey rsa:2048 -new -x509 -days 365 -nodes -out mongodb-cert.crt -keyout mongodb-cert.key copy /b /y mongodb-cert.key+mongodb-cert.crt mongodb.pem
这个是直接使用了CA根证书, 和由key+证书组成的CA服务器证书(mongodb 要求key+cert 合成的pem)。
推荐教程《python教程》
配置文件
net: port: 27000 bindIp: 127.0.0.1 ssl: mode: requireSSL PEMKeyFile: G:\ca\mongodb.pem CAFile: G:\ca\mongodb-cert.crt allowInvalidHostnames: true
如果有集群, 加上
security: authorization: enabled clusterAuthMode: x509
启动MongoDB 后, 用mongo 客户端连接, 因为是自己建的证书, 所以--sslAllowInvalidCertificates 是必要的。
课程教程:安装mongodb需要ssl吗下一篇:没有了