从 AWS 实例内部访问保管箱
Access dropbox from inside AWS instance
我已尝试按照这篇 [1] 文章中的说明从我的 AWS ECS 实例连接到 Dropbox 帐户,但不幸的是我注意到存在权限问题。我正在使用的用户有权访问所有内容,所有端口都是打开的。下面我粘贴了守护进程启动失败的日志。
[ec2-user@ip-10-179-221-31 ~]$ ~/.dropbox-dist/dropboxd
Couldn't start Dropbox.
This is usually because of a permissions error. Storing your home folder on a network share can also cause an error.
Get more help at https://www.dropbox.com/c/help/permissions_error
Please contact Dropbox support with the following info for help:
/tmp/dropbox_errorTC7IXY.txt
有没有办法在 AWS 上使用 Dropbox?
[1] http://ged.msu.edu/angus/tutorials-2011/installing-dropbox.html
事实证明,这只是一个区域设置问题。解决方案是设置 LC_ALL
和 LANG
环境变量:
[ec2-user@ip-10-111-184-40 ~]$ export LC_ALL=en_US.UTF-8
[ec2-user@ip-10-111-184-40 ~]$ export LANG=en_US.UTF-8
我已尝试按照这篇 [1] 文章中的说明从我的 AWS ECS 实例连接到 Dropbox 帐户,但不幸的是我注意到存在权限问题。我正在使用的用户有权访问所有内容,所有端口都是打开的。下面我粘贴了守护进程启动失败的日志。
[ec2-user@ip-10-179-221-31 ~]$ ~/.dropbox-dist/dropboxd
Couldn't start Dropbox.
This is usually because of a permissions error. Storing your home folder on a network share can also cause an error.
Get more help at https://www.dropbox.com/c/help/permissions_error
Please contact Dropbox support with the following info for help:
/tmp/dropbox_errorTC7IXY.txt
有没有办法在 AWS 上使用 Dropbox?
[1] http://ged.msu.edu/angus/tutorials-2011/installing-dropbox.html
事实证明,这只是一个区域设置问题。解决方案是设置 LC_ALL
和 LANG
环境变量:
[ec2-user@ip-10-111-184-40 ~]$ export LC_ALL=en_US.UTF-8
[ec2-user@ip-10-111-184-40 ~]$ export LANG=en_US.UTF-8