source: nutchez-0.2/src/shell/client_install @ 220

Last change on this file since 220 was 220, checked in by waue, 14 years ago

install :加入自動匯入source有可能的路徑
client_install 僅加入註解還沒修改,需要討論使用者如何使用最方便

  • Property svn:executable set to *
File size: 2.6 KB
RevLine 
[117]1#!/bin/bash
[122]2# Program:
3#   Check root identity and change root to exectue client_install.sh
4# Author:
5#   Waue, Shunfa, Rock {waue, shunfa, rock}@nchc.org.tw
6# History:
7#   2010/05/20  Rock    First release
[117]8
[123]9# 正式版之後,記的將不必要 read 拿掉 (trace 用的 read)
[122]10
[132]11# 需要 master_install 設定的參數區
[140]12# Master IP here
[209]13Master_IP_Address="input.your.master.ip_address"
[152]14# Master Hostname here
[209]15Master_Hostname="input_your_master_hostname"
[119]16# 此檔自己用的參數區
17Linux_Distribution="";
18Linux_Version="";
[135]19Nutchuser_Passwd="xxxxxxxxxx";
[196]20Work_Path="./"
21Work_Path_J=0
[119]22
[196]23# Work Path Setup
24echo $0 | grep '/' || Work_Path_J=1
25if [ "$Work_Path_J" == "0"  ]; then
26    Work_Path=$(echo $0 | sed 's/client_install//')
27fi
[194]28# Source functions
[220]29#if [ ! -f $Work_Path/client_install_func.sh ];then
30#  scp
31#fi
32source $Work_Path/client_install_func.sh;
33 
[194]34
[188]35# Language Choice
36choose_lang
37
[129]38# 參數詢問
[132]39yesno="no"
[188]40show_info "$par_echo_1 $Master_IP_Address"
41read -p "$par_echo_2" yesno
[129]42             
[132]43if [ "$yesno" == "yes" ] || [ "$yesno" == "y" ] ; then
[188]44    show_info "$par_echo_3"
[132]45else
[188]46    show_info "$par_echo_4"
[132]47    exit
[129]48fi
49
[119]50
51# 檢查執行這個程式的是否為root權限
[117]52check_root
[191]53read -p "continue.."
[117]54
[123]55# 查出此主機的作業系統,以及版本
[117]56check_systemInfo
[191]57read -p "continue.."
[117]58
[132]59# 安裝需要的套件 (目前只支援 deb 套件的系統自動安裝,yum或其他套件系統的則必須手動安裝)
60# 需要套件名稱 ssh, expect, dialog
61install_packages
[191]62read -p "continue.."
[132]63
[119]64# 檢查之前是否有安裝NutchEz
65# 目前先檢查是否有/opt/nutchez 這個資料夾即可
[117]66check_nez_installed
[191]67read -p "continue.."
[117]68
[119]69# 檢查是否有安裝sun java ,並檢查是否為jdk 1.6 以上版本
[135]70check_sunJava
[191]71read -p "continue.."
[117]72
[119]73# 檢查是否有安裝openssh, openssh-server
[123]74check_ssh
[191]75read -p "continue.."
[117]76
[123]77# 檢查是否有安裝dialog
78check_dialog
[191]79read -p "continue.."
[117]80
[142]81# 新增nutchuser 帳號時用 Nutchuser_Passwd 當密碼
82creat_nutchuser_account
[191]83read -p "continue.."
[142]84
[117]85# scp nutchuser@master_ip:~ 把.ssh/目錄複製下來
86# 當使用者輸入nutchuser 密碼時,將此密碼紀錄到Nutchuser_Passwd
87# 此步驟若無法連到 master 則跳出
[128]88scp_master_nutchuser_sshkey $Master_IP_Address
[191]89read -p "continue.."
[117]90
91# 用scp 複製 master 的設定與安裝資料
[119]92# 目前僅需做到能無礙的複製遠端的/opt/nutchez/到local的/opt/
[128]93scp_packages $Master_IP_Address
[191]94read -p "continue.."
[117]95
[146]96# 安裝及啟動
[144]97install_nutch_package
[191]98read -p "continue.."
[117]99
[147]100# 回覆 Hostname 和 IP 給 Master Server
101recall_hostname_ip $Master_IP_Address
[214]102show_info "$CI_finish_echo_1"
[191]103read -p "continue.."
Note: See TracBrowser for help on using the repository browser.