Hi, I’m trying to resolve NT_STATUS_IO_TIMEOUT error.
I got an idea to try to add some lines in nginx conf file just to see will it work. This is what I got
location /192.168.178.1/ {
proxy_connect_timeout 3600;
proxy_send_timeout 3600;
proxy_read_timeout 3600;
}
When I triggered backup I saw this line in my nginx log
[error] 134#134: *3061 client intended to send too large body: 139100726 bytes,
So I added a line in my nginx conf file
client_max_body_size 2500M;
but I got the same error again but this time nginx wasnt complaining.
This is error from samba backup addon running in debug mode.
[22-07-17 18:20:55] WARNING: cli_push returned NT_STATUS_IO_TIMEOUT
NT_STATUS_CONNECTION_DISCONNECTED closing remote file \USB_BACKUP\ha-backup\Samba_Backup_2022_07_17_18_02.tar
[22-07-17 18:20:55] WARNING: Could not copy backup 94e0220c to share. Trying again ...
[22-07-17 18:21:20] WARNING: protocol negotiation failed: NT_STATUS_IO_TIMEOUT
[22-07-17 18:21:30] DEBUG: API Status: 200
[22-07-17 18:21:30] DEBUG: API Response: {"entity_id":"sensor.samba_backup","state":"FAILED","attributes":{"friendly_name":"Samba Backup","backups_local":"1","backups_remote":"12","total_backups_succeeded":"0","total_backups_failed":"17","last_backup":"never"},"last_changed":"2022-07-17T16:21:30.811099+00:00","last_updated":"2022-07-17T16:21:30.811099+00:00","context":{"id":"01G86FE0HVZRHW6XPPKFZ25158","parent_id":null,"user_id":"d0dd944b2f65447b8e6726d82ca192e5"}}
[22-07-17 18:21:40] DEBUG: API Status: 200
[22-07-17 18:21:40] DEBUG: API Response: {"entity_id":"sensor.samba_backup","state":"IDLE","attributes":{"friendly_name":"Samba Backup","backups_local":"1","backups_remote":"12","total_backups_succeeded":"0","total_backups_failed":"17","last_backup":"never"},"last_changed":"2022-07-17T16:21:40.860463+00:00","last_updated":"2022-07-17T16:21:40.860463+00:00","context":{"id":"01G86FEABWDN4YPF6BXEYP1TS2","parent_id":null,"user_id":"d0dd944b2f65447b8e6726d82ca192e5"}}