Docker#docker dead but pid file exists

来源:互联网 发布:电影后期特效制作软件 编辑:程序博客网 时间:2024/06/05 03:25

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://stackoverflow.com/questions/27216473/docker-1-3-fails-to-start-on-rhel6-5

             http://blog.csdn.net/ybygjy/article/details/50756928

0 0
原创粉丝点击