上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页
摘要: 1、erlang下载地址:https://erlang.org/download/ 2、RabbitMQ下载地址:https://www.rabbitmq.com/download.html 3、erlang与RabbitMQ版本对应表:https://www.rabbitmq.com/which- 阅读全文
posted @ 2022-08-10 12:30 程序员小艺 阅读(27) 评论(0) 推荐(0) 编辑
摘要: vim ~/.zshrc alias ll='ls -alF' source ~/.zshrc 阅读全文
posted @ 2022-08-08 23:10 程序员小艺 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1、JDK下载地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html https://www.oracle.com/java/technologies/downloads/#java8下载你自己需要的版本 2、解压文 阅读全文
posted @ 2022-07-31 21:19 程序员小艺 阅读(176) 评论(0) 推荐(0) 编辑
摘要: server { …… #从系统时间中正则匹配出年月日 if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})") { set $date $1$2$3; } # 日期记录日志 access_log logs/$date.host.access.log; } 注意 阅读全文
posted @ 2022-07-19 10:50 程序员小艺 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: /** * Text Watermark Point: * #1 #2 #3 * #4 #5 #6 * #7 #8 #9 */ /** * 给图片添加文字水印 可控制位置,旋转,多行文字 **有效字体未验证** * @param string $imgurl 图片地址 * @param array 阅读全文
posted @ 2022-07-18 14:48 程序员小艺 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 修改apache配置文件httpd.conf KeepAliveTimeout 3600MaxKeepAliveRequests 0Timeout 3600KeepAlive On 阅读全文
posted @ 2022-07-16 14:29 程序员小艺 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 一、运行镜像 docker run -d -p 80:80 --privileged=true --name httpd --link mysql5.7 -v C:\docker\www:/var/www/html -v C:\docker\apache\conf:/usr/local/apache 阅读全文
posted @ 2022-07-16 13:10 程序员小艺 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 开启:bcdedit /set hypervisorlaunchtype auto 关闭:bcdedit /set hypervisorlaunchtype off 阅读全文
posted @ 2022-07-16 11:08 程序员小艺 阅读(485) 评论(0) 推荐(0) 编辑
摘要: 一、获取镜像 docker pull redis:6.0.8 二、创建对应的master和slave的配置文件 2.1 下载对应版本的配置文件http://download.redis.io/releases/ 2.2 分别修改master和slave的配置文件 配置 master #bind 12 阅读全文
posted @ 2022-07-13 00:02 程序员小艺 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1、参数很重要,不然会导致一些问题,端口可自行映射,镜像命名这里为centos7 docker run -d --name mycentos --privileged=true -p 10022:22 -p 10080:80 -h c7-docker-1 -v C:\mycentos:/home/m 阅读全文
posted @ 2022-07-07 17:21 程序员小艺 阅读(935) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 23 下一页