source: nutchez-0.2/src/test/client_install @ 192

Last change on this file since 192 was 192, checked in by rock, 14 years ago
  • Property svn:executable set to *
File size: 2.3 KB
Line 
1#!/bin/bash
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
8
9# 正式版之後,記的將不必要 read 拿掉 (trace 用的 read)
10
11# 設定 functions
12. ./client_install_func.sh
13
14# 需要 master_install 設定的參數區
15# Master IP here
16Master_IP_Address=input.your.master.ip_address
17# Master Hostname here
18Master_Hostname=input_your_master_hostname
19# 此檔自己用的參數區
20Linux_Distribution="";
21Linux_Version="";
22Nutchuser_Passwd="xxxxxxxxxx";
23
24# Language Choice
25choose_lang
26
27# 參數詢問
28yesno="no"
29show_info "$par_echo_1 $Master_IP_Address"
30read -p "$par_echo_2" yesno
31             
32if [ "$yesno" == "yes" ] || [ "$yesno" == "y" ] ; then
33    show_info "$par_echo_3"
34else
35    show_info "$par_echo_4"
36    exit
37fi
38
39
40# 檢查執行這個程式的是否為root權限
41check_root
42read -p "continue.."
43
44# 查出此主機的作業系統,以及版本
45check_systemInfo
46read -p "continue.."
47
48# 安裝需要的套件 (目前只支援 deb 套件的系統自動安裝,yum或其他套件系統的則必須手動安裝)
49# 需要套件名稱 ssh, expect, dialog
50install_packages
51read -p "continue.."
52
53# 檢查之前是否有安裝NutchEz
54# 目前先檢查是否有/opt/nutchez 這個資料夾即可
55check_nez_installed
56read -p "continue.."
57
58# 檢查是否有安裝sun java ,並檢查是否為jdk 1.6 以上版本
59check_sunJava
60read -p "continue.."
61
62# 檢查是否有安裝openssh, openssh-server
63check_ssh
64read -p "continue.."
65
66# 檢查是否有安裝dialog
67check_dialog
68read -p "continue.."
69
70# 新增nutchuser 帳號時用 Nutchuser_Passwd 當密碼
71creat_nutchuser_account
72read -p "continue.."
73
74# scp nutchuser@master_ip:~ 把.ssh/目錄複製下來
75# 當使用者輸入nutchuser 密碼時,將此密碼紀錄到Nutchuser_Passwd
76# 此步驟若無法連到 master 則跳出
77scp_master_nutchuser_sshkey $Master_IP_Address
78read -p "continue.."
79
80# 用scp 複製 master 的設定與安裝資料
81# 目前僅需做到能無礙的複製遠端的/opt/nutchez/到local的/opt/
82scp_packages $Master_IP_Address
83read -p "continue.."
84
85# 安裝及啟動
86install_nutch_package
87read -p "continue.."
88
89# 回覆 Hostname 和 IP 給 Master Server
90recall_hostname_ip $Master_IP_Address
91read -p "continue.."
Note: See TracBrowser for help on using the repository browser.