Skip to content
Juan J. Martínez edited this page Jul 11, 2013 · 3 revisions

1. username and password when using OpenStack:

In OpenStack the username can be "accountname:username", and it may require that the ":" part is encoded with "%3a".

Examples:

With ftp command line (v0.17)

ftp localhost
Name: account%3auser
Password: yourpass
ftp> passive
ftp> ls

With lftp command line (v4.3.1)

lftp account%3auser:yourpass@localhost
lftp> ls

With lftp command line (v4.3.1) using sftp (sftpcloudfs)

lftp sftp://account%3auser:yourpass@localhost:115
lftp> ls

Source: https://github.com/chmouel/ftp-cloudfs/issues/16

2. Failed to store the cache

This error appears when the server fails to store a cache entry in Memcache.

Some possible reasons for this are:

  • Memcache is misconfigured
  • The cache entry is to big to be stored in Memcache (by default Memcache has a 1MB object limit)
Clone this wiki locally