91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos6.5 或6.x   5.x搭建smokeping

發布時間:2020-10-08 18:08:17 來源:網絡 閱讀:516 作者:13260130504 欄目:軟件技術

1.準備工作

  關掉防火墻和SELINUX

 

2.安裝rpmforge

# yum install wget

  (****CentOS 6請使用這個庫****)

    

wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

rpm -Uvh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm 

 (****CentOS 5請使用這個庫****)

wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

rpm -Uvh rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

 

 

3.安裝需要的軟件包

# yum install mod_fcgid httpd httpd-devel rrdtool fping wget curl bind-utils gcc make

# yum install perl perl-Net-Telnet perl-Net-DNS perl-LDAP perl-libwww-perl perl-RadiusPerl perl-IO-Socket-SSL perl-Socket6 perl-CGI-SpeedyCGI perl-FCGI perl-RRD-Simple perl-CGI-SpeedCGI perl-ExtUtils-MakeMaker

 

 

4.安裝smokeping

# wget http://oss.oetiker.ch/smokeping/pub/smokeping-2.6.8.tar.gz

# tar -zxvf smokeping-2.6.8.tar.gz -C /opt/
# mkdir /opt/smokeping
# cd /opt/smokeping-2.6.8/setup
# ./build-perl-modules.sh
# cp -r ../thirdparty /opt/smokeping/
# cd ..
# ./configure –prefix=/opt/smokeping

# make install

 

5.創建丟失的文件夾

# cd /opt/smokeping
# mkdir data var cache

 

 

6.添加smokeping啟動/停止腳本

# wget http://new.wedebugyou.com/static/smokeping_start_stop.txt
# mv smokeping_start_stop.txt /etc/init.d/smokeping
# chmod 755 /etc/init.d/smokeping

 

 

7.重命名配置文件和更改安全

# cd /opt/smokeping/etc/
# for foo in *.dist; do cp $foo `basename $foo .dist`; done
# chmod 600 /opt/smokeping/etc/smokeping_secrets.dist

 

 

8.更改默認配置文件

 # vim config

(“*”號范圍離得為配置文件樣例)

************************************************************************

*** General ***

 

owner    = Nolan Guo

contact  = guoyingce@originpoker.com

# mailhost = my.mail.host

# sendmail = /usr/sbin/sendmail

# NOTE: do not put the Image Cache below cgi-bin

# since all files under cgi-bin will be executed ... this is not

# good for p_w_picpaths.

imgcache = /opt/smokeping/cache

imgurl   = cache

datadir  = /opt/smokeping/data

piddir  = /opt/smokeping/var

cgiurl   = http://*****/smokeping.cgi

smokemail = /opt/smokeping/etc/smokemail.dist

tmail = /opt/smokeping/etc/tmail.dist

# specify this to get syslog logging

syslogfacility = local0

# each probe is now run in its own process

# disable this to revert to the old behaviour

# concurrentprobes = no

 

*** Alerts ***

to = alertee@address.somewhere

from = smokealert@company.xy

 

+someloss

type = loss

# in percent

pattern = >0%,*12*,>0%,*12*,>0%

comment = loss 3 times  in a row

 

*** Database ***

 

step     = 300

pings    = 20

 

# consfn mrhb steps total

 

AVERAGE  0.5   1  1008

AVERAGE  0.5  12  4320

    MIN  0.5  12  4320

    MAX  0.5  12  4320

AVERAGE  0.5 144   720

    MAX  0.5 144   720

    MIN  0.5 144   720

 

*** Presentation ***

 

template = /opt/smokeping/etc/basepage.html.dist

+ charts

 

menu = Charts

title = The most interesting destinations

 

++ stddev

sorter = StdDev(entries=>4)

title = Top Standard Deviation

menu = Std Deviation

format = Standard Deviation %f

 

++ max

sorter = Max(entries=>5)

title = Top Max Roundtrip Time

menu = by Max

format = Max Roundtrip Time %f seconds

 

++ loss

sorter = Loss(entries=>5)

title = Top Packet Loss

menu = Loss

format = Packets Lost %f

 

++ median

sorter = Median(entries=>5)

title = Top Median Roundtrip Time

menu = by Median

format = Median RTT %f seconds

 

+ overview

 

width = 600

height = 50

range = 10h

 

+ detail

 

width = 600

height = 200

unison_tolerance = 2

 

"Last 3 Hours"    3h

"Last 30 Hours"   30h

"Last 10 Days"    10d

"Last 400 Days"   400d

 

#+ hierarchies

#++ owner

#title = Host Owner

#++ owner

#title = Host Owner

#++ location

#title = Location

 

*** Probes ***

 

+ FPing

 

binary = /usr/sbin/fping

 

+ Curl

binary = /usr/bin/curl

urlformat = https://%host%/

pings = 3

 

*** Targets ***

 

probe = FPing

 

menu = Top

title = Network Latency Grapher

remark = Welcome to the SmokePing website of Originpoker Company. \

         Here you will learn all about the latency of our network.


 


************************************************************************

 

 

9.smokeping到Web服務器的配置

# cd /opt/smokeping
# ln -s /opt/smokeping/cache /opt/smokeping/htdocs/cache
# chown -R apache cache
# chown -R apache data

 

(添加這些行為的文件/ etc /服務器/ conf.d/smokeping.conf)

ScriptAlias/smokeping/smokeping.cgi /opt/smokeping/htdocs/smokeping.fcgi.dist

Alias /smokeping /opt/smokeping/htdocs

<Directory “/opt/smokeping/htdocs”>
Options FollowSymLinks
</Directory>

 

10.啟動服務

# /etc/init.d/smokeping start
# /etc/init.d/httpd start


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合阳县| 芜湖县| 碌曲县| 新干县| 浙江省| 紫云| 马尔康县| 定南县| 舟山市| 读书| 临清市| 宁城县| 双桥区| 萨迦县| 定襄县| 乌恰县| 洪洞县| 浪卡子县| 文昌市| 镇巴县| 临沭县| 壶关县| 明水县| 舞钢市| 新建县| 延寿县| 洮南市| 博兴县| 驻马店市| 资源县| 云和县| 石家庄市| 正蓝旗| 呼图壁县| 西盟| 井研县| 宜都市| 岗巴县| 康平县| 惠水县| 临西县|