Linux
telenav_wjxie
这个作者很懒,什么都没留下…
展开
-
Shell :导出 Mysql 数据
[code="java"] #!/bin/bash # Author: wjxie # Created at: 2014-12-19 # Feature: dump and clear table ad.ad_hit set -e USERNAME="******" PASSWORD="******" DATABASE="ad" MYSQL=`which mysql` TO...2015-06-08 17:05:23 · 144 阅读 · 0 评论 -
Shell :利用 sshpass 远程传输文件
[code="java"] #!/bin/sh sshpass -p "$4" ssh $3@$1 -p $22015-06-08 17:17:44 · 976 阅读 · 0 评论 -
Shell :清理 tomcat 的 log
[code="java"] #!/bin/bash # Author: wjxie # Created at: 2014-12-19 # Feature: remove logs before n days LOG_DIR_TOMCAT="/root/workspaces/apache-tomcat-7.0.55/logs/" LOG_DIR_WEB="/root/workspac...2015-06-08 17:23:22 · 102 阅读 · 0 评论 -
LVS 的三种模式: NAT 、 IP TUN 和 DR 技术
[color=red]====== NAT ======[/color] 说明: LVS 服务器需要两块网卡,一块配置公网 IP (vip) ,一块配置私网 IP ;并且需要打开路由管道,让自己变成一个路由器。 整个网络环境只需要一个公网 IP 。 真实服务器不需要做任何配置。 ------ ip config ------ LVS Server: vip: 8.8.8.8 (e...2015-06-11 21:44:52 · 227 阅读 · 0 评论