溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用docker搭建dns時(shí)如何利用域名訪問實(shí)現(xiàn)替代ip:port

發(fā)布時(shí)間:2020-11-23 16:17:18 來源:億速云 閱讀:427 作者:Leah 欄目:開發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)使用docker搭建dns時(shí)如何利用域名訪問實(shí)現(xiàn)替代ip:port,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

第1步: 準(zhǔn)備好docker環(huán)境

第2步:下載好鏡像

docker pull andyshinn/dnsmasq:2.75

第3步:運(yùn)行dnsmasq

#后臺(tái)啟動(dòng)
docker run -d -p 53:53/tcp -p 53:53/udp --cap-add=NET_ADMIN --name dns-server andyshinn/dnsmasq:2.75

#進(jìn)入容器
docker exec -it dns-server /bin/sh

#創(chuàng)建代理文件-添加外部dns
vi /etc/resolv.dnsmasq

nameserver 114.114.114.114
nameserver 8.8.8.8

#新建本地解析規(guī)則配置-添加本地解析規(guī)則
#注意:這里的ip要填docker所在主機(jī)的ip
vi /etc/dnsmasqhosts
.168.3.54 jenkins.ean.com test1.ean.com
.168.3.54 redis.ean.com

#追加上我們剛才配置的兩個(gè)文件
#vi /etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq
addn-hosts=/etc/dnsmasqhosts

#退出容器 & 重啟
exit

docker restart dns-server

第4步:搭建nginx

一定要在3.54上安裝nginx做域名反向代理

server{
 listen 80;
 server_name jenkins.ean.com;
 proxy_set_header  Host $host;
 location /{
  proxy_pass http://192.168.3.54:8060;
 }
}

補(bǔ)充知識(shí):docker pull 私有倉庫 鏡像

1、docker pull 私有倉庫報(bào)錯(cuò)

http server gave http response to https clinet

由于docker版本不同,可嘗試下面兩種方法:(在客戶端配置)

(1)、方法一:通過配置/etc/docekr/daemon.json

vim /etc/docker/daemon.json
{
 "insecure-registry": ["172.16.12.196:5000"](倉庫地址)
}

(2)、方法二:通過配置/etc/sysconfig/docker

vim /etc/sysconfig/docker

INSECURE_REGISTRY = "--insecure-registry 172.16.12.196:5000"

上述就是小編為大家分享的使用docker搭建dns時(shí)如何利用域名訪問實(shí)現(xiàn)替代ip:port了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI