我已经在centOS中安装了mysql,现在,要启动mysql-server。但是,我得到了这个错误:
# systemctl start mysqld
Failed to get D-Bus connection: Operation not permitted
要修复它,我如图所示创建了一个Dockerfile
FROM centos:7
MAINTAINER theodosiostziomakas <mymail@gmail.com>
ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i
== systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;
VOLUME [ "/sys/fs/cgroup" ]
CMD ["/usr/sbin/init"]
然后运行它以创建图像。
$ docker build --rm -t local/c7-systemd .
但是我仍然遇到相同的错误。
我也看了这个proposed solution
有什么想法吗?
谢谢, 西奥。
答案 0 :(得分:2)
我相信Dockerfile或run命令的问题
您的Dockerfile中的问题似乎在这一行中
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
这是MySQL centos Dockerfile
# Starting from base CentOS image
FROM centos:7
# Enabling SystemD
ENV container docker
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \
systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;
VOLUME [ "/sys/fs/cgroup" ]
# Enabling EPEL & Remi repo
#RUN yum install -y epel-release && \
#yum install -y http://rpms.remirepo.net/enterprise/remi-release-7.rpm
# Mysql repo & installion
RUN yum install -y https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm && \
yum install -y mysql mysql-server
RUN chkconfig --level 345 mysqld on
RUN systemctl enable mysqld
VOLUME [ "/var/lib/mysql" ]
# Port Expose
EXPOSE 3306
CMD ["/usr/sbin/init"]
现在,下一步是运行
--privileged is not enough, you also need to mount cgroup
这是命令
docker run --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro -it adilm7177/centos-mysql
您可以构建自己的镜像,也可以从我在测试过程中构建并推送的docker注册表中提取以上图像。
docker push adilm7177/centos-mysql:latest
更新:
RUN systemctl enable mysqld
添加此内容后,我可以使用systemctl
答案 1 :(得分:1)
我可以使用docker-systemctl-replacement脚本运行mysql,而该脚本可以在没有活动systemd守护程序的情况下模拟“ systemctl”命令。您可以在docker-systemctl-images示例中看到它。