记录技术路上的点滴
本文写于 2014 年。当时 Redis 官方高可用方案 Redis Sentine,处于 beta 阶段。
阅读全文
使用非root账户,运行如下python脚本:
import threadingimport time########################################################################class TestThread(threading.Thread): def __init__(self): """Constructor""" threading.Thread.__init__(self) def run(self): while True: print 'haha' time.sleep(2)if __name__ == '__main__': count = 1000 for i in range(count): athread = TestThread() athread.start()
本文2015年写的关于堡垒机文章的汇总。
本文写于 2015年。sftp依赖ssh,是最常用的文件传输方法。
本文写于 2015年。当前阿里云 OSS 的情况可能同本文描述的存在偏差。
本文写于 2016年。介绍 Mysql 双主的安装方法。
本文写于 2015年。OpenVPN 是主流的开源 VPN 解决方案。
操作系统:CentOS 7.4 64bit
git:1.8.3.1
gitolite:3.6.10
git原生不支持权限管理,gitolite可实现git的权限管理
Linux下使用命令
本文写于 2015 年。Keepalived 是在传统网络中,常用的网络容灾方案。