SQL Ledger

Questions about other topics - please check if your question fits better in another category before posting here
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Husse

Post by Husse »

I'll do what you don't want :) Maybee it'll help
http://ubuntuforums.org/showthread.php?t=22476
http://www.linuxjournal.com/article/7290
http://ubuntuforums.org/showthread.php?t=97036
and SQL ledger is in synaptics, so I beleive it's sufficient to install it that way and then invoke thru localhost as in the first post above
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
Husse

Post by Husse »

Come to think of it, maybee localhost is blocked by iptables by default? >> Searching>>Ops, that seems to be the case.
Your problem may simply be that you can't make the connection to localhost as IPtables blocks it.
The following lines executed with sudo in a terminal "opens" localhost and your problem is hopefully solved.
iptables -A INPUT -s 127.0.0.0/8 -d 127.0.0.0/8 -i lo -j ACCEPT
iptables -A OUTPUT -s 127.0.0.0/8 -d 127.0.0.0/8 -o lo -j ACCEPT

There is a wiki on iptables http://en.wikipedia.org/wiki/Iptables
and don't mess around with iptables - it's really tricky
Locked

Return to “Other topics”