binlog导出 发表于 2018-06-11 1mysqlbinlog --base64-output=decode-rows bin-xxx > binlog.txt 报utf-8 错误注释掉my.cnf 里 default-character-set = utf8 阅读全文 »
修改mysql definer 发表于 2018-04-25 修改function、procedure的definer12select definer from mysql.proc; -- 函数、存储过程update mysql.proc set definer='user@localhost'; -- 如果有限定库或其它可以加上whe ... 阅读全文 »
oss迁移 发表于 2018-04-24 阿里云oss跨区域迁移 由于阿里云跨区域复制需收流量费,而且不支持过滤已存在文件,所以利用api实现过滤掉已存在的文件,上传使用内网,降低流量费用。1234567891011121314151617181920212223242526272829# -*- coding: utf-8 -*-impo ... 阅读全文 »
阿里云SLB Python-sdk 发表于 2018-04-24 阿里云SLB Python-sdk 范例1234567# 首先安装依赖 pip install aliyun-python-sdk-core# 如果您使用Python 3.x,执行以下命令,安装阿里云SDK核心库:# pip install aliyun-python-sdk-core-v3pip ... 阅读全文 »
Nginx Google 扩展 发表于 2018-01-17 依赖库pcre 正则 ngx_http_proxy_module 反向代理 ngx_http_substitutions_filter_module 多重替换 安装 以 ubuntu 14.04 为例 i386, x86_64 均适用 最简安装1234567891011121314151617181 ... 阅读全文 »
Git冲突:commit your changes or stash them before you can merge. 发表于 2018-01-17 今天用Git pull来更新代码,遇到了下面的问题:1234error: Your local changes to the following files would be overwritten by merge: xxx/xxx/xxx.java Please, commit yo ... 阅读全文 »
Gitlab库已损坏前端显示500错误解决方法 发表于 2018-01-17 Gitlab创建备份1#gitlab-rake gitlab:backup:create 使用以上命令会在/var/opt/gitlab/backups目录下创建一个名称类似为1393513186_gitlab_backup.tar的压缩包, 这个压缩包就是Gitlab整个的完整部分, 其中开头的1 ... 阅读全文 »
tomcat 扫描jar包,卡住不动 发表于 2018-01-16 修改:123vim /usr/local/jdk1.8.0_144/jre/lib/securitysecurerandom.source=file:/dev/./urandom 阅读全文 »
MacOS 下安装mysqlclient 的问题及解决办法 发表于 2018-01-16 在开发Django时,刚开始使用的sqlite进行开发,想部署到生产环境需要连接到mysql上再跑一边测试。为了不破坏整机的文件环境,我使用了Docker运行了Mysql。并没有通过源码的方式或brew命令来安装mysql。在刚运行Django 的 migrate命令的时,便提示我不存在连接mysq ... 阅读全文 »