403使用Toi连接到AWS云中的S3 bucket时禁止

2024-04-25 15:14:08 发布

您现在位置:Python中文网/ 问答频道 /正文

我是一个新手在辛苦和AWS试图运行你好世界.py劳动文件中的示例。我已经在本地的mac笔记本电脑上成功安装了toil和相关的python包,并在AWS上设置了我的帐户。我创建了一个小型的领导者/工作者集群

$ cgcloud create-cluster toil -s 2 -t m3.large 
and started it:
$ cgcloud ssh toil-leader 

这将我的屏幕提示更改为:

mesosbox@ip-172-31-25-135:~$

然后,在mac上的另一个窗口中,我使用以下命令启动了Toil HelloWorld示例:

$ python2.7 HelloWorld.py --batchSystem=mesos --mesosMaster=mesos-master:5050 aws:us-west-2:my-aws-jobstore

我得到了以下结果:

Apples-Air 2017-06-02 19:30:53,524 MainThread INFO toil.lib.bioio: Root logger is at level 'INFO', 'toil' logger at level 'INFO'.
    Apples-Air 2017-06-02 19:30:53,524 MainThread INFO toil.lib.bioio: Root logger is at level 'INFO', 'toil' logger at level 'INFO'.
    Apples-Air 2017-06-02 19:30:54,852 MainThread WARNING toil.jobStores.aws.jobStore: Exception during panic
    Traceback (most recent call last):
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 209, in initialize
        self.destroy()
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 1334, in destroy
        self._bind(create=False, block=False)
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 241, in _bind
        versioning=True)
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 721, in _bindBucket
        bucket = self.s3.get_bucket(bucket_name, validate=True)
      File "/usr/local/lib/python2.7/site-packages/boto/s3/connection.py", line 502, in get_bucket
        return self.head_bucket(bucket_name, headers=headers)
      File "/usr/local/lib/python2.7/site-packages/boto/s3/connection.py", line 535, in head_bucket
        raise err
    S3ResponseError: S3ResponseError: 403 Forbidden

    Traceback (most recent call last):
      File "helloWorld.py", line 22, in <module>
        print(Job.Runner.startToil(j, options)) #Prints Hello, world!, ….
      File "/usr/local/lib/python2.7/site-packages/toil/job.py", line 740, in startToil
        with Toil(options) as toil:
      File "/usr/local/lib/python2.7/site-packages/toil/common.py", line 614, in __enter__
        jobStore.initialize(config)
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 209, in initialize
        self.destroy()
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 206, in initialize
        self._bind(create=True)
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 241, in _bind
        versioning=True)
      File "/usr/local/lib/python2.7/site-packages/toil/jobStores/aws/jobStore.py", line 721, in _bindBucket
        bucket = self.s3.get_bucket(bucket_name, validate=True)
      File "/usr/local/lib/python2.7/site-packages/boto/s3/connection.py", line 502, in get_bucket
        return self.head_bucket(bucket_name, headers=headers)
      File "/usr/local/lib/python2.7/site-packages/boto/s3/connection.py", line 535, in head_bucket
        raise err
    boto.exception.S3ResponseError: S3ResponseError: 403 Forbidden

请帮忙。
谢谢。
---约翰


Tags: inpyselfawsbucketlibpackagesusr
1条回答
网友
1楼 · 发布于 2024-04-25 15:14:08

我意识到这个答案有点晚了。我注意到的一个问题是关于中间派的论点。你知道吗

相反,您的命令应该

python2.7 HelloWorld.py  batchSystem=mesos  mesosMaster=172.31.25.135:5050 aws:us-west-2:my-aws-jobstore

注意,我将mesos-master替换为

mesosbox@ip-172-31-25-135:~$

希望在未来,人们根本不需要通过这一论点,但截至2017年7月26日,这一论点尚未实施。你知道吗

此外,对于更多的问题,您可能会有更好的运气posting a new issue到toilgithub页面。你知道吗

相关问题 更多 >