Thinker Thinker

https证书如何检查到期日期

https证书如何检查到期日期 要检查 SSL 证书是否已过期,可以使用以下方法: 在浏览器中检查证书过期日期:您可以打开网站,并在浏览器中单击锁定图标,然后选择“证书”选项。在“证书”对话框中,您可以查看证书的详细信息,包括证书颁发机构、过期日期等。 使用 OpenSSL 检查证书过期日期:您可以

Aristotle Aristotle 发布于 2023-03-12

certbot certonly, let's encrypt

解释一下 certbot certonly --webroot -d example.com --email [email protected] -w /var/www/_letsencrypt -n --agree-tos --force-renewal 当您执行 certbot certonly

Aristotle Aristotle 发布于 2023-03-12

linux权限的理解笔记

linux权限的理解笔记 linux 的权限控制用户访问某个文件 用户可以属于多个用户组 文件的权限说明可以在ll下看到 表示某个用户,某个组,其他用户的访问 超级管理员root可以通过chmode修改文件的rwx权限说明 超级管理员root可以通过chown修改文件的用户

Aristotle Aristotle 发布于 2023-03-11

apt相关的命令笔记

apt相关的命令笔记 apt-install update 更新安装包缓存列表 apt-cache policy nodejs 查看nodejs 缓存列表中有哪些版本 apt-cache search 命令,查看命令在哪个包下,然后可以 apt-get install 安装哪个包

Aristotle Aristotle 发布于 2023-03-11

pm install,npm 镜像源

npm install,npm 镜像源 参考:https://blog.csdn.net/zsd_31/article/details/121182676 参考:https://blog.csdn.net/qq940853667/article/details/70837646 安装 ubuntu安

Aristotle Aristotle 发布于 2023-03-11

openssl 生成keypair,证书

openssl 生成keypair,证书 mkdir conf openssl req -new -newkey rsa:4096 -days 365 -subj "/CN=localhost" \ -nodes -x509 -keyout conf/auth.key -out co

Aristotle Aristotle 发布于 2023-03-10

Docker容器的重启策略

Docker容器的重启策略 参考:https://www.jianshu.com/p/8fab9290c21b 在运行docker run命令启动容器时,可以通过--restart指定容器退出时的重启策略。 当重启策略在一个容器上生效时,通过docker ps观察,该容器的状态不是Up就是Resta

Aristotle Aristotle 发布于 2023-03-10

如何复现查看docker run参数命令

如何复现查看docker run参数命令 参考:http://www.linuxea.com/2270.html 如果有这样以一个场景。我使用docker run启动了了一个redis容器,而

Aristotle Aristotle 发布于 2023-03-10

Linux环境使用apt-get安装telnet、curl、ifconfig、vim、ping等工具

Linux环境使用apt-get安装telnet、curl、ifconfig、vim、ping等工具【转】 参考 https://www.cnblogs.com/east7/p/15834866.html   当在Linux服务器执行Telnet命令时,如果提示command not found:

Aristotle Aristotle 发布于 2023-03-10

docker nginx安装问题

docker nginx安装问题 参考文档:https://hub.docker.com/_/nginx 参考文档:https://juejin.cn/post/7085229308901326885 参考文档:https://developer.aliyun.com/article/1025138

Aristotle Aristotle 发布于 2023-03-09