GNU/Linux >> Linux Esercitazione >  >> Linux

Elenco di query dei server per memoria/cpu allocata?

Eseguire RHEL 6.2, provare a scrivere uno script bash in SSH su un elenco di server remoti e scrivere le CPU e la memoria totale su un file, una riga per host nel seguente formato:

HOSTNAME1    CPUS: 12    MEMORY: 64
HOSTNAME2    CPUS: 08    MEMORY: 12

Ecco quello che ho finora, non funziona completamente, quello che sto correndo è la parte in cui gli SSH di sistema per eseguire cat /proc/cpuinfo e free .

Lo script bash sarebbe chiamato in questo modo:./query_host_info.sh <DEST> <USER> <FILE>

Il file da cui legge gli elenchi di host è un file di nomi host composto da una riga per riga.

#!/bin/bash

# username to connect via ssh
USER=$2
# destination path/filename to save results to
DEST=$3
# source list of hostnames to read from
FILE=$1

# Iterate through line items in FILE and
# execute ssh, if we connected successfully
# run proc/info and free to find memory/cpu alloc
# write it to DEST path/file
# if we don't connect successfully, write the hostname
# and "unable to connect to host" error to DEST path/file
for i in `cat $FILE`; do
  echo -n ".";
  CHK=`ssh -q -o "BatchMode yes" -o "ConnectTimeout 5" 
            -l $USER $i "echo success"`;
  if [ "success" = $CHK ] >/dev/null 2>&1
  then
    `ssh -q -o "BatchMode yes" -o "ConnectTimeout 5" -l $USER $i "
        printf "$i    ";
        echo "`cat /proc/cpuinfo | grep processor | awk '{a++} END {print a}';
        free -g | sed -n -e '/^Mem:/s/^[^0-9]*([0-9]*) .*/1/p'`";" >> ${DEST}`;
  else
    printf "${i}tUnable to connect to hostn" >> ${DEST};
  fi
done
# All line items have been gone through,
# show done, and exit out
echo ""
echo "Done!"
echo "Check the list 'checkssh_failure' for errors."
exit 0

Risposta accettata:

Ho appena modificato il tuo script :

#!/bin/bash
# username to connect via ssh
USER=$2
# destination path/filename to save results to
DEST=$3
# source list of hostnames to read from
FILE=$1

[[ $# -ne 3 ]] && { echo -e "nUsage: $0  <User> <ServerList> <LogFile>n"; exit 1; };

func_ssh() {
    local Ipaddr=$1
    local Cmd="${@:2}"
    local LogIt=${DEST}
    ssh -q -o "BatchMode yes" -o "ConnectTimeout 5" -l $USER $Ipaddr "${Cmd}"
    [[ $? -ne 0 ]] && printf "${Ipaddr}tUnable to connect to hostn" >> ${LogIt}
}

GetTotalProcs="awk '/processor/{a++} END{print a}'  /proc/cpuinfo"
GetMemoryDetails="free -g | sed -n -e '/^Mem:/s/^[^0-9]*([0-9]*) .*/1/p'"

# Iterate through line items in FILE and
# execute ssh, if we connected successfully
# run proc/info and free to find memory/cpu alloc
# write it to DEST path/file
# if we dont connect successfully, write the hostname
# and "unable to connect to host" error to DEST path/file
for srv in $(< $FILE );
do
    echo -n "."
    A="$( func_ssh $srv $GetTotalProcs )"
    B="$( func_ssh $srv $GetMemoryDetails )"
    echo "${srv} CPU: ${A} MEMORY: ${B}" >> ${DEST}
done

# All line items have been gone through,
# show done, and exit out
echo ""
echo "Done!"
echo "Check the list 'checkssh_failure' for errors."
exit 0

Linux
  1. Perché Windows10 VM è lento su OpenStack?

  2. Come controllare il carico del server su un server Windows

  3. Un fantastico elenco di app e risorse per il sistema operativo elementare

  4. Matrice autorizzazioni per Cloud Server

  5. 17 Esempi di comandi hpacucli per Linux su server HP

4 gestori di elenchi di cose da fare per il desktop Linux

Esercitazione sui comandi echo Linux per principianti (5 esempi)

Come aumentare la memoria e la CPU sulla macchina Vagrant

I 10 migliori antivirus per Linux - Elenco dei software antivirus per Linux!

Verificare la validità dell'IP

Sto usando virtio per il mio guest KVM?