Docker#docker dead but pid file exists
场景/分析
解决
资料
1.http://stackoverflow.com/questions/27216473/docker-1-3-fails-to-start-on-rhel6-5
解决方案:
/usr/bin/docker: relocation error: /usr/bin/docker: symbol dm_task_get_info_with_deferred_remove, version Base not defined in file libdevmapper.so.1.02 with link time reference
I ran into this at work this week (also on RHEL6.5). I believe the lib-device-mapper that you have isn't exporting a symbol ("Base") that Docker needs. I solved this by upgrading lib-device-mapper to version 1.02.90.
You may have to enable the public_ol6_latest
repo in order to get this package.
sudo yum-config-manager --enable public_ol6_latest
And then install the package:
sudo yum install device-mapper-event-libs
http://blog.youkuaiyun.com/ybygjy/article/details/50756928