FastDFS NGINX集成
1月 18, 2017 |
Nix.Huang
FastDFS 提供了fastdfs-nginx-module模块来支持通过NGINX访问FastDFS中存储 […more]
FastDFS 提供了fastdfs-nginx-module模块来支持通过NGINX访问FastDFS中存储 […more]
下载java客户端源码包 https://github.com/happyfish100/fastdfs-cl […more]
如下的示例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#/bin/sh declare -i a=2; declare -i b=3; if [ $a -lt $b ];then #"[ $a < $b ];" echo "it works" else echo "not work" fi c=$(($a>$b?$a:$b)) echo "c="$c d=$(($a>$b)) echo "d="$d declare -i e=$a+$b echo "e="$e |
输出为: it works c […more]
vi /etc/haproxy/haproxy.cfg 可以看到如下行 log 127.0.0.1 local […more]
SHELL 历史命令扩展(History Expansion) 在命令行执行如下命令 sed -n “2!p” […more]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#!/bin/sh #声明indexed 数组 declare -a arr=([0]="javacoder" [1]="xyz" [2]="cn"); #元素引用 echo "${arr[0]}.${arr[2]}" #所有元素 echo "all elements:${arr[@]}, ${arr[*]}" #某个元素的长度 echo "#arr[2]${#arr[0]}" #数组有几个元素 echo "#arr[*]${#arr[*]}" #迭代数组 for x in "${arr[@]}" do echo "--"${x} done #释放数组 unset arr; #------------------------ #声明关联数组 declare -A map=(["username"]="javacoder" ["suffix"]="cn") #关联数组元素引用 echo "${map['username']}.${map['suffix']}" #获取元素的key echo "!map[*]${!map[@]}" |
使用关联数组统计apache日志中每个IP出 […more]
网上有很多关于这个主题的配置,要么是陈旧的,要么是错误,胡乱转载,有时参考这些文章,反而给你的工作带来更大的麻 […more]
产出Key 执行以下步骤: tools->new User key Wizard 选择key Type为 […more]
需要安装rlwrap,它依赖readline,所以这两个都需要安装, yum install readline […more]