Также после reboot сервера с BitrixVM, сайт стал не доступен
Какая последовательность диагностирования проблемы?
Код |
---|
Не удается получить доступ к сайту
Сайт xxx.ru не позволяет установить соединение.
Попробуйте сделать следующее:
Проверьте подключение к Интернету.
Проверьте настройки прокси-сервера и брандмауэра.
ERR_CONNECTION_REFUSED |
Подозрение упало на то что не стартанул NGINX
пробуем стартнуть NGINX
получаю такой ответ
Код |
---|
Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details. |
проверяю статус сервиса
Код |
---|
systemctl status nginx.service |
получаю такой ответ
Код |
---|
● nginx.service - nginx - high performance web server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Sun 2023-04-23 22:47:42 MSK; 59s ago
Docs: http://nginx.org/en/docs/
Process: 3460 ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf (code=exited, status=1/FAILURE)
Apr 23 22:47:42 xxx.ru systemd[1]: Starting nginx - high performance web server...
Apr 23 22:47:42 xxx.ru nginx[3460]: nginx: [emerg] invalid value "TLSv1.3" in /etc/nginx/bx/conf/ssl-push.conf:11
Apr 23 22:47:42 xxx.ru nginx[3460]: nginx: configuration file /etc/nginx/nginx.conf test failed
Apr 23 22:47:42 xxx.ru systemd[1]: nginx.service: control process exited, code=exited status=1
Apr 23 22:47:42 xxx.ru systemd[1]: Failed to start nginx - high performance web server.
Apr 23 22:47:42 xxx.ru systemd[1]: Unit nginx.service entered failed state.
Apr 23 22:47:42 xxx.ru systemd[1]: nginx.service failed.
|
Выполнил проверку конфигов NGINX командой
nginx -t
В ответе получил вывод ошибки
Код |
---|
nginx: [emerg] invalid value "TLSv1.3" in /etc/nginx/bx/conf/ssl-push.conf:11
nginx: configuration file /etc/nginx/nginx.conf test failed |
закомментировал все директивы в файле /etc/nginx/bx/conf/ssl-push.conf:11
после чего стартанул NGINX командой
проверил статус
Код |
---|
systemctl status nginx.service |
в ответе получил желанный active [running]
Код |
---|
● nginx.service - nginx - high performance web server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: active (running) since Sun 2023-04-23 23:17:48 MSK; 23min ago
Docs: http://nginx.org/en/docs/
Process: 1244 ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
Process: 1185 ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf (code=exited, status=0/SUCCESS)
Main PID: 1313 (nginx)
CGroup: /system.slice/nginx.service
├─1313 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
├─1322 nginx: worker process
├─1323 nginx: worker process
├─1324 nginx: worker process
├─1325 nginx: worker process
├─1326 nginx: worker process
├─1327 nginx: worker process
├─1328 nginx: worker process
└─1329 nginx: worker process
Apr 23 23:17:48 art-riseproject.ru systemd[1]: Starting nginx - high performance web server...
Apr 23 23:17:48 art-riseproject.ru nginx[1185]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
Apr 23 23:17:48 art-riseproject.ru nginx[1185]: nginx: configuration file /etc/nginx/nginx.conf test is successful
Apr 23 23:17:48 art-riseproject.ru systemd[1]: Failed to read PID from file /var/run/nginx.pid: Invalid argument
Apr 23 23:17:48 art-riseproject.ru systemd[1]: Started nginx - high performance web server.
|
Но сайт после этого не открылся...
Что делать?