Memcached com SASL: não foi possível encontrar o mech PLAIN

1

Estou tentando fazer o memcached trabalhar com o SASL. Estou compilando memcached e libevent da fonte.

Estes são os passos que tomei (ambos em raiz e um usuário, mesmo resultado):

Tendo estes pacotes:

cyrus-sasl.x86_64               2.1.23-13.el6_3.1    @anaconda-CentOS-201303020151.x86_64/6.4
cyrus-sasl-devel.x86_64         2.1.23-13.el6_3.1    @cloudlinux-x86_64-server-6
cyrus-sasl-lib.x86_64           2.1.23-13.el6_3.1    @anaconda-CentOS-201303020151.x86_64/6.4

-

mkdir -p ~/working/sasl
nano ~/.bashrc

anexo:

export PATH=$HOME/working/bin:$PATH
export LD_LIBRARY_PATH=:$HOME/working/lib:$HOME/working/include/:$LD_LIBRARY_PATH
export SASL_CONF_PATH=$HOME/working/sasl
export MEMCACHED_SASL_PWDB=$HOME/working/sasl/my.sasldb

-

. ~/.bashrc
wget https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
tar zxvf libevent-2.0.21-stable.tar.gz
cd libevent-2.0.21-stable
./configure --prefix=$HOME/working
make
make install
cd ~
wget http://www.memcached.org/files/memcached-1.4.16.tar.gz
tar zxvf memcached-1.4.16.tar.gz
cd memcached-1.4.16
./configure --enable-sasl --enable-sasl-pwdb --prefix=$HOME/working
make
make install
saslpasswd2 -c -a memcached -f ~/working/sasl/my.sasldb mymemcached
nano ~/working/sasl/memcached.conf

inserir:

mech_list: plain cram-md5
log_level: 5
sasldb_path: ~/working/sasl/my.sasldb

-

memcached -d -l 127.0.0.1 -p 11211 -m 64 -S -vvv -u root

Agora eu tento fazer o login (usando um script php)

<26 server listening (binary)
<27 send buffer was 245760, now 268435456
<27 server listening (udp)
<27 server listening (udp)
<27 server listening (udp)
<27 server listening (udp)
<28 new binary client connection.
28: going from conn_new_cmd to conn_waiting
28: going from conn_waiting to conn_read
28: going from conn_read to conn_parse_cmd
<28 Read binary protocol data:
<28    0x80 0x21 0x00 0x05
<28    0x00 0x00 0x00 0x00
<28    0x00 0x00 0x00 0x17
<28    0x00 0x00 0x00 0x00
<28    0x00 0x00 0x00 0x00
<28    0x00 0x00 0x00 0x00
authenticated() in cmd 0x21 is true
28: going from conn_parse_cmd to conn_nread
mech:  ''PLAIN'' with 18 bytes of data
SASL (severity 2): Couldn't find mech PLAIN
sasl result code:  -4
Unknown sasl response:  -4
>28 Writing an error: Auth failure.
>28 Writing bin response:
>28   0x81 0x21 0x00 0x00
>28   0x00 0x00 0x00 0x20
>28   0x00 0x00 0x00 0x0d
>28   0x00 0x00 0x00 0x00
>28   0x00 0x00 0x00 0x00
>28   0x00 0x00 0x00 0x00
28: going from conn_nread to conn_mwrite
28: going from conn_mwrite to conn_new_cmd
28: going from conn_new_cmd to conn_waiting
28: going from conn_waiting to conn_read
28: going from conn_read to conn_closing
<28 connection closed.

Eu não consigo descobrir o que está errado, talvez eu esteja perdendo uma biblioteca ou um ENV var, ou eu configurei algo errado. Não sei.

A razão pela qual eu preciso manter tudo em ~ / working é porque eu quero usar isso no CloudLinux CageFS, onde os usuários têm um ambiente totalmente funcional, mas não podem mudar nada em / usr / dirs etc. Então tudo precisa ficar em seu usuário doméstico. Mas também não estou conseguindo fazer isso funcionar.

    
por Arie 12.12.2013 / 13:58

0 respostas