repcachedリベンジ
先日の続きで、とあるFC5, x86_64の環境でmake testしてみました。
make installもできました。あれー。
(5/10追記:結局のところ、libeventのライブラリを正しくインストールしてあるかどうかを rpm -aq以外の方法でちゃんと確認しとけ!って話のようなので、これ以下は、単なるチョンボの記録に過ぎません。検索して来訪してくださった方、すみません。)
# ./configure --enable-replication checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking target system type... x86_64-unknown-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking whether gcc and cc understand -c and -o together... yes checking for a BSD-compatible install... /usr/bin/install -c checking for libevent directory... (system) checking for library containing socket... none required checking for library containing gethostbyname... none required checking for library containing mallinfo... none required checking for daemon... yes checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking for an ANSI C-conforming const... yes checking malloc.h usability... yes checking malloc.h presence... yes checking for malloc.h... yes checking for struct mallinfo.arena... yes checking for socklen_t... yes checking for endianness... little checking for mlockall... yes checking for getpagesizes... no checking for memcntl... no configure: creating ./config.status config.status: creating Makefile config.status: WARNING: Makefile.in seems to ignore the --datarootdir setting config.status: creating doc/Makefile config.status: WARNING: doc/Makefile.in seems to ignore the --datarootdir setting config.status: creating config.h config.status: executing depfiles commands # make (中略) # make test prove ./t t/00-startup.........ok 1/3getaddrinfo(): Name or service not known replication: failed to initialize replication server socket faild to replication init t/00-startup.........ok 2/3replication: failed to initialize replication server socket faild to replication init t/00-startup.........ok t/64bit..............ok t/binary-get.........ok t/bogus-commands.....ok t/cas................ok t/daemonize..........ok t/delete-window......ok 14/20# waiting 5 seconds for the deleter event... t/delete-window......ok t/expirations........ok t/flags..............ok t/flush-all..........ok t/getset.............ok t/incrdecr...........ok t/lru................skipped all skipped: Tests not written. t/managed-buckets....skipped all skipped: Tests not written. t/maxconns...........ok t/multiversioning....ok t/noreply............ok t/slab-reassign......skipped all skipped: Tests not written. t/stats-detail.......ok t/stats..............ok t/udp................ok t/unixsocket.........ok t/whitespace.........ok All tests successful, 3 tests skipped. Files=23, Tests=784, 26 wallclock secs ( 2.75 cusr + 1.71 csys = 4.46 CPU)
ところが、別のFC5, x86_64のマシン(ほぼ同一の設定)ではconfigureも通らないという不思議。
checking for libevent directory... configure: error: libevent is required. You can get it from http://www.monkey.org/~provos/libevent/ If it's already installed, specify its path using --with-libevent=/dir/
libevent.soは/usr/lib64にあるんだけど、それにsymbolic linkしただけじゃダメだし、--with-libevnetを設定してみてもうまく行かない。なんじゃこりゃ。
(追記する予定)
とりあえずconfigureの中身を見てみると、デフォルトで/usr/lib64なんか探さないのは確かなようだ。ではなぜ --with-libeventを指定しないでconfigureが通ったり、--with-libeventを指定してもダメだったりするんだろうか?
まず、configureに成功したほうでは
checking for libevent directory... (system)
と出ている。
これは、$ledirというライブラリ指定ディレクトリが""(空文字列)のときにリンクテストが成功した、ということだ。
リンクテストされるCのソースは次のようなもので、それぞれの環境では、このソースファイルをgccしたときのエラーが異なる。
最初は、すでに設定されたパラメータが並ぶ : : #include#include #include int main () { event_init(); ; return 0; }
要するに、うまくいかなかった環境ではevent.hが無い、ということでコケているようだ。
error: event.h: No such file or directory
というわけで、event.hを探したところ、うまく行った環境では、なぜか/usr/local/include/event.h が存在していた。
うーん、なんだかなー。いつこんなファイルをインストールしたっけかなー(汗
これで通ったから、うまく行くとは思えん(劇汗
(5/9追記)
いろいろ調べてみたら、やっぱりインストールが成功したほうではlibeventをsource RPMでインストールしていたようだ。でもなんでどちらも rpm -aq の実行結果が一緒なんだろう。もしかして、片方にはもともとのLinuxのcoreとして用意されていたバージョンだけしか入ってないとか、そういう不整合なのかしらん?
ちなみにNFSをインストールする過程でlibeventが必要になっていたらしい。(作業ログで確認できた)
とりあえず、libeventをソース(libevent-1.1a-3.2.src.rpm)からインストールしてみることに。
(5/9追記ここまで)
uname -aも同じだからということで、/usr/local/include/event.h をコピーしてみたら、エラーは変わりましたが、、まだうまく行かない。
/usr/bin/ld: cannot find -levent
(5/9追記)
結局、上記の追記の通り、libeventをsourceRPMから入れなおしたらconfigureもmakeもmake installもできた。
(5/9追記ここまで)
とりあえず、インストールが成功したというほうで、通常のmemcachedの動作を確認
$ netstat -na | grep LISTEN | grep tcp | grep :11211 tcp 0 0 :::11211 :::* LISTEN $ telnet localhost 11211 Trying 127.0.0.1... Connected to localhost.localdomain (127.0.0.1). Escape character is '^]'. get hello END set hello 0 0 5 world STORED get hello VALUE hello 0 5 world END ^] ←(キーボードから Ctrl-]を入力して、telnetを中断) telnet> quit Connection closed.
これはうまく行っている。
とすると、片方の環境ではlibeventのインストールでなにがしかのへまをしでかしている可能性があるな。
とりあえず、リベンジ失敗ということで、残っている確認項目へ進むことにした。
(5/9追記:インストールはできた。というわけでやっとreplicationも確認できるようになった)