QLocalSocket: Socket access error (error 3)

704 Views Asked by At

Recently finished compiling qt5 and qutebrowser on my FreeBSD system. Qutebrowser runs well when I run as root but otherwise gives me this socket access error. Have never done anything with or used qt5 before. I am assuming this is a permissions issue and have found a stackoverflow question and responces on how to fix this in Windows. Have found out about setSocketOption but don't know how to execute this nor if this would fix my problem. Thanks!

Exact error given:

Error while connecting to running instance:

QLocalSocket::connectToServer: Socket access error (error 3)

Maybe another instance is running but frozen?

1

There are 1 best solutions below

0
On

From their ICP class source, it seems to me like they are trying to initiate a local socket in the same folder as the qutebrowser executable

socketname = _get_socketname(args.basedir)

... where the args comes from the app itself, and the socketname is then used to create their IPC Server QLocalSocket. Which would mean that you need write permissions to its binary folder.

That being said, it looks a bit odd, so I would recommend filing an issue on their GitHub to have an answer from the maintainers!

https://github.com/qutebrowser/qutebrowser/issues

Hope that helps