The following documentation provides a baseline for configuring NGINX to proxy requests to MinIO in a Linux environment. It is not intended as a comprehensive approach to NGINX, proxying, or reverse proxying in general. Modify the configuration as necessary for your infrastructure. This documentation assumes the following: An existing NGINX deployment An existing MinIO deployment A DNS hostname which uniquely identifies the MinIO deployment There are two models for proxying requests to the MinIO Server API and the MinIO Console: Create or configure a dedicated DNS name for the MinIO service. For […]
View DetailsMinio 是一个基于Apache License v2.0开源协议的对象存储服务,虽然轻量,却拥有着不错的性能。它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据。
例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等,而一个对象文件可以是任意大小,从几 kb 到最大 5T 不等。
View Details1. 上传一张图片到minio,成功后,访问时却提示“AccessDenied ”的如下错误: 2. 因为我是本地测试,不存在跟服务器时间差异的问题,也不存在nginx配置的问题(没用nginx),所以我就猜测这个肯定是权限的问题,于是就发现Buckets中确实有个配置Access Policy的地方 打开一看,果不其然,设置为public,然后保存 3. 再刷新刚才访问的地址,能正常访问了 from:https://blog.csdn.net/LT_1029/article/details/135602460
View Details解决方法: spring boot admin设置配置:
1 |
spring.boot.admin.ui.public-url: http://xxx.xx.xxx.xxx:xxxx/ |
这个地址就是你ngnix代理的ip和端口 from:https://blog.csdn.net/qq_41032824/article/details/107392998
View Details解决方案,添加证书忽略
1 2 3 |
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.ServerCertificateValidationCallback = (_s, _x509s, _x509c, _ssl) => { return (true); }; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); |
from:https://www.cnblogs.com/real9527/p/17030336.html
View Details1.在“将远程桌面服务用户限制到单独的远程桌面服务会话”界面中选择“已禁用”然后点击确定;
2.然后返回连接界面,在“连接”界面中双击打开“限制连接的数量”;
报错:Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) 解决方法: 配置加速地址:
1 |
vim /etc/docker/daemon.json |
进入这个文件以后输入i打开编辑模式, 添加以下内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
{ "registry-mirrors": [ "https://2a6bf1988cb6428c877f723ec7530dbc.mirror.swr.myhuaweicloud.com", "https://docker.m.daocloud.io", "https://hub-mirror.c.163.com", "https://mirror.baidubce.com", "https://your_preferred_mirror", "https://dockerhub.icu", "https://docker.registry.cyou", "https://docker-cf.registry.cyou", "https://dockercf.jsdelivr.fyi", "https://docker.jsdelivr.fyi", "https://dockertest.jsdelivr.fyi", "https://mirror.aliyuncs.com", "https://dockerproxy.com", "https://mirror.baidubce.com", "https://docker.m.daocloud.io", "https://docker.nju.edu.cn", "https://docker.mirrors.sjtug.sjtu.edu.cn", "https://docker.mirrors.ustc.edu.cn", "https://mirror.iscas.ac.cn", "https://docker.rainbond.cc" ] } |
重启:
1 2 |
systemctl daemon-reload systemctl restart docker |
View Details
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
mybatis:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
1、ImportError: /usr/lib64/python2.7/site-packages/OpenSSL/crypto.so: symbol X509_REVOKED_dup, version libcrypto.so.10 not defined in file libcrypto.so.10 with link time reference
大致的意思就是crypto.so有问题,也查了很多版本又说OpenSSL的问题,但是我机器是环境变量的问题
View Details