Description:
I have download the latest docker image of PMM 2.42.0 on linux 9.4 from web browser unable to see the login page
from prompt below error I am facing
[root@testbed06 ~]# curl https://10.114.16.50:80
curl: (35) error:0A00010B:SSL routines::wrong version number
Steps to Reproduce:
None fresh installation
Version:
[Insert the version number of the software]
Logs:
[If applicable, include any relevant log files or error messages]
Expected Result:
[What the user expected to see or happen before the issue occurred]
Actual Result:
[What actually happened when the user encountered the issue]
Additional Information:
[Include any additional information that could be helpful to diagnose the issue, such as browser or device information]
You need to pass in several options to curl to make it ignore self-signed certificates. You won’t be able to use PMM via curl. You should open in a browser.
Hi Adnan,
Please use flag -k in order to access API interface.
e.g.
Also here is a link to PMM API guide.
Your topic was “unable to see the login page” but we seemed to have switched to API related fixes because you did a curl test…
Further you did a curl command starting with https but connecting to port 80 which will not speak SSL by default… if you provide the docker run command you used to get the container started we can better advise.
http:// should bring the UI up without issue if you mapped port 80 on the host to port 80 on the container at creation time. Most of our instructions don’t guide you this way as we think SSL is a better approach even with a self-signed certificate.
https:// will bring up a certificate error in most browsers (assuming you mapped port 443 to 443 when creating the container). In Firefox you can do something to the effect of “proceed anyway” but in chrome you won’t get that option. You’ll need to type ‘thisisunsafe’ (there will be no box to type in…just have your chrome window “in focus” and start typing) and it will accept (not trust) the self-signed certificate and the UI should render.