简体   繁体   中英

What is the default username password of docker registry running from a container

What is the default username password of docker registry running from a container ?

I tried admin/admin it is not working

Error response from daemon: Get https://host/v2/ : http: server gave HTTP response to HTTPS client

Do not mix up authentication and encrypted traffic.

Login (authentication) could also happen using unencrypted traffic (but is highly insecure - everyone can see your credentials).

HttpS (usually using TLS) is about encrypting the traffic between client and server to prevent attackers to read your traffic. The server seems to respond to a request on https port (443) with unencrypted content. That means that there is probably some misconfiguration on the server side.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM