码迷,mamicode.com
首页 >  
搜索关键字:docker日志 log-opt max-size    ( 391个结果
docker日志驱动和存储驱动
docker支持的日志驱动 none 无日志json-file 将日志写入json-file,默认值syslog 将日志写入syslog,syslog必须在机器上启动journald 将日志写入journald,journald必须在机器上启动gelf 将日志写入GELF端点,如Graylog或Lo ...
分类:其他好文   时间:2020-06-22 19:40:01    阅读次数:118
Docker日志查看
最近在搭建Docker + Sonarqube + postgresql 结果因为一些环境配置问题导致无法正常启动sonarqube的镜像,总是在start容器之后几秒就自动exit. 这时候,需要查看容器运行失败的原因,我们就需要用到下面的命令: docker logs -f -t --tail= ...
分类:其他好文   时间:2020-06-19 12:21:49    阅读次数:49
php修改上传文件大小限制
php修改form表单大小限制,有个陷阱 很多人只修改了,php.ini中的,post_max_size的限制 然后重启php和apache, service httpd restart service php-fpm restart 发现页面没有报错,但是php后台接收到的 $_FILES[文件名 ...
分类:Web程序   时间:2020-05-22 13:06:43    阅读次数:52
线性表
小编最近学习数据结构,附上有关代码: 线性表存储:1 顺序存储, 2 链式存储 一元多项式的相加:链式相加 #include<iostream> #define MAX_SIZE 100 const int ERROR = -1; const int OK = -1; typedef int Sta ...
分类:其他好文   时间:2020-05-22 09:31:25    阅读次数:61
Nginx系列(三)——内容缓存
Caching Zones定义缓存空间proxy_cache_path /var/nginx/cache #缓存空间路径keys_zone=CACHE:60mlevels=1:2inactive=3h #缓存时长,3小时内没有被再次请求就会被释放max_size=20g;proxy_cache CA ...
分类:其他好文   时间:2020-05-21 19:12:36    阅读次数:55
获取上传图片的宽高尺寸
我们在上传图片时经常需要判断图片的尺寸是否在要求范围内 <input type="file" onchange="loadPic(this)"/> var Max_Size = 2000; //2M var Max_Width = 100; //100px var Max_Height = 200; ...
分类:Web程序   时间:2020-05-06 14:00:08    阅读次数:85
队列的简单实现(C语言)
1 #include <iostream> 2 #include <stdlib.h> 3 #define MAX_SIZE 4 4 using namespace std; 5 typedef int ElemType; 6 typedef struct sequeue{ 7 ElemType d ...
分类:编程语言   时间:2020-05-01 12:35:59    阅读次数:62
UDP learn by Python3
Find max packet size I used the code above to find the max size of a UDP packet size by default configuration. The result on my computer is: More test ...
分类:编程语言   时间:2020-04-27 19:34:54    阅读次数:117
set为什么不能存储重复值
图示 set的两个主要实现类,TreeSet和HashSet,底层存储结构都是用的map,而且是将set需要存储的值放在map的key里的,PRESENT是一个空的object对象。 map每次put如果key值不存在,返回的是null,key值如果存在,则返回之前key的oldValue,这样与n ...
分类:其他好文   时间:2020-04-18 09:38:02    阅读次数:76
asp.net webapi测试
环境vs2010 应用=》管理NuGet程序包,安装MVC 4 新建项目 ValuesController.cs using System;using System.Collections.Generic;using System.Linq;using System.Net;using System ...
分类:Windows程序   时间:2020-04-15 15:18:30    阅读次数:100
391条   上一页 1 2 3 4 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!