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;
      }
  }
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章