会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Ray雷
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2017年8月17日
python 常用库整理
摘要: python 常用库整理 GUI 图形界面 Tkinter: Tkinter wxPython:wxPython pyGTK:PyGTK pyQt:pyQt WEB框架 django:django web2py:web2py flask:flask bottle:bottle tornado web
阅读全文
posted @ 2017-08-17 14:45 Ray雷
阅读(507)
评论(0)
推荐(0)
2017年8月7日
Python后端开发要求
摘要: 关于Python后端开发要求 一.对Python有兴趣,熟悉Python(标准库) 最好阅读过源码 了解Python的优化(熟悉pypy更佳) 二.至少至少一门语言(不说“精通”) 起码熟悉其他基本语言 C/C++ Lisp Haskell Scheme golang erlang Java R R
阅读全文
posted @ 2017-08-07 15:44 Ray雷
阅读(1734)
评论(0)
推荐(0)
2017年8月5日
自动化运维路线图
摘要:
阅读全文
posted @ 2017-08-05 16:54 Ray雷
阅读(344)
评论(0)
推荐(0)
2017年8月1日
linux expect自动登陆远程服务器 批量管理服务器
摘要: #!/usr/bin/expect set ipaddress [lindex $argv 0] set passwd [lindex $argv 1] set timeout 3 spawn ssh root@${ipaddress} expect { "yes/no" { send "yes\r
阅读全文
posted @ 2017-08-01 17:00 Ray雷
阅读(251)
评论(0)
推荐(0)
mysql 查询数据库内各表的占用大小
摘要: select TABLE_NAME, concat(truncate(data_length/1024/1024,2),' MB') as data_size, concat(truncate(index_length/1024/1024,2),' MB') as index_size from i
阅读全文
posted @ 2017-08-01 16:58 Ray雷
阅读(160)
评论(0)
推荐(0)
mysql 查询各数据库的占用大小
摘要: select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size, concat(truncate(sum(index_length)/1024/1024,2),'MB') as index_
阅读全文
posted @ 2017-08-01 16:57 Ray雷
阅读(473)
评论(0)
推荐(0)
shell脚本 案例
摘要: 1,写一个循环,ping整个子网的ip。 使用while循环 #!/bin/bash ip=223 while [ "$ip" -ne "239" ] do ping 121.201.0.$ip -c1 && echo "121.201.0.$ip yes" >> ip_list.txt || ec
阅读全文
posted @ 2017-08-01 12:03 Ray雷
阅读(245)
评论(0)
推荐(0)
intel服务器cpu命名规则
摘要: 我们以E3、E5、E7系列进行一个详细解析。首先,Intel E3、E5、E7代表了3个不同档次的至强CPU,至强“E系列”的这种命名方式有些类似桌面上的Core i3,i5,i7;比较通俗易懂的解释就是可以对应我们的豪华汽车生产商宝马3系,5系和7系。分别对应好,更好和最好。 其次,E3-1230
阅读全文
posted @ 2017-08-01 12:01 Ray雷
阅读(2941)
评论(0)
推荐(0)
linux 运维常用工具表
摘要: https://code.google.com/p/httperf/ ※测量Web服务器的性能 ./configure make &&make install http://www.xenoclast.org/autobench/downloads/autobench-2.1.2.tar.gz ※是
阅读全文
posted @ 2017-08-01 12:00 Ray雷
阅读(262)
评论(0)
推荐(0)
CentOS 6.4安装配置LNMP服务器(Nginx+PHP+MySQL)
摘要: 一 安装篇 1. 安装nginx yum check-update #更新yum源 yum remove httpd* php* #删除系统自带的软件包 yum install nginx #安装nginx 根据提示输入y进行安装 chkconfig nginx on #设置nginx开机启动 se
阅读全文
posted @ 2017-08-01 11:59 Ray雷
阅读(158)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告