Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Help to prepare script for monitor services Post 303045419 by yash_message on Friday 20th of March 2020 08:47:10 AM
Old 03-20-2020
Help to prepare script for monitor services

I need to monitor services in rhel 8
below are the service......
crond
chronyd
rsyslogd
sshd
sssd
firewalld

Scripts..........
Code:
#!/bin/bash
for i in "${SERVICES[@]}"
do
###CHECK SERVICE####
`pgrep $i `
STATS=(echo $?)

if [  $STATS == 0  ]
then
echo   "$i is running"
else
echo   "$i is not running"
fi
done

but after run script, output does not come. please help, where is the problem in scripts.

--- Post updated at 07:17 PM ---

I prepared another script. but getting error.

Code:
#!/bin/bash
for i in `cat SERVICES`
do
###CHECK SERVICE####
status=systemctl | grep running |grep $i |awk '{print $4}'
if [ $status -eq running ]
then
     echo "$i is running"
else
     echo "$i is not running"
fi
done

Output-

[root@localhost ~]# sh service1.sh
service1.sh: line 6: [: -eq: unary operator expected
crond is not running
service1.sh: line 6: [: -eq: unary operator expected
chronyd is not running
service1.sh: line 6: [: -eq: unary operator expected
rsyslogd is not running
service1.sh: line 6: [: -eq: unary operator expected
sshd is not running
service1.sh: line 6: [: -eq: unary operator expected
sssd is not running
service1.sh: line 6: [: -eq: unary operator expected
firewalld is not running


Why it is coming error.
 

10 More Discussions You Might Find Interesting

1. SuSE

Script to disable services

Hi All, I want to disable bunch of unused services on SLES and RHEL to improve the performance. Since we have more than 100 servers to disable services, I want to do with some script. Any one can give me an idea how to write a script to disable services. Thanks (1 Reply)
Discussion started by: s_linux
1 Replies

2. AIX

Startup script and services

Guy's What the exact steps to mention for example this script /usr/start/start.sh to be as start up script , I want it to be automatically started when I reboot the server . (8 Replies)
Discussion started by: ITHelper
8 Replies

3. AIX

How to monitor websphere services down?

if websphere services is down, any unix command or scripts can send alert? (1 Reply)
Discussion started by: rainbow_bean
1 Replies

4. Shell Programming and Scripting

Need script to restart the services

Hi Guys, I need bash script to restart the service. 1. Disable the service called SASM svcadm disable sasm 2. if service went to maintenance mode then it shuld clear it with below command svcadm clear sasm 3.or else it should restart the mysql service /etc/init.d/mysql stop... (1 Reply)
Discussion started by: bapu1981
1 Replies

5. Red Hat

Restart of services if port no is changed in /etc/services in RHEL

I had a doubt if any services need to be restarted if port no in /etc/services in an RHEL setup is changed. For eg, the port no of 443 for SSL may need to be changed. I hope my query is clear whether any services need to be restarted if port no in /etc/services is changed. Please revert with... (10 Replies)
Discussion started by: RHCE
10 Replies

6. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

7. Shell Programming and Scripting

Monitor the services by script

I developed for monitoring the network connections among the branch servers as I given below as script.But I don't know how to monitor the services through network script whether the services is running or not. eg : I want to check the postgres service for all the branch servers through network... (0 Replies)
Discussion started by: kannansoft1985
0 Replies

8. Shell Programming and Scripting

Monitor some of network services

Hi I want to write a script for netflow service because my service doesnt send any packet to netflow walker (server). Although the service is started but it does not send any packet to server until i restart the service I want to write a script in order to restart the service... (7 Replies)
Discussion started by: mohsen1366
7 Replies

9. Infrastructure Monitoring

Searching for Saas Monitor service which monitor my servers which are sitting in different providers

Sorry if this is the wrong forum Searching for Saas Monitor service which monitor my servers which are sitting in different providers . This monitor tool will take as less CPU as possible , and will send info about the server to main Dashboard. The info I need is CPU / RAM / my servers status (... (1 Reply)
Discussion started by: umen
1 Replies

10. UNIX for Advanced & Expert Users

Script monitor website wth default tomcat script

Hi all, on our application server we have the following script that monitor the status of the website, my problem here is that i have edite the retries from 3 to 5, and the timewait to 120 second, so the script should check 5 times every 2 minutes, and if the fifth check fails it must restart... (0 Replies)
Discussion started by: charli1
0 Replies
DROP 
OPERATOR(7) SQL Commands DROP OPERATOR(7) NAME
DROP OPERATOR - remove a user-defined operator SYNOPSIS
DROP OPERATOR id ( lefttype | NONE , righttype | NONE ) [ CASCADE | RESTRICT ] INPUTS id The identifier (optionally schema-qualified) of an existing operator. lefttype The type of the operator's left argument; write NONE if the operator has no left argument. righttype The type of the operator's right argument; write NONE if the operator has no right argument. CASCADE Automatically drop objects that depend on the operator. RESTRICT Refuse to drop the operator if there are any dependent objects. This is the default. OUTPUTS DROP OPERATOR The message returned if the command is successful. ERROR: RemoveOperator: binary operator 'oper' taking 'lefttype' and 'righttype' does not exist This message occurs if the specified binary operator does not exist. ERROR: RemoveOperator: left unary operator 'oper' taking 'lefttype' does not exist This message occurs if the left unary operator specified does not exist. ERROR: RemoveOperator: right unary operator 'oper' taking 'righttype' does not exist This message occurs if the right unary operator specified does not exist. DESCRIPTION
DROP OPERATOR drops an existing operator from the database. To execute this command you must be the owner of the operator. The left or right type of a left or right unary operator, respectively, must be specified as NONE. NOTES The DROP OPERATOR statement is a PostgreSQL language extension. Refer to CREATE OPERATOR [create_operator(7)] for information on how to create operators. USAGE
Remove power operator a^n for int4: DROP OPERATOR ^ (int4, int4); Remove left unary negation operator (! b) for boolean: DROP OPERATOR ! (none, bool); Remove right unary factorial operator (i !) for int4: DROP OPERATOR ! (int4, none); COMPATIBILITY
SQL92 There is no DROP OPERATOR in SQL92. SQL - Language Statements 2002-11-22 DROP OPERATOR(7)
All times are GMT -4. The time now is 10:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy