Closed SimiliSerpent closed 4 months ago
I am not an expert, but I think the problem was caused by Icarust listening to every adresses, using IPv6 formatting. Maybe the other interfaces of my computing node, which are different from IPv4/IPv6, caused this Address family not supported issue?
Replacing lines 305 & 306 of Icarust/src/main.rs
:
305 let addr_manager = format!("[::0]:{}", m_port).parse().unwrap();
306 let addr_position: SocketAddr = format!("[::0]:{}", a_port).parse().unwrap();
by:
305 let addr_manager = format!("127.0.0.1:{}", m_port).parse().unwrap();
306 let addr_position: SocketAddr = format!("127.0.0.1:{}", a_port).parse().unwrap();
solved the error.
I will check if it is still able to communicate with ReadFish ASAP. Ben
For the sake of completeness: yes, it still communicates well with ReadFish.
Ben
Hey Ben,
I have no idea how I managed this but I never saw this issue until just now! You'll have to forgive me, I am deep in Thesis mode.
That's very interesting - I'm also no expert - and the [::0]
shortcut is super opaque to me.
When I get the chance I will add something to the documentation about this!
Thanks, Rory
Hi Rory,
Stay strong and good luck for the Thesis! Given the work accomplished here, no doubt it will be fine :-) (still have a few years ahead to complete mine.. ... ..)
Ben
Dear Icarust maintainers,
I have an issue while trying to use Icarust under a new environment. I get the following error, with full Rust backtrace:
I found out that IPv6 is disabled under that environment. I thought maybe Icarust / the minknow API is using it, so I replaced
localhost
in the code with127.0.0.1
, recompiled icarust and ran it again, but still the same error occurs. Do you have any hint why? Can you try to disable IPv6 and see what happens? (I do not have the rights to do so under my working env)Thank you for your help Ben
_To give you some context, I had to change my working environment because the previous GPU was too old to handle recent Dorado (
dorado_basecall_server
) releases, hence why I am unable to test and close the issue #16_