CentOS 7 સિસ્ટમની Vesta CP પેનલ પર Monit પ્રક્રિયાને કેવી રીતે ગોઠવવી?

પહેલાંચેન વેઇલીંગબ્લોગ શેર કર્યો છેCentOS મોનિટ ▼ ઇન્સ્ટોલ અને ગોઠવવા માટે 6 ટ્યુટોરીયલ

જો કે, CentOS 7 રૂપરેખાંકનમાંમોનીટરીંગCentOS 6 થી કેટલાક તફાવતો સાથેનો પ્રોગ્રામ, બરાબર એ જ નથી.

જો તમારીLinuxહોસ્ટ CentOS 7 સિસ્ટમનો ઉપયોગ કરે છે. Vesta CP પેનલ પર Monit ઇન્સ્ટોલ કર્યા પછી, તમે Monit મોનિટરિંગ પ્રોગ્રામને ગોઠવવા માટે આ ટ્યુટોરીયલને અનુસરી શકો છો.

મોનીટ મોનીટરીંગ પ્રક્રિયા સેવા

નીચે મોનિટ મોનિટરિંગ પ્રક્રિયાની સેવા રૂપરેખાંકન સામગ્રી છે (કેટલીક ઓછી ઉપયોગમાં લેવાતી મોનિટરિંગ સેવાઓ કાઢી નાખો):

  • clamd
  • ક્રૉન્ડ
  • કબૂતર
  • એક્ઝિમ
  • httpd
  • memcached
  • MySQL
  • nginx
  • સ્પામssસસીન
  • એસએસડી
  • vesta-nginx
  • vesta-php
  • vsftpd
  • મોનિટર જગ્યા અને inodes ચાલુ
  • સિસ્ટમ સંસાધનોનું નિરીક્ષણ કરો (RAM, સ્વેપ, CPU, લોડ)

મોનીટરીંગ રૂપરેખાંકન

CentOS 6 અને 7 માટે મોનિટ રૂપરેખાંકન ફાઇલ નામો અલગ છે:

  • CentOS 6 માટેની Monit રૂપરેખાંકન ફાઇલનું નામ "monit.conf" છે.
  • CentOS 7 માટે Monit રૂપરેખાંકન ફાઇલનું નામ "monitrc" છે

SFTP સાથે 软件તમારું Linux સર્વર દાખલ કર્યા પછી, Monit રૂપરેખાંકન ફાઇલમાં ફેરફાર કરો ▼

/etc/monitrc

આ "monitrc" ફાઇલમાં નીચેની રૂપરેખાંકન સામગ્રી ઉમેરો ▼

##
## 陈沩亮博客示例monit配置文件说明:
## 1. 域名以 www.etufo.org 为例。
## 2. 后面带xxx的均是举例用的名字,需要根据自己的需要修改。
##
################################################## #############################
## Monit control file
################################################## #############################
#
# 检查周期,默认为2分钟,对于网站来说有点长,可以根据需要自行调节,这改成30秒。
set daemon 30

include /etc/monit.d/*

# 日志文件
set logfile /var/log/monit.log

#
# 邮件通知服务器
#
#set mailserver mail.example.com
set mailserver localhost with timeout 30 seconds

#
# 通知邮件的格式设置,下面是默认格式供参考
#
## Monit by default uses the following alert mail format:
##
## --8<--
## From: monit@$HOST # sender
## Subject: monit alert -- $EVENT $SERVICE # subject
##
## $EVENT Service $SERVICE #
## #
## Date: $DATE #
## Action: $ACTION #
## Host: $HOST # body
## Description: $DESCRIPTION #
## #
## Your faithful employee, #
## monit #
## --8<--
##
## You can override the alert message format or its parts such as subject
## or sender using the MAIL-FORMAT statement. Macros such as $DATE, etc.
## are expanded on runtime. For example to override the sender:
#
# 简单的,这只改了一下发送人,有需要可以自己修改其它内容。
set mail-format { from: admin@xxxx }

# 设置邮件通知接收者。建议发到gmail,方便邮件过滤。
set alert xxx@xxxx

set httpd port 2812 and #设置http监控页面的端口
use address www.etufo.org # http监控页面的IP或域名
##allow localhost # 允许本地访问
##allow 203.82.90.239 # 允许指定IP访问
allow user:password # 访问用户名密码

################################################## #############################
## Services
################################################## #############################
#
# 系统整体运行状况监控,默认的就可以,可以自己去微调
#
# 系统名称,可以是IP或域名
#check system www.etufo.org
# if loadavg (1min) > 4 then alert
# if loadavg (5min) > 2 then alert
# if memory usage > 75% then alert
# if cpu usage (user) > 70% then alert
# if cpu usage (system) > 30% then alert
# if cpu usage (wait) > 20% then alert


# 可选的ssl端口的监控,如果有的话
# if failed port 443 type tcpssl protocol http
# with timeout 15 seconds
# then restart

# 监控mariadb
check process mysql with pidfile /var/run/mariadb/mariadb.pid
start program = "/usr/bin/systemctl start mariadb"
stop program = "/usr/bin/systemctl stop mariadb"
if failed host 127.0.0.1 port 3306 for 2 cycles then restart
if 2 restarts within 4 cycles then timeout

# 监控httpd
check process httpd with pidfile /var/run/httpd/httpd.pid
    start program = "/usr/bin/systemctl start httpd"
    stop program = "/usr/bin/systemctl stop httpd"
#    if children > 120 for 2 cycles then restart
#    if failed host localhost port 8080 protocol http for 2 cycles then restart
#    if 4 restarts within 10 cycles then timeout
  
# 监控nginx
check process nginx with pidfile /var/run/nginx.pid
    start program = "/usr/bin/systemctl start nginx"
    stop program = "/usr/bin/systemctl stop nginx"
#    if failed host localhost port 443 protocol http for 2 cycles then restart
#    if 4 restarts within 10 cycles then timeout

# 监控sshd
check process sshd with pidfile /var/run/sshd.pid
start program = "/usr/bin/systemctl start sshd"
stop program = "/usr/bin/systemctl stop sshd"
if failed host localhost port 22 protocol ssh for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

# 监控vesta-nginx
check process vesta-nginx with pidfile /var/run/vesta-nginx.pid
start program = "/usr/bin/systemctl start vesta"
stop program = "/usr/bin/systemctl stop vesta"
if failed host localhost port 8083 protocol https for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

# 监控vesta-php
check process vesta-php with pidfile /var/run/vesta-php.pid
start program = "/usr/bin/systemctl start vesta"
stop program = "/usr/bin/systemctl stop vesta"
if failed host localhost port 8083 protocol https for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

# 监控vsftpd
check process vsftpd with match vsftpd
start program = "/usr/bin/systemctl start vsftpd"
stop program = "/usr/bin/systemctl stop vsftpd"
if failed host localhost port 21 protocol ftp for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

#监控crond
check process crond with pidfile /var/run/crond.pid
start program = "/usr/bin/systemctl start crond"
stop program = "/usr/bin/systemctl stop crond"
if 5 restarts within 5 cycles then timeout

#监控dovecot
check process dovecot with pidfile /var/run/dovecot/master.pid
start program = "/usr/bin/systemctl start dovecot"
stop program = "/usr/bin/systemctl stop dovecot"
if failed host localhost port 143 protocol imap for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

#监控exim
check process exim with pidfile /var/run/exim.pid
start program "/usr/bin/systemctl start exim"
stop program "/usr/bin/systemctl stop exim"
if failed host localhost port 25 protocol smtp for 2 cycles then restart
if 4 restarts within 10 cycles then timeout

જો તમે MONIT રૂપરેખાંકન સામગ્રીને સંશોધિત કરી હોય, તો તમારે મોનિટ સેવાને પ્રભાવિત કરવા માટે પુનઃપ્રારંભ કરવાની જરૂર છે▼

systemctl restart monit

અપડેટ 2018 જુલાઈ, 5:

  • ઉપરોક્ત રૂપરેખાંકન સામગ્રીનો ઉપયોગ કરવાની ભલામણ કરવામાં આવે છે ▲
  • Monit મોનિટરિંગ સેવા માટે ફાઇલો બનાવવા માટે નીચેના SSH આદેશોની ભલામણ કરવામાં આવતી નથી.
cd /etc/monit.d/
git clone https://github.com/infinitnet/vesta-centos7-monit.git ./ && rm -f README.md
myip=1.2.3.4
sed -i 's/host localhost/host '$myip'/g' /etc/monit.d/*.conf
systemctl restart monit
  • તમારા શેર કરેલ IP સાથે બદલો1.2.3.4.

git bash આદેશ શોધી શક્યા નથી કારણ કે ભૂલ આવી શકે છે ▼

આ આદેશ દાખલ કર્યા પછી તે પણ દેખાઈ શકે છે ▼

sed -i 's/host localhost/host '$myip'/g' /etc/monit.d/*.conf

નીચેનો ભૂલ સંદેશો દેખાય છે ▼

sed: can't read /etc/monit.d/*.conf: No such file or directory

મોનિટ લોગ દૃશ્ય ભૂલ

SSH જુઓ monit.log લોગ ફાઇલ આદેશ▼

tailf /var/log/monit.log
  • monit.log ફાઈલ જોવા માટે SSH, લોગની માત્ર છેલ્લી 10 લીટીઓ પ્રદર્શિત કરી શકાય છે.

SFTP લૉગિનની ભલામણ કરવામાં આવે છે /var/log/monit.log પહેલાની monit.log લોગ ફાઈલની સ્થિતિને સંપૂર્ણપણે જોવા માટે.

ઇમેઇલ મોકલવામાં ભૂલ

જો મોનિટ મેઇલ મોકલી શકાતો નથી, તો નીચેનો ભૂલ સંદેશ દેખાશે ▼

error : Cannot open a connection to the mailserver localhost:25 -- Operation now in progress
error : Mail: Delivery failed -- no mail server is available

ઇમેઇલ મોકલવામાં ભૂલો ઠીક કરો

ચેન વેઇલીંગવાપરવાની ભલામણ કરીGmail SMTP ▼

set mailserver smtp.gmail.com port 587
username "[email protected]"
password "password"
using tlsv1
with timeout 30 seconds

ઉકેલ એ છે કે મોનિટ રૂપરેખાંકન ફાઇલમાં સેટ મેઇલસર્વરને બદલવું, કૃપા કરીને વિગતો માટે આ ટ્યુટોરીયલ તપાસો ▼

ફાઇલસિસ્ટમ આંકડાકીય ભૂલ

જો તમને monit.log લોગ ફાઇલમાં નીચેની ભૂલો મળે તો ▼

filesystem statistic error: cannot read /proc/diskstats -- No such file or directory
  • સંભવતઃ કારણ કે Linux એ ન્યૂનતમ ઇન્સ્ટોલેશન માટે ડિફોલ્ટ છે વેસ્ટાસીપીપેનલ, અસ્તિત્વમાં નથી /proc/diskstats ડિસ્ક સ્ટેટસ મોનિટરિંગ ફાઇલ.

ફાઇલસિસ્ટમ આંકડાકીય ભૂલોને ઉકેલો

પગલું 1:SSH માં /etc/monit.d સૂચિ ▼

cd /etc/monit.d

પગલું 2:મોનિટ મોનિટરિંગ સેવા ફાઇલ "root-space.conf" કાઢી નાખો ▼

rm -rf root-space.conf

પગલું 3:SSH પુનઃપ્રારંભ મોનિટ મોનિટરિંગ ▼

systemctl restart monit.service

મોનિટ કમાન્ડ (સેન્ટોસ 7 માટે વિશેષ)

મોનિટ સ્ટાર્ટઅપ સ્ટેટસ જુઓ ▼

systemctl status monit.service

મોનિટ સેવા શરૂ કરો ▼

systemctl start monit.service

મોનિટ સેવા બંધ કરો▼

systemctl stop monit.service

મોનિટ સેવા પુનઃપ્રારંભ કરો ▼

systemctl restart monit

બૂટ પર મોનિટ સેવા શરૂ કરો ▼

systemctl enable monit.service

મોનિટ સેવા ચાલુ અને બંધ કરો ▼

systemctl disable monit.service

હોપ ચેન વેઇલિયાંગ બ્લોગ ( https://www.chenweiliang.com/ ) શેર કર્યું "CentOS 7 સિસ્ટમની Vesta CP પેનલ પર Monit પ્રક્રિયાને કેવી રીતે ગોઠવવી? , તમને મદદ કરવી.

આ લેખની લિંક શેર કરવા માટે આપનું સ્વાગત છે:https://www.chenweiliang.com/cwl-730.html

નવીનતમ અપડેટ્સ મેળવવા માટે ચેન વેઇલિઆંગના બ્લોગની ટેલિગ્રામ ચેનલ પર આપનું સ્વાગત છે!

🔔 ચૅનલની ટોચની ડિરેક્ટરીમાં મૂલ્યવાન "ChatGPT કન્ટેન્ટ માર્કેટિંગ AI ટૂલ વપરાશ માર્ગદર્શિકા" મેળવનારા પ્રથમ બનો! 🌟
📚 આ માર્ગદર્શિકામાં ઘણું મૂલ્ય છે, 🌟આ એક દુર્લભ તક છે, તેને ચૂકશો નહીં! ⏰⌛💨
ગમે તો શેર કરો અને લાઈક કરો!
તમારી શેરિંગ અને લાઈક્સ એ અમારી સતત પ્રેરણા છે!

 

评论 评论

તમારું ઇમેઇલ સરનામું પ્રકાશિત કરવામાં આવશે નહીં. જરૂરી ક્ષેત્રો વપરાય છે * લેબલ

ટોચ પર સ્ક્રોલ કરો