Fix lỗi PEM routines:PEM_read_bio:bad end line error trên Nginx

Fix error SSL PEM routines:PEM_read_bio:bad end line

When you configure SSL Certificate on Web Server Nginx and your SSL Intermediate Certificate bundle has something strange to make appear an error when we restart Nginx web server like below :

(SSL: error:0906D066:PEM routines:PEM_read_bio:bad end line)

Ok, you encountered that issue and what is causing of it.

Reason cause “PEM routines:PEM_read_bio:bad end line”

No line break has been created between each start and end points of Intermediate Certificate within the file certificate bundle, i.e.

# cat /etc/nginx/ssl/ssl-domain.crt

-----END CERTIFICATE----------BEGIN CERTIFICATE-----

This can cause some serious issues because it cannot be interpreted, as you might have noticed.

How to Fix SSL PEM routines:PEM_read_bio:bad end line error

To fix this issue, fire up your text editor of choice and create a line break between the two files, i.e.

-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----

Tip: Count five hyphens at the start and end of the text. You can now save the file and the error should be fixed!

Nguồn: https://cuongquach.com/

1
2
Previous article[Python] Tìm hiểu Python statement và indentation
Next article[Blog] Chín thói quen xấu cần bỏ nếu muốn theo ngành CNTT
Bạn đang theo dõi website "https://cuongquach.com/" nơi lưu trữ những kiến thức tổng hợp và chia sẻ cá nhân về Quản Trị Hệ Thống Dịch Vụ & Mạng, được xây dựng lại dưới nền tảng kinh nghiệm của bản thân mình, Quách Chí Cường. Hy vọng bạn sẽ thích nơi này !