Тренд по дням 90 дн.
Чаще всего спрашивают top users
| Юзер | Вопросов |
|---|---|
| Сергей Шаповалов | 3 |
| J | 3 |
| Antonio F | 1 |
| Константин Лапин | 1 |
| Konstantin GARSHENIN | 1 |
| Valery | 1 |
| Даниил | 1 |
| andrey | 1 |
| ARS | 1 |
Примеры сообщений 13
J
· 2026-05-29T01:47
▸ Setting up Pro mode website
⠋ Installing nginx nginx already installed
⠋ Installing certbot certbot already installed
Old site saved to /tmp/site_backup_20260529_034654
✓ Шаблон сайта развёрнут
ℹ️ Obtaining SSL certificate for gra.awesome4u.site...
Requesting a certificate for gra.awesome4u.site
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
Domain: gra.awesome4u.site
Type: unauthorized
Detail: 91.134.134.72: Invalid response from http://gra.awesome4u.site/.well-known/acme-challenge/b29dfIYxYCGrb8DwL3bF_M5_IC_IZz9Gg2GuOrmBGZM: 403
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
⚠️ Certbot attempt 1 failed, retrying in 5s...
Requesting a certificate for gra.awesome4u.site
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
Domain: gra.awesome4u.site
Type: unauthorized
Detail: 91.134.134.72: Invalid response from http://gra.awesome4u.site/.well-known/acme-challenge/0lB9bZOnujo9IWO8pbHE1dy3GbtkPgXDLr_UYnTaUmA: 403
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
✗ Failed to obtain SSL certificate
Make sure gra.awesome4u.site points to this server's IP
and port 80 is open in the firewall.
root@vps-9d737d41:~#
J
· 2026-05-29T01:37
@AntenkaAI_bot Ставил govless на vps ovh (gra локация). Установка прервалась. Такая ошибка:
ℹ️ Obtaining SSL certificate for gra.awesome4u.site...
Account registered.
Requesting a certificate for gra.awesome4u.site
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
Domain: gra.awesome4u.site
Type: unauthorized
Detail: 91.134.134.72: Invalid response from http://gra.awesome4u.site/.well-known/acme-challenge/oy4a6xVIdzt-Gbz8H1SsHZTL_AFQGun4OsYnm3KftkU: 403
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
⚠️ Certbot attempt 1 failed, retrying in 5s...
Requesting a certificate for gra.awesome4u.site
Certbot failed to authenticate some domains (authenticator: webroot). The Certificate Authority reported these problems:
Domain: gra.awesome4u.site
Type: unauthorized
Detail: 91.134.134.72: Invalid response from http://gra.awesome4u.site/.well-known/acme-challenge/ITgvYjTotntAKUEbWPxJkajjqjjI3ift1AikAOZGOeA: 403
Hint: The Certificate Authority failed to download the temporary challenge files created by Certbot. Ensure that the listed domains serve their content from the provided --webroot-path/-w and that files created there can be downloaded from the internet.
✗ Failed to obtain SSL certificate
Make sure gra.awesome4u.site points to this server's IP
and port 80 is open in the firewall.
root@vps-9d737d41:~#
andrey
· 2026-05-25T13:51
@AntenkaAI_bot В чем может быть проблема - Failed to obtain SSL certificate
Make sure swetynet.site points to this server's IP
and port 80 is open in the firewall.
Даниил
· 2026-05-18T09:47
22 порт открыл, все равно лезет ошибка 305, в чем может быть причина. Само подключение AWG работает нормально
[image]
J
· 2026-05-17T00:31
@AntenkaAI_bot Поможешь настроить haproxy на Rocky 10 на VPS сервере?
Интересует весь процесс установки, с учётом обновления OS, далее отключения iptables/firewall полностью чтобы ничего не мешало. Далее установка haproxy и его последующая настройка. Нужно ли будет указывать в конфиге haproxy параметр nbproc под количество vcpu на данном виртуальном сервере?
Haproxy будет пробрасывать трафик TCP, все входящие по порту 6644 на бэкэнд ip по такому же порту.
Пример конфига:
listen 1st_rules_name 0.0.0.0:6644
mode tcp
server 1st_rules_name 78.242.143.113:6644 check
Если можешь, сделай вывод всех команд и действий с описанием, поочередно.
Konstantin GARSHENIN
· 2026-05-12T18:55
@AntenkaAI_bot сделай красивый тест vps что бы потом отправить по поддержку. что-то типа такого..
{ date; echo "=== VPS DIAGNOSIS REPORT ==="; echo "=== 1. Kernel & OS ==="; uname -a; cat /etc/os-release 2>/dev/null | grep PRETTY; echo "=== 2. IP Addresses ==="; ip addr show; echo "=== 3. Routing Table ==="; ip route show; echo "=== 4. Ping Gateway (3 packets) ==="; ping -c 3 $(ip route show default 2>/dev/null | awk '{print $3}') echo "Gateway unreachable"; echo "=== 5. DNS Test ==="; nslookup google.com; echo "=== 6. Firewall Rules (iptables) ==="; iptables -L -n -v 2>/dev/null echo "iptables not available or no rules"; echo "=== 7. Firewall Rules (nftables) ==="; nft list ruleset 2>/dev/null || echo "nftables not available"; echo "=== 8. SSH Service ==="; systemctl status ssh --no-pager 2>/dev/null; echo "=== 9. SSH Port (ss) ==="; ss -tlnp | grep ':22'; echo "=== 10. Resource Usage ==="; echo "---- Disk ----"; df -h; echo "---- Memory ----"; free -h; echo "---- Load ----"; uptime; echo "=== END OF REPORT ==="; }
Сергей Шаповалов
· 2026-04-09T17:32
А нужно все порты открыть, или определённые? Я же ламер, не забывайте :)
Сергей Шаповалов
· 2026-04-09T17:27
К сожалению, "факир был пьян, и фокус не удался"... Порты открыты...
Константин Лапин
· 2026-03-07T18:37
Даже порты открывать не надо на ру сервере, каскад сам все сделает. Единственное, если пользуетесь файерволом на зарубежном сервере, проверьте, чтобы порт для амнезии был открыт. sudo ufw status verbose или sudo ufw status numbered
Antonio F
· 2026-03-07T04:43
Кто сталкивался с таким? Прям вилы какие то, порт открыт, пароль верный, версия последняя