source: nutchez-0.2/src/test/install @ 139

Last change on this file since 139 was 139, checked in by shunfa, 14 years ago

修改install, install_func.sh, client_install_func.sh(新增帳號timeout部份)

  • Property svn:executable set to *
File size: 1.1 KB
RevLine 
[116]1#!/bin/bash
2# 語言的選擇
[119]3# source ./language_choise.sh
[116]4# 匯入功能函數
5source ./install_func.sh
[136]6source ./client_install_func.sh
[117]7### real code #####
[137]8
9# 執行環境檢查
10check_info () {
[136]11  check_root
12  check_systemInfo
13  check_nez_installed
14  #check_sunJava
15  #check_ssh
16  #check_dialog
17  #check_php
[137]18}
[125]19
[137]20main () {
[139]21  echo "歡迎使用NutchEZ, 此安裝程序會為您新建一個nutchuser帳號"
[117]22  set_install_information
23  show_info
24  read -p "Please confirm your install infomation: 1.Yes 2.No  " confirm
25  if [ $confirm -eq 1 ]; then
[139]26    creat_nutchuser_account $nutchuser_passwd
27    make_ssh_key
28    sleep 10
[136]29    # 解壓縮
[139]30    tar -zxvf nutchez-0.2-0531.tar.gz -C /opt/
[136]31    Install_Nutch
[139]32#    Install_Tomcat
[137]33    chown -R nutchuser:nutchuser /opt/nutchez
[139]34    chown -R nutchuser:nutchuser /var/nutchez
[136]35    # make_client_install
[117]36
[137]37    # 啟動系統
[117]38    format_HDFS
39    start_up_NutchEZ
[139]40    start_up_tomcat   
[125]41    # 安裝流程結束,並進入網頁管理頁面設定爬網網址...等 
42    echo "Install Successfully!!"
[130]43    echo "Visit http://$MasterIP_Address:8080"
[117]44  elif [ $confirm -eq 2 ]; then
45    main
46  fi
47}
48
[137]49check_info
[117]50main
Note: See TracBrowser for help on using the repository browser.