本文主要包含centos6.5安装docker,centos6安装docker,centos 7 安装docker,centos下安装docker,centos安装docker等服务器相关知识,网友希望可以进行参考
centos源码编译docker,centos源码docker
安装golang centos7 直接安装golangyum install golangcentos6需添加软件源,然后再安装
rpm -ivh http://ftp.riken.jp/Linux/fedora/epel/6/i386/epel-release-6-8.noarch.rpm yum install golang
安装依赖包
yum groupinstall 'Development tools' yum install glibc-static ?sqlite-devel.x86_64 libselinux-static libsepol-static yum install libuuid-devel libattr-devel zlib-devel libacl-devel e2fsprogs-devel libblkid-devel lzo-devel asciidoc xmlto
编译device mapper
git clone --no-checkout https://git.fedorahosted.org/git/lvm2.git /usr/local/lvm2 && cd /usr/local/lvm2 && git checkout -q v2_02_103 #如果下载超时,使用https://github.com/steven676/lvm2.git代替,或直接从https://git.fedorahosted.org/cgit/lvm2.git/refs/tags下载 cd /usr/local/lvm2 && ./configure --enable-static_link && make && make install此处要注意别用./configure --enable-static_link && make device-mapper && make install_device-mapper只编译device mapper,这样有可能因为lvm与device mapper不匹配,而导致lvm无法运行,在物理机下次重启时,所有lvm文件系统都不可用,只能重装操作系统了。
编译安装sqlite
wget http://www.sqlite.org/2015/sqlite-autoconf-3080803.tar.gz ./configure make make install
安装btrfs-progs centos7
yum install btrfs-progscentos6
git clone git://git.kernel.org/pub/scm/linux/kernel/git/kdave/btrfs-progs.git cd btrfs-progs ./autogen.sh ./configure make make install
设置环境变量
export GOPATH=/path/to/go #docker目录放在/path/to/go/docker export AUTO_GOPATH=1
编译docker
静态编译
./hack/make.sh binary动态编译docker
./hack/make.sh dynbinary
TroubleShooting
- 执行lvm --version出错:
这是由于之更新了device mapper,没有更新lvm导致,直接运行:
cd /usr/local/lvm2 && ./configure --enable-udev_sync && make && make install
- 启动docker时报如下警告
原因在于编译device mapper时没有添加对 udev sync的支持,执行如下命令重新编译:
yum install libudev-devel cd /usr/local/lvm2 && ./configure --enable-udev_sync && make && make install cd docker && ./hack/make.sh dynbinary由于现在udev没有可用静态库,所以只能编译device mapper的动态链接库,也就只能编译动态链接版的docker。
- centos7编译device mapper出错,错误信息如下,未解决,求助?
(.text+0x334): warning: Using 'getgrouplist' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(seusers.o): In function `getseuserbyname':
(.text+0x306): warning: Using 'getgrnam_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(seusers.o): In function `getseuserbyname':
(.text+0x570): warning: Using 'getpwnam_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(load_policy.o): In function `selinux_mkload_policy':
(.text+0x302): undefined reference to `lzma_stream_decoder'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(load_policy.o): In function `selinux_mkload_policy':
(.text+0x411): undefined reference to `lzma_code'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(load_policy.o): In function `selinux_mkload_policy':
(.text+0x482): undefined reference to `lzma_end'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(load_policy.o): In function `selinux_mkload_policy':
(.text+0x642): undefined reference to `lzma_end'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `closef':
(.text+0x136): undefined reference to `pcre_free'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `closef':
(.text+0x13f): undefined reference to `pcre_free_study'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `compile_regex.isra.5':
(.text+0x270): undefined reference to `pcre_compile'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `compile_regex.isra.5':
(.text+0x291): undefined reference to `pcre_study'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `lookup':
(.text+0x4fa): undefined reference to `pcre_exec'
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/libselinux.a(label_file.o): In function `lookup':
(.text+0x572): undefined reference to `pcre_exec'
collect2: error: ld returned 1 exit status
make[1]: *** [dmsetup.static] Error 1
make[1]: Leaving directory `/root/lvm2-2_02_103/tools'
make: *** [tools.device-mapper] Error 2
- 静态编译版的docker在启动时出错(动态编译版运行正常),信息如下,未解决,求助。
INFO[0000] +job serveapi(unix:///var/run/docker.sock, tcp://0.0.0.0:5050)
INFO[0000] WARNING: You are running linux kernel version 2.6.32-431.el6.x86_64, which might be unstable running docker. Please upgrade your kernel to 3.8.0.
WARN[0000] WARNING: Udev sync is not supported. This will lead to unexpected behavior, data loss and errors
INFO[0000] Listening for HTTP on unix (/var/run/docker.sock)
INFO[0000] Listening for HTTP on tcp (0.0.0.0:5050)
INFO[0000] /!\ DON'T BIND ON ANOTHER IP ADDRESS THAN 127.0.0.1 IF YOU DON'T KNOW WHAT YOU'RE DOING /!\
fatal error: unexpected signal during runtime execution
[signal 0xb code=0x1 addr=0x0 pc=0x0]
runtime stack:
runtime: unexpected return pc for runtime.sigpanic called from 0x988759
runtime.throw(0x12bdce5)
/usr/lib/golang/src/pkg/runtime/panic.c:520 +0x69
runtime: unexpected return pc for runtime.sigpanic called from 0x988759
runtime.sigpanic()
/usr/lib/golang/src/pkg/runtime/os_linux.c:222 +0x3d
goroutine 24 [syscall]:
runtime.cgocall(0x402028, 0xc208399038)
/usr/lib/golang/src/pkg/runtime/cgocall.c:143 +0xe5 fp=0xc208399020 sp=0xc208398fd8
github.com/docker/docker/pkg/devicemapper._Cfunc_dm_udev_wait(0x0, 0xc2085970c0)
github.com/docker/docker/pkg/devicemapper/_obj/_cgo_de

