goaccess
1234567yum -y install glib2 glib2-devel ncurses ncurses-devel GeoIP eoIP-devel goaccessgoaccess -d -f /usr/local/nginx/logs/2018/06/qd1b_access_20180614.log -a -p ~/.goaccessrc >/tmp/qd1b_access_20180614.htmlgoaccess -d -f qd_access_20171025.log -a -p ~/.goaccessrc >/tmp/qdaccess_20171026.html
GitHub 地址:https://github.com/allinurl/goaccess
官网地址:http://goaccess.io/
GoAccess日志规范:http://goaccess.io/man#custom-log
mysql各项配置
mysql配置文件/etc/my.cnfMySQL my.cnf参数配置优化详解
PS:本配置文件针对Dell R710,双至强E5620、16G内存的硬件配置。CentOS 5.6 64位系统,MySQL 5.5.x 稳定版。适用于日IP 50-100w,PV 100-300w的站点,主要使用InnoDB存储引擎。其他应用环境请根据实际情况来设置优化。
pps: 以下选项会被MySQL客户端应用读取。注意只有MySQL附带的客户端应用程序保证可以读取这段内容。
ppps:如果你想你自己的MySQL应用程序获取这些值。需要在MySQL客户端库初始化的时候指定这些选项
应用定制选项[client]
#password = [your_password]
port = @MYSQL_TCP_PORT@
socket = @MYSQL_UNIX_ADDR@
MySQL 服务端[mysqld]
# 一般配置选项
port = @MYSQL_TCP_PORT@
socket = @MYSQL_UNIX_ADDR@
# back_log 是操作系统在监听队列中所能保持的连接数,
# 队列 ...
xencenter安装系统卡死在mounting_tmp_as_tmpfs_done
xencenter安装系统卡死在mounting_tmp_as_tmpfs_done解决方案:
首先通过 xe vm-list 获取UUID
然后再执行 xe vm-param-set uuid=uuid_of_your_virtual_machine platform:viridian=false
接着重新启动你要安装的那个系统
http://serverfault.com/questions/535492/rhel-clones-centos-scientific-cern-network-installation-on-xenserver-6-2
git基础
123mkdir /git_dircd /git_dirgit init
123456vim readme.md ## this is 13's test git_dir ## use for learn git git add readme.md #添加文件,可反复多次,添加多个文件git commit -m <message> #将添加操作提交 message为相应信息,建议此处输入可读性强的信息
12git status #查看仓库当前的状态git diff readme.md #对比
12345git log # 历史记录git log --pretty=oneline #简略版历史记录git reset --hard HEAD^ #返回上一次修改git reset --hard id #返回id标明的修改git reflog #查看命令历史
prometheus(普罗米修斯)入门使用
prometheus(普罗米修斯)入门使用一 说明Prometheus是最近几年开始流行的一个新兴监控告警工具,特别是 kubernetes 的流行带动了 prometheus 的应用。Prometheus 是一套完整的监控告警系统:
Prometheus的主要特点有:
12345671. a multi-dimensional data model with time series data identified by metric name and key/value pairs2. a flexible query language to leverage this dimensionality3. no reliance on distributed storage; single server nodes are autonomous4. time series collection happens via a pull model over HTTP5. pushing time series is supported via an intermediary gatewa ...