ToolsEcosystem_boto
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
] [
リンク元
]
開始行:
[[ToolsEcosystem]]
#contents
----
* boto [#d8c72437]
LEFT:
|作者 | [[Mitch Garnaat氏、ほか>http://code.google.com/p...
|ホームページ | [[Google Code>http://code.google.com/p/bo...
|ドキュメント | [[API ドキュメント>http://boto.s3.amazona...
|コミュニティ | [[Google Groups>http://groups.google.com/...
|ダウンロード | [[Google Code>http://boto.googlecode.com/...
|ソース | [[Google COde>http://code.google.com/p/boto/so...
|バージョン | 1.8d |
|ライセンス | [[MIT ライセンス>http://www.opensource.org/...
----
* 使用例 [#o305110e]
** boto のセットアップ [#d34e9705]
boto をインストールし、環境をセットアップします。
root 権限で、次のように実行します。
python setup.py install
** 使い方 [#g386f699]
*** Eucalyptus EC2 インターフェース [#g81f2e60]
region = RegionInfo(name="eucalyptus", endpoint="hostnam...
connection = boto.connect_ec2(aws_access_key_id="access ...
aws_secret_access_key="sec...
is_secure=False,
region=region,
port=8773,
path="/services/Eucalyptus")
# 実行命令
zones = connection.get_all_zones()
「 hostname 」の部分には、Eucalyptus フロント・エンドのホ...
例えば、EC2_URL が http://192.168.9.1:8773/services/Eucal...
*** Eucalyptus S3 インターフェース [#e61a9b64]
calling_format=boto.s3.connection.OrdinaryCallingFormat()
connection = boto.s3.Connection(aws_access_key_id="acces...
aws_secret_access_key="secret",
is_secure=False,
host="hostname",
port=8773,
calling_format=calling_format,
path="/services/Walrus")
# 実行命令
bucket_instance = connection.get_bucket(bucket)
keys = bucket.get_all_keys()
for k in keys:
# 何かの処理を行います
*** Amazon EC2 とやりとりをするには [#c64186b3]
上記の例にある「 hostname 」の部分を 「 ec2.amazonaws.com...
----
原文:http://open.eucalyptus.com/wiki/ToolsEcosystem_boto
終了行:
[[ToolsEcosystem]]
#contents
----
* boto [#d8c72437]
LEFT:
|作者 | [[Mitch Garnaat氏、ほか>http://code.google.com/p...
|ホームページ | [[Google Code>http://code.google.com/p/bo...
|ドキュメント | [[API ドキュメント>http://boto.s3.amazona...
|コミュニティ | [[Google Groups>http://groups.google.com/...
|ダウンロード | [[Google Code>http://boto.googlecode.com/...
|ソース | [[Google COde>http://code.google.com/p/boto/so...
|バージョン | 1.8d |
|ライセンス | [[MIT ライセンス>http://www.opensource.org/...
----
* 使用例 [#o305110e]
** boto のセットアップ [#d34e9705]
boto をインストールし、環境をセットアップします。
root 権限で、次のように実行します。
python setup.py install
** 使い方 [#g386f699]
*** Eucalyptus EC2 インターフェース [#g81f2e60]
region = RegionInfo(name="eucalyptus", endpoint="hostnam...
connection = boto.connect_ec2(aws_access_key_id="access ...
aws_secret_access_key="sec...
is_secure=False,
region=region,
port=8773,
path="/services/Eucalyptus")
# 実行命令
zones = connection.get_all_zones()
「 hostname 」の部分には、Eucalyptus フロント・エンドのホ...
例えば、EC2_URL が http://192.168.9.1:8773/services/Eucal...
*** Eucalyptus S3 インターフェース [#e61a9b64]
calling_format=boto.s3.connection.OrdinaryCallingFormat()
connection = boto.s3.Connection(aws_access_key_id="acces...
aws_secret_access_key="secret",
is_secure=False,
host="hostname",
port=8773,
calling_format=calling_format,
path="/services/Walrus")
# 実行命令
bucket_instance = connection.get_bucket(bucket)
keys = bucket.get_all_keys()
for k in keys:
# 何かの処理を行います
*** Amazon EC2 とやりとりをするには [#c64186b3]
上記の例にある「 hostname 」の部分を 「 ec2.amazonaws.com...
----
原文:http://open.eucalyptus.com/wiki/ToolsEcosystem_boto
ページ名: