Yokiy 运维自动化平台项目 发表于 2019-12-31 Yokiy 运维自动化平台项目 项目地址:https://gitee.com/jdytrip/jdy_devops.git DEMO: http://demo.yokiy.com/ 用户名 admin 密码 admin123 项目简介 这是一个web自动化平台,实现一键部署。 基于Pytho ... 阅读全文 »
kubeadm k8s HA 高可用集群搭建 发表于 2019-01-12 修改host文件12345cat <</etc/hosts>>EOF172.16.70.251 master-1172.16.70.252 master-2172.16.70.1 master-3EOF 安装docker-ce12345sudo yum-config-mana ... 阅读全文 »
Python SDK 阿里云容器镜像仓库 发表于 2018-08-07 安装模块完成以下操作安装Python SDK: 安装SDK核心库。 如果您使用Python 2.x,执行以下命令,安装阿里云SDK核心库: 1pip install aliyun-python-sdk-core 如果您使用Python 3.x,执行以下命令,安装阿里云SDK核心库: 1pip ... 阅读全文 »
K8S移除节点 发表于 2018-06-29 向Kubernetes集群添加/移除NodeMinion Node操作前准备1234567891011121314151617#关闭防火墙systemctl stop firewalld#禁止防火墙开机启动systemctl disable firewalld#检查selinuxgetenforce ... 阅读全文 »
gyp WARN EACCES user root does not have permission to access the dev dir 发表于 2018-06-11 12gyp WARN EACCES user "root" does not have permission to access the dev dir "/home/countly/nodejs/lib/node_modules/time/.node-gyp/0.10 ... 阅读全文 »
NGINX+UWSGI 莫名发生Nginx 502 Bad Gateway错误的排查 发表于 2018-06-11 原因是NGINX的默认缓冲区是4096,需要大量数据传输的话可以提高到64k (65535)。一种方法是在UWSGI配置文件添加buffer-size=65535,重启服务器 阅读全文 »
GIT恢复版本 发表于 2018-06-11 12345git clone http://github.xxx.cn/xxx.gitgit checkout sp-passport-v1.0git log (找到需要恢复时间点的值)git reset --hard 0298b34e43cb28f78d9934ee7512b51db8b5e862 ... 阅读全文 »
修改mysql的definer 发表于 2018-06-11 修改function、procedure的definer 12select definer from mysql.proc; -- 函数、存储过程update mysql.proc set definer='user@localhost'; -- 如果有限定库或其它可以加上w ... 阅读全文 »
阿里云redis外网连接 发表于 2018-06-11 在云服务器 ECS Linux 中安装 rinetd。123wget http://www.boutell.com/rinetd/http/rinetd.tar.gz && tar -xvf rinetd.tar.gz && cd rinetdsed -i &apos ... 阅读全文 »
MAC安装pycurl 发表于 2018-06-11 1ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-timessl backend (none/other) 这个问题是可以用重新安装解决123pip uninstall py ... 阅读全文 »