logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

docker镜像仓库harbor集成trivy及仓库api等全家桶

一、安装docker[root@localhost home]# yum install -y yum-utils device-mapper-persistent-data lvm2[root@localhost home]# yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker

#docker#linux#https
docker容器实用命令一览及rancher及镜像操作全家桶

1、安装1.1 安装前准备关闭防火墙并禁止开机自启systemctl stop firewalld.servicesystemctl disable firewalld关闭selinux,若不关闭会影响容器查看映射的宿主机文件的权限setenforce 0sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/sysconfig/selinux1.

#docker#容器#rancher
linux系统维护篇:centos7.9桌面环境安装百度网盘客户端(libstdc++.so.6: version `GLIBCXX_3.4.20‘ not found)

1、官网下载linux版本rpm包https://pan.baidu.com/download2、上传到服务进行安装rpm -ivh baidunetdisk-3.5.0.x86_64.rpm会遇到需要依赖包报错,这是使用yum 安装缺失的依赖包。或者yum -y installbaidunetdisk-3.5.0.x86_64.rpm直至安装成功3、启动百度云盘报错提示:libstdc++.so

#linux#百度#centos
nginx系列之健康检查模块配置安装(nginx_upstream_check_module)

---nginx安装步骤,不详述,请查看nginx系列篇,安装。---1.下载nginx_upstream_check_module模块 nginx_upstream_check_module-master.zipwget https://codeload.github.com/yaoweibin/nginx_upstream_check_module/zip/master2.将nginx_ups

#nginx#linux
spring开发篇二:@RequestParam和@RequestBody与前端Get和Post请求传参详解附中文乱码解决方法

1.先入为主:1.在spring的controller中,写法必须是同一个请求中只能有一个@RequestBody;同一个请求中,可以有多个@RequestParam;同一个请求可以同时存在@RequestBody和@RequestParam;2.请求中@RequestParam()指定的参数可以是普通元素、数组、集合等等;当@RequestBody 与@RequestParam()同时使...

到底了