09 2022 档案
摘要:将centos8的软件库改为stream的 dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos 如果centos8默认软件包里没有certbot,就需要更新软件包: dnf ins
阅读全文
摘要:服务器环境(Nginx + CentOS7)举例: yum install certbot certbot certonly 直接使用yum安装(也可以直接下载源码进行编译安装,然后执行certbot-auto certonly,操作应该是类似的,详情查看官网)后执行 certbot certonl
阅读全文
摘要:通过csv导入的数组类型数据会变为字符串类型,如:"[""A"",""B""]"; "[1,2,3,4,5]",应为:["A","B"]; [1,2,3,4,5]。 批量更新代码: db.getCollection('pagedata').find({'pageData.tag': {$regex:
阅读全文