上一页 1 2 3 4 5 6 7 8 9 ··· 30 下一页

2016年11月1日

some 算法

摘要: 矩阵变换:: 请用一条语句将: arr = [[1, 2, 3, 'a'], [4, 5, 6, 'b'], [7, 8, 9, 'c']] 转换装置矩阵为: [[1, 4, 7], [2, 5, 8], [3, 6, 9], ['a', 'b', 'c']] [ [ each[i] for eac 阅读全文

posted @ 2016-11-01 22:23 kramer 阅读(185) 评论(0) 推荐(0) 编辑

2016年10月19日

https 原理

摘要: https 是在http协议基础上用ssl协议封装加密。ssl协议目前发展到了3.0。根据ssl3.0的升级版,出现了TSL协议。实际上https用的是TSL。 https协议的通信过程用到了对称加密,非对称加密和哈希算法。 假设有客户端c和网站w。 那么https的交流过程大致如下: c: 我想和 阅读全文

posted @ 2016-10-19 11:22 kramer 阅读(202) 评论(0) 推荐(0) 编辑

cache and database

摘要: This article referenced from http://coolshell.cn/articles/17416.html We all know that high concurrency, high I/O is a big challenge to database. So we 阅读全文

posted @ 2016-10-19 10:19 kramer 阅读(150) 评论(0) 推荐(0) 编辑

2016年8月24日

neutron dhcp

摘要: neutron dhcp 采用dnsmasq服务来实现。和传统的 dhcp 一样, dhcp请求也分为4步 The client sends a discover (“I’m a client at MAC address 08:00:27:b9:88:74, I need an IP addres 阅读全文

posted @ 2016-08-24 15:19 kramer 阅读(336) 评论(0) 推荐(0) 编辑

2016年7月13日

ovs ml2

摘要: 用openvswitch + ml2 构建vlan类型的tenant/project 网络 配置ml2 和 openvswitch_agent 配置 /etc/neutron/plugins/ml2/ml2_conf.ini [root@controller01 ~] cat /etc/neutro 阅读全文

posted @ 2016-07-13 16:06 kramer 阅读(463) 评论(0) 推荐(0) 编辑

2016年7月12日

NetworkManager的坑(如何让network manager不去管理网络端口)

摘要: 在CentOS上,有时你需要停止并禁用 NetworkManager。但这样做了之后,其实NetworkManager还在影响着你的端口。 比如你有端口配置如下: [root@compute02 ~] cat /etc/sysconfig/network scripts/ifcfg ens35 DE 阅读全文

posted @ 2016-07-12 18:42 kramer 阅读(9344) 评论(0) 推荐(0) 编辑

2016年7月11日

How to remote debug neutron

摘要: First of all, I will assume that you know how to use pydevd to remote debug normal python program. If you do not know that, you can read the correspon 阅读全文

posted @ 2016-07-11 15:34 kramer 阅读(406) 评论(0) 推荐(0) 编辑

2016年6月1日

neutron trouble shooting - ip can not ping

摘要: neutron创建了一个router后,显示列表如下: [root@controller01 keystone] neutron router port list router + + + + + | id | name | mac_address | fixed_ips | + + + + + | 阅读全文

posted @ 2016-06-01 16:58 kramer 阅读(235) 评论(0) 推荐(0) 编辑

openstack setup demo Compute service

摘要: 本文包含以下部分 Compute service overview Install and configure controller node Prerequisites Install and configure components Finalize installation Install a 阅读全文

posted @ 2016-06-01 10:02 kramer 阅读(739) 评论(0) 推荐(0) 编辑

2016年5月31日

openstack setup demo Image service

摘要: Image service (glance)是openstack中管理vm image的service。本文包含以下内容: overview install overview glance包含以下部分 glance api 是glance的API接口。用户通过该接口发现,调用以及存取vm image 阅读全文

posted @ 2016-05-31 14:35 kramer 阅读(363) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 30 下一页

导航