CentOS 7 സിസ്റ്റത്തിന്റെ Vesta CP പാനലിൽ മോണിറ്റ് പ്രോസസ്സ് എങ്ങനെ കോൺഫിഗർ ചെയ്യാം?

ഇതിന് മുമ്പായിചെൻ വെയ്‌ലിയാങ്ബ്ലോഗ് പങ്കിട്ടുഉപയോഗം CentOS 6 മോണിറ്റ് ▼ ഇൻസ്റ്റാൾ ചെയ്യുന്നതിനും കോൺഫിഗർ ചെയ്യുന്നതിനുമുള്ള ട്യൂട്ടോറിയൽ

എന്നിരുന്നാലും, CentOS 7 കോൺഫിഗറേഷനിൽനിരീക്ഷണം നിരീക്ഷിക്കുകCentOS 6-ൽ നിന്ന് ചില വ്യത്യാസങ്ങളുള്ള പ്രോഗ്രാം, കൃത്യമായി സമാനമല്ല.

നിങ്ങളാണെങ്കിൽലിനക്സ്ഹോസ്റ്റ് CentOS 7 സിസ്റ്റം ഉപയോഗിക്കുന്നു. Vesta CP പാനലിൽ Monit ഇൻസ്റ്റാൾ ചെയ്ത ശേഷം, Monit മോണിറ്ററിംഗ് പ്രോഗ്രാം കോൺഫിഗർ ചെയ്യുന്നതിന് നിങ്ങൾക്ക് ഈ ട്യൂട്ടോറിയൽ പിന്തുടരാവുന്നതാണ്.

മോണിറ്റ് മോണിറ്ററിംഗ് പ്രോസസ് സേവനം

മോണിറ്റ് മോണിറ്ററിംഗ് പ്രക്രിയയുടെ സേവന കോൺഫിഗറേഷൻ ഉള്ളടക്കം ഇനിപ്പറയുന്നതാണ് (കുറച്ച് ഉപയോഗിക്കാത്ത ചില നിരീക്ഷണ സേവനങ്ങൾ ഇല്ലാതാക്കുക):

  • പിടിമുറുക്കുക
  • ക്രോണ്ട്
  • പ്രാവ്കൊട്ട്
  • എക്സിം
  • httpd
  • memcached
  • ക്യു
  • nginx
  • സ്പമാസ്സാസിൻ
  • sshd
  • vesta-nginx
  • vesta-php
  • vsftpd
  • സ്‌പെയ്‌സും ഐനോഡുകളും ഓണാക്കുക
  • സിസ്റ്റം ഉറവിടങ്ങൾ നിരീക്ഷിക്കുക (റാം, സ്വാപ്പ്, സിപിയു, ലോഡ്)

മോണിറ്റ് മോണിറ്ററിംഗ് കോൺഫിഗറേഷൻ

CentOS 6, 7 എന്നിവയ്‌ക്കായി മോണിറ്റ് കോൺഫിഗറേഷൻ ഫയൽ പേരുകൾ വ്യത്യസ്തമാണ്:

  • CentOS 6-നുള്ള മോണിറ്റ് കോൺഫിഗറേഷൻ ഫയലിന്റെ പേര് "monit.conf" എന്നാണ്.
  • CentOS 7-നുള്ള മോണിറ്റ് കോൺഫിഗറേഷൻ ഫയലിന്റെ പേര് "monitrc" എന്നാണ്.

SFTP ഉപയോഗിച്ച് സോഫ്റ്റ്വെയർനിങ്ങളുടെ Linux സെർവറിൽ പ്രവേശിച്ച ശേഷം, മോണിറ്റ് കോൺഫിഗറേഷൻ ഫയൽ എഡിറ്റ് ചെയ്യുക ▼

/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 അപ്ഡേറ്റ്:

  • മുകളിലുള്ള കോൺഫിഗറേഷൻ ഉള്ളടക്കം ▲ ഉപയോഗിക്കാൻ ശുപാർശ ചെയ്യുന്നു
  • മോണിറ്റ് മോണിറ്ററിംഗ് സേവനത്തിനായി ഫയലുകൾ സൃഷ്ടിക്കുന്നതിന് ഇനിപ്പറയുന്ന 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

ഇമെയിൽ അയയ്ക്കുന്നതിൽ പിശകുകൾ പരിഹരിക്കുക

ചെൻ വെയ്‌ലിയാങ്ഉപയോഗിക്കാൻ ശുപാർശ ചെയ്യുന്നുജിമെയിൽ 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
  • ലിനക്സ് ഡിഫോൾട്ടായി ചുരുങ്ങിയ ഇൻസ്റ്റലേഷനിൽ ആയിരിക്കാം VestaCPപാനൽ, നിലവിലില്ല /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

മോണിറ്റ് കമാൻഡ് (CentOS 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 പാനലിൽ മോണിറ്റ് പ്രോസസ്സ് എങ്ങനെ കോൺഫിഗർ ചെയ്യാം? , നിന്നെ സഹായിക്കാൻ.

ഈ ലേഖനത്തിന്റെ ലിങ്ക് പങ്കിടാൻ സ്വാഗതം:https://www.chenweiliang.com/cwl-730.html

ഏറ്റവും പുതിയ അപ്‌ഡേറ്റുകൾ ലഭിക്കുന്നതിന് ചെൻ വെയ്‌ലിയാങ്ങിന്റെ ബ്ലോഗിന്റെ ടെലിഗ്രാം ചാനലിലേക്ക് സ്വാഗതം!

🔔 ചാനൽ ടോപ്പ് ഡയറക്‌ടറിയിൽ വിലയേറിയ "ChatGPT കണ്ടന്റ് മാർക്കറ്റിംഗ് AI ടൂൾ ഉപയോഗ ഗൈഡ്" നേടുന്ന ആദ്യത്തെയാളാകൂ! 🌟
📚 ഈ ഗൈഡിൽ വലിയ മൂല്യമുണ്ട്, 🌟 ഇതൊരു അപൂർവ അവസരമാണ്, ഇത് നഷ്‌ടപ്പെടുത്തരുത്! ⏰⌛💨
ഇഷ്ടമായാൽ ഷെയർ ചെയ്യുക, ലൈക്ക് ചെയ്യുക!
നിങ്ങളുടെ ഷെയറിംഗും ലൈക്കുകളുമാണ് ഞങ്ങളുടെ തുടർച്ചയായ പ്രചോദനം!

 

发表 评论

നിങ്ങളുടെ ഇമെയിൽ വിലാസം പ്രസിദ്ധീകരിക്കില്ല. ആവശ്യമായ ഫീൽഡുകൾ ഉപയോഗിക്കുന്നു * ലേബൽ

മുകളിലേക്ക് സ്ക്രോൾ ചെയ്യുക