摘要:
docker版本:18.09.6 或以上 rabbitmq镜像版本:rabbitmq:3.9.5-management 一、拉镜像: docker pull rabbitmq:3.9.5-management 二、查看镜像erlang cookie: docker run --rm rabbitmq 阅读全文
摘要:
运行结果: 参考资料: https://www.cnblogs.com/dhcn/p/9032461.html 阅读全文
摘要:
asyncio模块是python之父写的模块,按说应该是靠谱的,python3.6版本定义为稳定版本。 说明书:https://docs.python.org/3/library/asyncio.html?highlight=asyncio#module-asyncio 大概定义:该模块提供了使用协 阅读全文
摘要:
注意:字体文件必须是TTF或者ttf格式的文件, 1、yum install -y fontconfig mkfontscale2、mkdir -p /usr/share/fonts/windows_fonts3、上传ttf格式的字体文件到 /usr/share/fonts/windows_font 阅读全文
摘要:
1、推consul的镜像到生产应用全部服务器。 每个consul的server模式的容器,都需要单独的物理服务器。 主节点:docker run -d --net=host --name=consul_pre1 consul:0.9.0 agent -server -bind=10.0.0.20 - 阅读全文
摘要:
安装必要的依赖: [root@docker ~]# yum -y install device-mapper-event-libs [root@docker ~]# yum -y install docker-io 获取私有仓库镜像: [root@docker ~]# docker pull reg 阅读全文
摘要:
# Kernel sysctl configuration file for Red Hat Linux## For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and# sysctl.conf(5) for more deta 阅读全文
摘要:
# Kernel sysctl configuration file for Red Hat Linux## For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and# sysctl.conf(5) for more deta 阅读全文
摘要:
入口服务器(网关服务器)关闭selinuxsetenforce 0vim /etc/selinux/config将SELINUX=enforcing改为SELINUX=disabled 修改防火墙iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE 阅读全文
摘要:
再来一个升级版本的,selectors模块,它底层是看操作系统的,默认是epoll,但是如果不支持,比如windows,linux kernel < 2.6,就用select模式 这里注意,有个非常非常尴尬的问题情景: 需求: 1、基于socket 2、要多进程处理业务(多线程由于GIL锁,多核也无 阅读全文