摘要: 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 阅读(3884) 评论(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 阅读(150) 评论(0) 推荐(0) 编辑