Advertisement
Guest User

Untitled

a guest
Mar 1st, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. root@stack01:~# gdb ./rados_objecter
  2. GNU gdb (GDB) 7.1-ubuntu
  3. Copyright (C) 2010 Free Software Foundation, Inc.
  4. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
  5. This is free software: you are free to change and redistribute it.
  6. There is NO WARRANTY, to the extent permitted by law. Type "show copying"
  7. and "show warranty" for details.
  8. This GDB was configured as "x86_64-linux-gnu".
  9. For bug reporting instructions, please see:
  10. <http://www.gnu.org/software/gdb/bugs/>...
  11. Reading symbols from /root/rados_objecter...(no debugging symbols found)...done.
  12. (gdb) run
  13. Starting program: /root/rados_objecter
  14. [Thread debugging using libthread_db enabled]
  15. [New Thread 0x7ffff59ed700 (LWP 24530)]
  16. [New Thread 0x7ffff51ec700 (LWP 24531)]
  17. [New Thread 0x7ffff49eb700 (LWP 24532)]
  18. terminate called after throwing an instance of 'ceph::buffer::malformed_input'
  19. what(): buffer::malformed_input: decode_base64: decoding failed:
  20.  
  21.  
  22. Program received signal SIGABRT, Aborted.
  23. 0x00007ffff72d0a75 in raise () from /lib/libc.so.6
  24. (gdb) bt
  25. #0 0x00007ffff72d0a75 in raise () from /lib/libc.so.6
  26. #1 0x00007ffff72d45c0 in abort () from /lib/libc.so.6
  27. #2 0x00007ffff636f8e5 in __gnu_cxx::__verbose_terminate_handler() () from /usr/lib/libstdc++.so.6
  28. #3 0x00007ffff636dd16 in ?? () from /usr/lib/libstdc++.so.6
  29. #4 0x00007ffff636dd43 in std::terminate() () from /usr/lib/libstdc++.so.6
  30. #5 0x00007ffff636de3e in __cxa_throw () from /usr/lib/libstdc++.so.6
  31. #6 0x00007ffff7b4937e in ceph::buffer::list::decode_base64 (this=<value optimized out>, e=<value optimized out>) at common/buffer.cc:1039
  32. #7 0x00007ffff7a792ad in CryptoKey::decode_base64(std::string const&) () from /usr/lib/librados.so.2
  33. #8 0x00007ffff7a783de in KeyRing::from_ceph_context (cct=0x603530, pkeyring=0x60d248) at auth/KeyRing.cc:64
  34. #9 0x00007ffff7b03d24 in MonClient::init (this=0x60cdc8) at mon/MonClient.cc:357
  35. #10 0x00007ffff7a2bf29 in librados::RadosClient::connect (this=0x60cab0) at librados.cc:965
  36. #11 0x0000000000400875 in main ()
  37. (gdb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement