1. 程式人生 > >ubuntu安裝zookeeper和ruby

ubuntu安裝zookeeper和ruby

安裝zookeeper服務

  1. 下載zookeeper包
  2. wget https://mirrors.tuna.tsinghua.edu.cn/apache/zookeeper/zookeeper-3.4.12/zookeeper-3.4.12.tar.gz
  3. 解壓拷貝進/usr/local下
  4. sudo cp zoo_sample.cfg zoo.cfg
  5. 修改zoo.cfg配置

 

 

 

  1. 在/var/lib/zookeeper建myid檔案。在myid檔案中輸入1表示為server.1。 輸入2則表示server.2
  2. 在/usr/local/ zookeeper-3.4.12/bin下,最好是整個zookeeper目錄賦777許可權,在bin目錄下./zkServer.sh start|stop|restart,啟動、停止、重啟等命令
  3. 啟動後,在bin目錄下./zkCli.sh進入zookeeper客戶端,進入後,輸入ls,或者新建create /NewCrawlerTest crawlertest,

或者刪除delete /NewCrawlerTest

或者檢視 get /NewCrawlerTest

 

安裝ruby:

  1. Sudo apt-get install ruby ruby-dev
  2. 檢視版本號:ruby –v; gem –v

**Bundler** — If Ruby is already installed, but the `bundle` command doesn't work, just run `gem install bundler`

        3.sudo gem install bundler

4.

出現如上圖錯誤:安裝bundler,執行bundle install –deployment

5.執行build程式碼bundle exec middleman build –clean,出現如下圖錯誤

 

解決:安裝nodejs即可,安裝後檢視node -v:

5.1 sudo apt-get install nodejs

5.2  sudo apt-get install nodejs-legacy