-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
69 lines (51 loc) · 2.35 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
Rubyアプリケーション向け分散ストレージシステム
Copyright 2010 Ricoh Company, Ltd.
Castoro is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Castoro is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Castoro. If not, see < http://www.gnu.org/licenses/ >.
== サーバー構成 ==
以下の3種類のサーバーが必須になります。
- Client
Rails等のRubyアプリケーションを実行するサーバーです。
- Gateway
Peerを検索するサーバーです。
Client, Peerと同じサーバーにできません。
キャッシュ用に数100MB〜数GBのメモリが必要になります。
- Peer
実際のファイルを格納するサーバーです。
Client, Gatewayと同じサーバーにできません。
== INSTALL ==
- Client
gem castoro-common, castoro-client をインストールします。
gem json-1.2.3 以降が必要です。
gem castoro_client_lo は開発環境向けに提供されているもので、
Gatewayなし・Peer1台で環境を構築する為に利用します。
- Gateway
gem castoro-common, castoro-gateway をインストールします。
gem json-1.2.3 以降が必要です。
Ruby-1.9系でのみ動作します。Ruby1.8系では動作しません。
- Peer
gem castoro-common, castoro-manipulator, castoro-peer をインストールします。
gem json-1.2.3 以降が必要です。
Ruby-1.9系でのみ動作します。Ruby1.8系では動作しません。
ClientからHTTP Putでファイルを書き込む為には別途Apache moduleが必要です。
例えば以下が利用できます。
http://github.com/suzumura-ss/mod_upload
== SERVER CONFIGURATION ==
以下のポートでlisten可能にしてください。(デフォルト値の場合)
- Client
UDP: 30003:30099
- Gateway
UDP: 30100:30159
- Peer
UDP: 30100:30159
TCP 30111
== CASTORO CONFIGURATION ==
詳細は各gemを参照してください。