mirror of
https://github.com/RD17/ambar.git
synced 2026-04-25 15:35:49 +03:00
[GH-ISSUE #42] Install issue on proxmox lxc #41
Labels
No labels
$$ Paid Support
bug
bug
enhancement
help wanted
invalid
pull-request
question
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ambar#41
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tscibilia on GitHub (Jun 19, 2017).
Original GitHub issue: https://github.com/RD17/ambar/issues/42
The install process was easy and straightforward. I was excited to get started with ambar, but at the very end I received a message in the console
sysctl: cannot stat /proc/sys/net/ipv4/tcp_fin_timeout: No such file or directoryI know lxc containers have an issue running docker (which I was able to get around by modifying the lxc conf file to include some extra parameters. I realize this is probably not the safest practice but the container would only be accessible on a local network. Since I'm still having issues with the container I was hoping to see if anyone had a solution I missed.
@sochix commented on GitHub (Jun 19, 2017):
Hello @tscibilia ! This line
sysctl -w net.ipv4.tcp_fin_timeout=30was added to tune Ubuntu tcp/ip stack, I think in your case just comment it out in yourambar.pyfile:@tscibilia commented on GitHub (Jun 19, 2017):
thanks that worked, except i had to comment out a few other errors.
# runShellCommandStrict('sysctl -w net.ipv4.tcp_fin_timeout=30')# runShellCommandStrict('sysctl -w net.core.netdev_max_backlog=2000')# runShellCommandStrict('sysctl -w net.ipv4.tcp_max_syn_backlog=2048')@sochix commented on GitHub (Jun 20, 2017):
Nice!