标签:ceph-dash安装
start_dash.sh
tar -zxvf ./ceph-dash.tar.gz
cd ceph-dash
perl start.pl
stop_dash.sh
value=`ps -ef|grep "python ./ceph-dash.py"|awk ‘{print $2}‘|head -1`
echo $value
kill -9 $value
&KillThread();
my $Usee = system("whoami");
if($User != "root")
{
die "This script must be run in root\n";
}
print "you are root\n";
#切换目录
chdir("Jinja2-2.7.3");
my $command = system("sudo python setup.py install");
if(0 != $command)
{
die "install Jinja2 failture\n";
}
print "\nJinja2 Install complete\n";
chdir("..");
$command=system("chmod a+x ./*py");
unless(0 == $command)
{
die "chmod py failture\n";
}
$command=system("./ceph-dash.py &");
print("\n**********************\n");
print("\nceph dash set up successful\n");
print("\n**********************\n");
#杀死进程
sub KillThread
{
# my $RumCmd = system("ps -ef|grep *dash.py");
my $RumCmd = `ps -ef|grep dash.py`;
print $RumCmd;
my @Content = split ‘\n‘,$RumCmd;
foreach my $value (@Content)
{
if($value =~ m/ceph-dash.py/||$value =~ m/ceph_dash.py/)
{
my @Array = split ‘\s+‘,$value;
my $Num = $Array[1];
print "\nThread ID is $Num\n";
system("kill -9 $Num");
break;
}
}
}本文出自 “风清扬song” 博客,请务必保留此出处http://2309998.blog.51cto.com/2299998/1580939
标签:ceph-dash安装
原文地址:http://2309998.blog.51cto.com/2299998/1580939