RHEL 6.2を実行しながら、SSHを介してリモートサーバーのリストに接続するbashスクリプトを作成し、CPUと合計メモリを次の形式でホストごとに1行ずつファイルに書き込みます。
HOSTNAME1 CPUS: 12 MEMORY: 64
HOSTNAME2 CPUS: 08 MEMORY: 12
これまで私が持っているのは次のとおりです。正常に動作しません。部分システムSSHの実行cat /proc/cpuinfo
とfree
。
Bashスクリプトは次のように呼び出されます。./query_host_info.sh <DEST> <USER> <FILE>
ホストのリストを読み取るファイルは、1行に1つのホスト名ファイルです。
#!/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 host\n" >> ${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
答え1
スクリプトを修正しました。
#!/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 host\n" >> ${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
答え2
このようにスクリプトを実行できませんか? :
% ./query_host_info.sh <DEST> <USER> <FILE> > output.log
-または-
% ./query_host_info.sh <DEST> <USER> <FILE> | tee output.log
また、コマンドリストを使用して複数のコマンドを括弧で囲み、その出力をファイルにリダイレクトすることもできます。
% (ls; ls; ls;) > some_output.log
答え3
見つけました…2つありました…SSHはproc / cpuinfoが好きではなく、接続も自由でした。コマンドの実行方法を再構築しました。
#!/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 dont 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
A=`ssh -q -o "BatchMode yes" -o "ConnectTimeout 5" -l $USER $i "cat /proc/cpuinfo | grep processor | awk '{a++} END {print a}'"`
B=`ssh -q -o "BatchMode yes" -o "ConnectTimeout 5" -l $USER $i "free -g | sed -n -e '/^Mem:/s/^[^0-9]*\([0-9]*\) .*/\1/p'"`
echo "${i} CPU: ${A} MEMORY: ${B}" >> ${DEST}
else
printf "${i}\tUnable to connect to host\n" >> ${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