月: 2016年4月

AtomのRemote-FTPで「Invalid host hash algorithm」って出た

昨日からAtomをインストールしてRemote-FTPでsftp接続して
利用していたのに今日起動してみると↓のエラーが出て接続できなかった。

Error: Invalid host hash algorithm: undefined

接続先のサーバはvagrantで起動させたサーバ。

ググってみると

Invalid host hash algorithm: undefined #321
が見つかった。

.ftpconfigの「”hosthash”: “”,」を「”hosthash”: “sha1”,」に
変更したら接続できた。
※「md5」か「sha1」を入れるらしい。

なんでインストール時は接続できたのか?

CentOS7にduplicityをインストール

CentOS7にduplicityをインストール

■epel導入

# yum install https://mirrors.kernel.org/fedora-epel/7/x86_64/e/epel-release-7-5.noarch.rpm

■python tools導入

# yum install python-devel librsync-devel librsync python-setuptools python-lockfile python-boto wget

■Duplicityのソースを取得、解凍、インストール

# wget https://code.launchpad.net/duplicity/0.6-series/0.6.26/+download/duplicity-0.6.26.tar.gz
# tar xvf duplicity-0.6.26.tar.gz
# cd duplicity-0.6.26
# python setup.py build
# python setup.py install
# duplicity --version

Duplicity 0.6 series is being deprecated:
See http://www.nongnu.org/duplicity/

duplicity 0.6.26

■FTPも使うのでncftpもインストール

# yum install ncftp

とりあえずこれでOK。

■参考
Installing Duplicity for Backups on CentOS 7

install duplicity on centos 64bit

■以前の記事
duplicityをCentOS6.3にインストールするメモ

duplicityをCentOS6.3にインストールするメモ

duplicity で1日前のデータを復元する

duplicity で1日前のデータを復元する

CentOS5系にduplicityをインストールする

CentOS5系にduplicityをインストールする