It is the path you have chosen. Take pride in it. Kotomine Kirei

Smile飞

[置顶] 设计模式总结

摘要: 转自博客园Learning hard 地址http://www.cnblogs.com/zhili/p/DesignPatternSummery.html 一、引言 经过这段时间对设计模式的学习,自己的感触还是很多的,因为我现在在写代码的时候,经常会想想这里能不能用什么设计模式来进行重构。所以,学完 阅读全文

posted @ 2018-06-25 20:02 Smile飞 阅读(189) 评论(0) 推荐(1) 编辑

2021年3月15日

Exceptionless分布式错误日志部署

摘要: version: '3.7' services: api: depends_on: - elasticsearch - redis build: context: . target: api image: exceptionless/api:6.0.0 environment: TZ: Asia/S 阅读全文

posted @ 2021-03-15 17:54 Smile飞 阅读(108) 评论(0) 推荐(0) 编辑

docker-compose.yml mysql部署说明

摘要: mysql.cnf 配置文件 [client] # 设置mysql客户端默认字符集 default-character-set=utf8mb4 [mysqld] #一般设置为IP,注意要唯一 server_id= 1 # 允许最大连接数 max_connections=1000 # 服务端使用的字符 阅读全文

posted @ 2021-03-15 17:50 Smile飞 阅读(538) 评论(0) 推荐(0) 编辑

docker-compose.yml 项目部署说明

摘要: #项目文件.yml示例version: '3.4' services: fire.api: image: fireapi:1.0 container_name: fireapi build: context: ./storage/fireapi dockerfile: Dockerfile port 阅读全文

posted @ 2021-03-15 17:43 Smile飞 阅读(253) 评论(0) 推荐(0) 编辑

redis配置文件详解

摘要: # Note on units: when memory size is needed, it is possible to specifiy # it in the usual form of 1k 5GB 4M and so forth: # # 1k => 1000 bytes # 1kb = 阅读全文

posted @ 2021-03-15 17:41 Smile飞 阅读(67) 评论(0) 推荐(0) 编辑

Nginx配置文件详解

摘要: ######Nginx配置文件nginx.conf中文详解######定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | war 阅读全文

posted @ 2021-03-15 17:40 Smile飞 阅读(80) 评论(0) 推荐(0) 编辑

Docker部署说明

摘要: 1.安装docker并设置开机启动sudo curl -sSL https://get.daocloud.io/docker | shsystemctl start dockersystemctl enable docker2.安装docker-composesudo curl -L https:/ 阅读全文

posted @ 2021-03-15 17:35 Smile飞 阅读(97) 评论(0) 推荐(0) 编辑

.net core docker部署linux用到GDI时处理方式。

摘要: 在DockerFile文件中增加一行代码RUN apt-get update -y && apt-get install -y libgdiplus && apt-get clean && ln -s /usr/lib/libgdiplus.so /usr/lib/gdiplus.dll 例 FRO 阅读全文

posted @ 2021-03-15 17:33 Smile飞 阅读(154) 评论(0) 推荐(0) 编辑

2020年12月7日

ES学习

摘要: 简介 ElasticSearch是一个开源的分布式搜索引擎,具备高可靠性,支持非常多的企业级搜索用例。像Solr4一样,是基于Lucene构建的。支持时间时间索引和全文检索。官网:http://www.elasticsearch.org 它对外提供一系列基于java和http的api,用于索引、检索 阅读全文

posted @ 2020-12-07 14:40 Smile飞 阅读(36) 评论(0) 推荐(0) 编辑

导航