码迷,mamicode.com
首页 >  
搜索关键字:swap 云服务器    ( 6698个结果
云计算之路-阿里云上:负载均衡从七层换成四层后的意外发现
阿里云的负载均衡产品叫SLB,七层负载均衡用的是LVS+Tengine,四层负载均衡用的是LVS。昨天七层SLB出现了波动,我们后来改用了四层SLB。使用后意外地发现,用户请求的响应内容TCP出包走的是云服务器的公网网卡。
分类:其他好文   时间:2014-06-28 22:12:17    阅读次数:350
云计算之路-阿里云上:Wireshark抓包分析一个耗时20秒的请求
这篇博文分享的是我们针对一个耗时20秒的请求,用Wireshark进行抓包分析的过程。请求的流程是这样的:客户端浏览器 -> SLB(负载均衡) -> ECS(云服务器) -> SLB -> 客户端浏览器。从分析的情况看,SLB与客户端的网络环境都可能引起这个问题。但是从IIS日志来看,有些耗时长的...
分类:其他好文   时间:2014-06-19 00:31:12    阅读次数:779
Swap Nodes in Pairs
题目 Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only const...
分类:其他好文   时间:2014-06-18 11:53:39    阅读次数:138
C语言--指针(一)
#import //交换函数 void swap(int x, int y) { printf("x=%d,y=%d",x,y); int temp = 0; temp = x; x = y; y = temp; printf("x=%d,y=%d",x,y); } // void swap2(int *x , int *y)...
分类:编程语言   时间:2014-06-18 07:10:13    阅读次数:302
Linux Apache error 日志 提示[warn] child process 7751 still did not exit, sending a SIGTERM
Apache吃空内存,频繁宕机在部署一套内网测试环境时,频繁宕机,开机后不断的吃内存,重启apache之后内存占用会不停的上涨,直到swap用完,直到死机,由于是内网环境,服务器并发和压力都很校查看apache错误日志,报大量类似错误:[TueFeb1414:49:282012][warn]childprocess775..
分类:系统相关   时间:2014-06-16 16:54:32    阅读次数:226
第3讲 微信商城云服务器后台创建
本讲主要结合新浪sae云平台详细讲解了如何在sae平台上搭建微信商城的后台框架,如何让微信公众号接入sae后台程序,以及如何使用svn版本管理工具来管理云平台上的代码。本讲是我们进入微信商城后台功能程序开发的入口,只有搭建好了我们的微信后台框架,我们才可以为我们的微信商城定制开发出各种各样新奇的功能。...
分类:微信   时间:2014-06-16 14:46:10    阅读次数:453
云计算之路-阿里云上:超过70秒的请求抓包分析
超过70秒的请求是通过分析IIS日志发现的,通过Wireshark抓包分析请求是9:22:21收到的。这个请求响应内容的长度是:Content-Length 1154110(1.1MB),云服务器在收到请求后,发了一个ACK包。接下来就是一堆的TCP segment of a reassembled...
分类:其他好文   时间:2014-06-15 12:08:40    阅读次数:527
[LeetCode]Swap Nodes in Pairs
Description:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->...
分类:其他好文   时间:2014-06-15 07:35:31    阅读次数:151
云计算之路-阿里云上:2014年6月12日16:14遭遇SLB故障
这是今天遇到的第3次故障,故障是首先被园友发现的,访问园子出现来自SLB的错误提示:400 Bad Request - Powered by Tengine。查看Windows性能监视器发现,在故障期间SLB中的2台云服务器的http.sys的ArriveRate明显下降。
分类:其他好文   时间:2014-06-13 20:29:45    阅读次数:335
Leetcode:Swap Nodes in Pairs 链表成对交换节点
Swap Nodes in Pairs:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2...
分类:其他好文   时间:2014-06-13 17:04:27    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!