1. 修改alpine镜像中的默认源地址信息 $ docker run -it alpine / # cd /etc/apk/ /etc/apk # sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositori ...
分类:
其他好文 时间:
2021-01-13 11:23:55
阅读次数:
0
user root; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { #use epoll; worker_connections 65535; } http ...
分类:
系统相关 时间:
2021-01-13 10:45:25
阅读次数:
0
自定义负载均衡 IRule接口介绍 com.netflix.loadbalancer.IRule 是自定义负载均衡的算法实现类 源码 /** * Interface that defines a "Rule" for a LoadBalancer. A Rule can be thought of ...
分类:
编程语言 时间:
2021-01-12 11:20:12
阅读次数:
0
Java 三大版本 Write Once、Run Anywhere JavaSE:标准版(桌面程序,控制台开发......) JavaME JavaEE:E企业级开发(web端,服务器开发.... JDK JRE JVM JDK: Java Development Kit (Java开发者工具) J ...
分类:
编程语言 时间:
2021-01-12 10:33:02
阅读次数:
0
centos7运行yum报如下提示: There are no enabled repos. Run "yum repolist all" to see the repos you have. To enable Red Hat Subscription Management repositorie ...
分类:
其他好文 时间:
2021-01-12 10:29:30
阅读次数:
0
完全删除mysql https://www.cnblogs.com/winter-bamboo/p/10837949.html vue表单绑定及css部分https://www.jianshu.com/p/0ccad24f6f03 export default暴露接口用法https://www.cn ...
分类:
其他好文 时间:
2021-01-11 11:27:58
阅读次数:
0
docker开机自启设置 命令:systemctl enable docker.service docker容器的开机自启 在使用docker run启动容器时,使用--restart参数来设置 例:# docker run -d --name mysql -p 3306:3306 --restar ...
分类:
其他好文 时间:
2021-01-11 10:57:00
阅读次数:
0
在windows下,新建一个 config_rabbitmq.conf 配置文件 开始logstash的时候,新建一个 run_rabbitMQ.bat 批处理,内容是 logstash -f config_rabbitMQ.conf 运行 run_rabbitMQ.bat 批处理文件就行了 先在r ...
分类:
其他好文 时间:
2021-01-11 10:32:31
阅读次数:
0
In AKS, the absolute maximum number of nodes that a cluster can have depends on a few configurations, including whether the node is in a VM State Set ...
分类:
其他好文 时间:
2021-01-08 11:41:16
阅读次数:
0
阶段的划分 ? SparkContext对象包含有一个私有属性DAGScheduler阶段调度器,主要用于阶段的划分。在一个应用程序中,任务的提交都是从行动算子触发的。行动算子的方法内部会调用一个runJob方法,其中就有DAG调度器发挥运行Job的作用: dagScheduler.runJob(r ...
分类:
其他好文 时间:
2021-01-08 11:26:05
阅读次数:
0