07 2016 档案

摘要:1.握手协议 客户端的首行遵照 Request-Line 格式,例:GET /chat HTTP/1.1 来自服务器的首行遵照 Status-Line 格式,例:HTTP/1.1 101 Switching Protocol /* 101以外的任何状态码表示 WebSocket 握手没有完成且 HT 阅读全文
posted @ 2016-07-21 10:51 wkccs 阅读(426) 评论(0) 推荐(0)
摘要:1.下载 镜像站点:https://gcc.gnu.org/mirrors.html 速度还不错的:ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/ 2.解压安装依赖库 ./contrib/download_prer 阅读全文
posted @ 2016-07-12 16:24 wkccs 阅读(11685) 评论(0) 推荐(0)
摘要:1.安装nodejs yum install -y nodejs 2.安装npm yum install -y npm 3.安装ws npm install ws 4.设置环境路径 export NODE_PATH=/usr/local/node_modules 5.示例server.js 执行no 阅读全文
posted @ 2016-07-08 15:10 wkccs 阅读(3997) 评论(0) 推荐(0)
摘要:1.查看数据库大小 use information_schema;select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='dbname'; 2.导出数据库数据 my 阅读全文
posted @ 2016-07-08 14:21 wkccs 阅读(160) 评论(0) 推荐(0)