さくらのレンタルサーバにs3cmdを導入する
バックアップに使いたいですよね。 root 権限がなく、他のサイトで書かれているやり方ではうまくいかなかったため簡単に手順を書いてみます(ぼくは Python 歴 30 分ぐらいなので理解の整理もかねて……)。
s3cmd を git からとってきます。
% git clone https://github.com/s3tools/s3cmd.git
実行したところ、エラーになりました。
% ./s3cmd
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
ImportError trying to import dateutil.parser.
Please install the python dateutil module:
$ sudo apt-get install python-dateutil
or
$ sudo yum install python-dateutil
or
$ pip install python-dateutil
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
python-dateutil 入れろと言われました。 root 権限がなく、また、デフォルトで pip が使えないので easy_install を使って python-dateutil を入れてみます。
まず ~/.pydistutils.cfg
を作成し、下記のように指定します。すると、 easy_install でユーザディレクトリに保存されるようになるらしいです。
[install]
user=1
次に、 easy_install します。
% easy_install python-dateutil
再挑戦
% ./s3cmd
ERROR: /home/.s3cfg: Operation not permitted
ERROR: Configuration file not available.
ERROR: Consider using --configure parameter to create one.
通りました。あとはいつもの通り .s3cfg を作るなりして使えると思います。
python-magic があると MIME タイプを判断してくれ、これがないと WARNING が出てしまうのでこちらも入れておくといいでしょう。
% easy_install python-magic
(おまけ)Ansible Playbook の Task をこんなかんじでつくってみました。
---
- copy: src=files/pydistutils.cfg dest=~/.pydistutils.cfg
- easy_install: name={{ item }}
with_items:
- python-dateutil
- python-magic
- git: repo=https://github.com/s3tools/s3cmd.git dest=~/bin/repos/s3cmd
accept_hostkey=yes
- file: src=~/bin/repos/s3cmd/s3cmd dest=~/bin/s3cmd state=link
- template: src=templates/s3cfg.j2 dest=~/.s3cfg mode=0400
参考文献
Author And Source
この問題について(さくらのレンタルサーバにs3cmdを導入する), 我々は、より多くの情報をここで見つけました https://qiita.com/youcune/items/6afa0f387b32ac670607著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .