摘要: 函数的返回值用return,脚本的返回值用exitshell函数只允许返回数字,若不是则报line 6: return: num: numeric argument required;若是写了return,则返回return语句后跟的数值,若是没有return语句则返回最后一个命令的执行结果 1、函 阅读全文
posted @ 2017-12-14 15:55 風£飛 阅读(379) 评论(0) 推荐(0) 编辑
摘要: [root@web01 scripts]# man console_codesecho -e "\033[背景颜色;字体颜色m字符串\033[0m",例:echo -e "\033[41;36m something here \033[0m"注: 1、背景颜色和字体颜色之间是英文的“;” 2、文字颜 阅读全文
posted @ 2017-12-14 15:36 風£飛 阅读(670) 评论(0) 推荐(0) 编辑
摘要: [root@nginx ~]# sh /etc/scripts/process.sh #!/bin/bash FILENAME=`basename $0 .sh` #获取脚本文件名称,不包含.sh后缀 FILEPATH=`dirname $0` echo "PID of this script: $ 阅读全文
posted @ 2017-12-14 15:23 風£飛 阅读(313) 评论(0) 推荐(0) 编辑
摘要: lnmp和lamp架构搭建一键安装脚本下载地址:https://lnmp.org/download.html https://github.com/teddysun/lamp/tree/master官方模板下载地址:https://share.zabbix.com/;https://github.c 阅读全文
posted @ 2017-12-12 12:05 風£飛 阅读(932) 评论(0) 推荐(0) 编辑
摘要: 一、limit:速率限制-m limit 说明:--limit 1000/s #设置最大平均匹配速率--limit 5/m --limit-burst 15 #表示一开始能匹配的数据包数量为15个,每匹配到一个,limit-burst的值减1,所以匹配到15个时,该值为0,每过12s,limit-b 阅读全文
posted @ 2017-12-08 09:58 風£飛 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: root> show configuration | display set 配置按set行显示,查看的配置为未commit的配置(commit check)root# set system services ssh 全局开启SSH服务root# set system root-authentica 阅读全文
posted @ 2017-12-07 14:53 風£飛 阅读(575) 评论(0) 推荐(0) 编辑
摘要: 1、邮件发送配置[root@Zabbix ~]# yum -y install mail #如有mail命令则不用安装[root@Zabbix ~]# vim /etc/mail.rc# Display the recipients of messages sent by the user hims 阅读全文
posted @ 2017-12-07 14:21 風£飛 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 更改squid错误页面时间不对的问题解压源码包,进入此路径/usr/local/squid/share/errors/zh-cn(需要更改该目录下的所有文件find -type f |xargs sed -i 's#%T#%t#g'),编辑ERR_ACCESS_DENIED文件 Squid命令常用参 阅读全文
posted @ 2017-12-07 11:38 風£飛 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 1. 设置IP地址、网关ee /etc/rc.conf ifconfig_em0="inet 192.168.21.173 netmask 255.255.255.0" #设置IP地址,子网掩码defaultrouter="192.168.21.2" #设置网关hostname="FreeBSD" 阅读全文
posted @ 2017-12-07 11:11 風£飛 阅读(616) 评论(0) 推荐(0) 编辑
摘要: FreeBSD使用手册 root@BSD:~ # bsdconfig root@BSD:~ # bsdinstallroot@BSD:~ # ee /etc/ssh/sshd_config #开启root用户密码登陆PermitRootLogin yesPasswordAuthentication 阅读全文
posted @ 2017-12-07 10:51 風£飛 阅读(587) 评论(0) 推荐(0) 编辑