摘要: #!/bin/sh clear echo -e "\n\n\t\t\tScripts admin menu" echo -e "\n\t\t++++++++++++++++++++++++++++\n" echo -e "\t\t1. Install Apche" echo -e "\t\t2. I 阅读全文
posted @ 2018-05-11 16:22 Me-lihu 阅读(1) 评论(0) 推荐(0) 编辑
摘要: nginx代理服务器配置 upstream模块的负载均衡算法主要有三种,轮调(round-robin)、ip哈希(ip_hash)和最少连接(least_conn)三种。weight等于0或不写表示不参与负载均衡,upstream模块定义到server模块外 upstream websrv { ip 阅读全文
posted @ 2018-05-11 15:51 Me-lihu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 文件重定向给read处理: #! /bin/bash cat /etc/passwd | while read LINE do echo $LINE done 用read读取文件重定向: #! /bin/bash while read LINE do echo $LINE done < /etc/p 阅读全文
posted @ 2018-05-11 15:50 Me-lihu 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash . /etc/init.d/functions function name() { if [ -z $1 ];then echo "Usg:sh $0 [ip/domain]" return 1 else ping -c 3 $1 >/dev/null if [ $? -eq 阅读全文
posted @ 2018-05-11 15:15 Me-lihu 阅读(2) 评论(0) 推荐(0) 编辑