摘要: ACME自动安装 我用的ubuntu,如果你是centos则把apt-get 改为yum即可 # 我安装好后提示要安装socat,因此你们先安装上这个 apt-get install socat -y # 安装acme curl https://get.acme.sh | sh # 安装好后关闭终端 阅读全文
posted @ 2022-01-17 23:38 HumorChen99 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 修改系统限制配置文件 vi /etc/security/limits.conf # 在最后一行加入以下的配置并保存退出 * hard nofile 65535 * soft nofile 65535 root hard nofile 65535 root soft nofile 65535 重新打开 阅读全文
posted @ 2022-01-17 22:11 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 查看要改的容器ID docker ps 停止docker,复制好要改的容器ID进入Docker容器目录去 service docker stop cd /var/lib/docker/containers/ cd 刚复制的容器ID,然后按TAB自动补全 修改配置文件 # 有可能是config.jso 阅读全文
posted @ 2022-01-17 21:48 HumorChen99 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 非常之简单高效!!! 编辑my.cnf vi my.cnf # 然后粘贴下面的并保存 [mysql] default-character-set=utf8mb4 [mysqld] character_set_server=utf8mb4 init_connect='SET NAMES utf8' l 阅读全文
posted @ 2022-01-17 21:40 HumorChen99 阅读(9) 评论(0) 推荐(0) 编辑