インストールおよびアップグレード > Installation and Configuration Guide > PTC ソリューションインストーラの使用 > Windchill ソリューションのインストール > オプション製品の設定 > Windchill インデックスサーチのインストール > Windchill Index Search のインストール後の設定 > インデックスサーチサーバーのクラウドモードでの設定 > ZooKeeper ノードのセットアップと起動
  
ZooKeeper ノードのセットアップと起動
インデックスサーチサーバーを Solaris プラットフォームにインストールした場合、次のステップを実行します。
1. ZooKeeper ノードごとにデータディレクトリを作成します。次に例を示します。
/opt/ptc/commondata/zkdata/node1
/opt/ptc/commondata/zkdata/node2
/opt/ptc/commondata/zkdata/node3
2. ZooKeeper ノードを識別するための "myid" という名前のファイルを作成します。このファイルのコンテンツによって各ノードが識別されます。
たとえば、次の myid ファイルのコンテンツは 1 という番号のみです。
/opt/ptc/commondata/zkdata/node1/myid
同様に、node2/myid には「2」node3/myid には「3」を入力します。
* 
これらは ZooKeeper に割り当てられている ID であり、次のステップの zoo.cfg で使用されます。
3. ZooKeeper 設定ファイルを作成します。
<インデックスサーチホーム>\zookeeper\conf\zoo.cfg
ここで、<インデックスサーチホーム> はインデックスサーチサーバーがインストールされているインストールディレクトリです。
ノード 1 に対して次のコンテンツを追加します。
# The number of milliseconds of each tick
tickTime=2000
# The number of ticks that the initial
# synchronization phase can take
initLimit=10
# The number of ticks that can pass between
# sending a request and getting an acknowledgement
syncLimit=5
# the directory where the snapshot is stored.
# do not use /tmp for storage, /tmp here is just
# example sakes.
dataDir=D:\\ptc\\commondata\\zkdata\\node1 OR /opt/ptc/commondata/zkdata/node1
# the port at which the clients will connect
clientPort=<ポート番号>
server.1=<ホスト 1>.ptcnet.ptc.com:2888:3888
server.2=<ホスト 2>.ptcnet.ptc.com:2889:3889
server.3=<ホスト 3>.ptcnet.ptc.com:2890:3890
# the maximum number of client connections.
# increase this if you need to handle more clients
#maxClientCnxns=60
#
# Be sure to read the maintenance section of the
# administrator guide before turning on autopurge.
#
# http://zookeeper.apache.org/doc/current/zookeeperAdmin.html#sc_maintenance
#
# The number of snapshots to retain in dataDir
#autopurge.snapRetainCount=3
# Purge task interval in hours
# Set to "0" to disable auto purge feature
#autopurge.purgeInterval=1
以下のプロパティは一意である必要があり、ZooKeeper ノードごとに指定する必要があります。
dataDir
ZooKeeper ノードのデータディレクトリ。
clientPort
ZooKeeper がリクエストを受信するポート。
4. 次のコマンドを実行して、すべての ZooKeeper ノードを起動します。
sh <インデックスサーチホーム>\zookeeper\bin\zkServer.sh start
* 
ZooKeeper ノードが起動すると、アンサンブル設定 (zoo.cfg) で指定されているほかの ZooKeeper ノードとの通信を開始します。
起動中、コンソールにエラーが表示されたり、ノードがほかの ZooKeeper ノードと接続できないことを報告するログが表示されたりする場合があります。これは、これらのノードがまだ起動していないからです。これらのエラーは無視できます。