Scalaris/分散環境の設定
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
] [
リンク元
]
開始行:
*Scalarisの分散環境用の設定方法 [#s48ecc3f]
Scalarisを複数のノードで動作させるための設定方法について...
*想定する構成 [#t65d88be]
1台のbootサーバに対して、複数台のレギュラーノードが接続す...
bootサーバとレギュラーノードがそれぞれ異なるPCの場合用の...
*設定ファイル [#zb13be8c]
分散環境用の設定ファイルとしてはbin/scalaris.local.cfgが...
デフォルトでは用意されていませんが、bin/scalaris.local.cf...
# cd bin
# cp scalaris.local.cfg.example scalaris.local.cfg
# vi scalaris.local.cfg
scalaris.local.cfg.exampleの内容は以下のようになっていま...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for distributed Erlang
% (see cs_send.erl to switch)
% {boot_host, {boot,'boot@foo.bar.com'}}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for TCP mode.
% (see cs_send.erl to switch)
% Insert the appropriate IP-addresses for your setup
% as comma separated integers:
% IP Address, Port, and label of the boot server
{boot_host, {{127,0,0,1},14195,boot}}.
% IP Address, Port, and label of a node which is already...
{known_hosts, [{{127,0,0,1},14195, service_per_vm}]}.
%がコメントアウトになります。
なので実質設定されているのはboot_hostとknown_hostになりま...
*分散環境用の設定 [#icc4ac59]
分散環境のための設定としては、bootサーバを指定する必要が...
boot_hostとknown_hostsの127,0,0,1の部分を、外部から接続可...
bootサーバになるホストでも、レギュラーノードになるホスト...
(厳密には、bootサーバの場合はboot_hostの項目だけ編集すれ...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for TCP mode.
% (see cs_send.erl to switch)
% Insert the appropriate IP-addresses for your setup
% as comma separated integers:
% IP Address, Port, and label of the boot server
{boot_host, {{192,168,0,1},14195,boot}}.
% IP Address, Port, and label of a node which is already...
{known_hosts, [{{192,168,0,1},14195, service_per_vm}]}.
IPアドレスの区切り文字が.ではなく,である点に注意してくだ...
ファイルを編集したら、bootサーバを起動します。
# ./boot.sh
同様にレギュラーノードも起動します。
# ./cs_local.sh
終了行:
*Scalarisの分散環境用の設定方法 [#s48ecc3f]
Scalarisを複数のノードで動作させるための設定方法について...
*想定する構成 [#t65d88be]
1台のbootサーバに対して、複数台のレギュラーノードが接続す...
bootサーバとレギュラーノードがそれぞれ異なるPCの場合用の...
*設定ファイル [#zb13be8c]
分散環境用の設定ファイルとしてはbin/scalaris.local.cfgが...
デフォルトでは用意されていませんが、bin/scalaris.local.cf...
# cd bin
# cp scalaris.local.cfg.example scalaris.local.cfg
# vi scalaris.local.cfg
scalaris.local.cfg.exampleの内容は以下のようになっていま...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for distributed Erlang
% (see cs_send.erl to switch)
% {boot_host, {boot,'boot@foo.bar.com'}}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for TCP mode.
% (see cs_send.erl to switch)
% Insert the appropriate IP-addresses for your setup
% as comma separated integers:
% IP Address, Port, and label of the boot server
{boot_host, {{127,0,0,1},14195,boot}}.
% IP Address, Port, and label of a node which is already...
{known_hosts, [{{127,0,0,1},14195, service_per_vm}]}.
%がコメントアウトになります。
なので実質設定されているのはboot_hostとknown_hostになりま...
*分散環境用の設定 [#icc4ac59]
分散環境のための設定としては、bootサーバを指定する必要が...
boot_hostとknown_hostsの127,0,0,1の部分を、外部から接続可...
bootサーバになるホストでも、レギュラーノードになるホスト...
(厳密には、bootサーバの場合はboot_hostの項目だけ編集すれ...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Settings for TCP mode.
% (see cs_send.erl to switch)
% Insert the appropriate IP-addresses for your setup
% as comma separated integers:
% IP Address, Port, and label of the boot server
{boot_host, {{192,168,0,1},14195,boot}}.
% IP Address, Port, and label of a node which is already...
{known_hosts, [{{192,168,0,1},14195, service_per_vm}]}.
IPアドレスの区切り文字が.ではなく,である点に注意してくだ...
ファイルを編集したら、bootサーバを起動します。
# ./boot.sh
同様にレギュラーノードも起動します。
# ./cs_local.sh
ページ名: