centos7 安裝docker本地倉庫出現 http: server gave HTTP response to HTTPS client 錯誤解決方案
推薦看這篇文章 https://www.cnblogs.com/panwenbin-logs/p/7999120.html
出現http: server gave HTTP response to HTTPS client錯誤或無法訪問/opt/registry/docker/registry/v2/repositories/: 沒有那個檔案或目錄 錯誤的按以下方式配置
1.開啟5000埠 firewall-cmd --zone=public --permanent --add-port=5000/tcp
重啟防火牆 service firewalld restart
2.關閉selinux
vim /etc/sysconfig/selinux
將 SELINUX=enforcing 改為 SELINUX=disabled
在下一行新增 setenforce 0
3.container內的root擁有真正的root許可權,否則,container內的root只是外部的一個普通使用者許可權。privileged啟動的容器,可以看到很多host上的裝置,並且可以執行mount。甚至允許你在docker容器中啟動docker容器。所以,在啟動容器的時候加入privileged引數
docker run --privileged=true -idt -v /opt/registry:/var/lib/registry -p 5000:5000 --restart=always --name registry-server registry:2
相關文章
- 搭建 docker registry 私有倉庫並解決報錯Get https://xxx.xxx.xxx.xxx:5000/v1/_ping: http: server gave HTTP respDockerHTTPServer
- HTTP 錯誤 500.21 - Internal Server Error 解決方案HTTPServerError
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- 安裝vCenter Server出現1603錯誤的一種解決方法Server
- Http failure response 0 Unknown error 錯誤分析HTTPAIError
- 伺服器出現 HTTP 錯誤程式碼,及解決方法伺服器HTTP
- Centos7安裝docker倉庫HarborCentOSDocker
- HTTP代理錯誤怎麼解決?HTTP
- centos8安裝docker錯誤解決CentOSDocker
- Windows作業系統雲虛擬主機解決方案 “HTTP 錯誤 500.19 - Internal Server Error”Windows作業系統HTTPServerError
- Python: 安裝 sklearn 包出現錯誤的解決方法Python
- docker中安裝tcpdump出錯解決方法DockerTCP
- 解決centos7 安裝MySQLdb-python 報錯 方案CentOSMySqlPython
- HTTP 錯誤 500.19 - Internal Server Error v4.0.30319HTTPServerError
- 解決Centos7 yum 出現could not retrieve mirrorlist 錯誤CentOS
- centos7部署瓦力可能出現的錯誤以及解決方案CentOS
- 寶塔安裝證書後http訪問錯誤HTTP
- 解決MySQL server has gone away錯誤的解決方案MySqlServerGo
- 安裝 Lua 的 HTTP 庫HTTP
- M1晶片Mac安裝PS2022出現錯誤碼182的解決方案!晶片Mac
- ubuntu 20.04 安裝 vim 出錯的解決方案Ubuntu
- 真機除錯出現 application installation failed 錯誤 解決方案除錯APPAI
- Holer實現外網訪問本地Apache HTTP ServerApacheHTTPServer
- HTTP和HTTPS詳解HTTP
- 安裝完fiddler每次啟動出現這錯誤,我的解決!
- Windows git remote: HTTP Basic: Access denied 錯誤解決辦法WindowsGitREMHTTP
- 海外常見的http錯誤程式碼原因與解決HTTP
- 安裝CentOS7出現dracut:/#……time解決辦法CentOS
- http,https, http2.0HTTP
- Ubuntu 安裝包時提示錯誤E: Unable to locate package mysql-server錯誤 解決辦法UbuntuPackageMySqlServer
- 訪問 HTTPS 網站時的 SSL 錯誤解決方案HTTP網站
- 安裝npm報錯,安裝淘寶映象cnpm時出現問題及解決方案NPM
- navicat本地連線mysql出現1251--Client does not support authentication protocol requested by server的解決方法MySqlclientProtocolServer
- WCF執行錯誤:“此集合已經包含方案 http 的地址”的解決辦法HTTP
- SAP Fiori應用裡出現http request錯誤的原因分析HTTP
- Intellij IDEA使用@Autowired註解,出現could not autowire錯誤,解決方案IntelliJIdea
- 全面瞭解HTTP和HTTPSHTTP
- Go的http clientGoHTTPclient