Manager is crashing on fedora 38

Downloaded and installed Manager (latest version) from the website on my Fedora 38 laptop. Unfortunately, it does a core dump when I click on a newly created business. Does anyone know how to fix this issue? Clean install of Fedora 38. Anyone have any help available?

Try to download server edition from https://www.manager.io/server-edition

Then launch in terminal ./ManagerServer and access using web-browser to http://localhost:8080

See if you can open business that way.

@eko it’s not the same issue. OP can launch the program, it crashes when opening a business.

2 Likes

Issue still persists on Fedora 40 Silverblue. I have tried several AppImage versions but all the same. Manager opens but crashes on opening a business.

Did you try @Lubos solution? Also determine what Operating system X64 or ARM64 you install Manager Server on and download the correct install from the Manager Github repository at https://github.com/Manager-io/Manager

In addition make sure that port 8080 is available. Check how to do that in Linux:

sudo ss -ltnp | grep :8080

If no output then the port is available otherwise it will show which process is already using it:

LISTEN 0 128 0.0.0.0:8080 0.0.0.0:* users:(("process_name",pid,fd))

You can also use
sudo lsof -i :8080
and
sudo netstat -tuln | grep :8080

Similar to ltnp these terminal commands will list the processes if port 8080 is using it. If the command returns no output then port 8080 is available.

1 Like

Thank you @eko. Yes, I have tried the suggested solution and it works.

Out of curiousity, I have also tried the AppImage on various distros (from Debian to Fedora to RHL and a number of derivatives) and it fails on almost all with just a one or two exeptions.

This just to let you know that it is not an isolated issue (confined to Fedora) but seems to be a general issue.

So whoever else encounters this problem is well advised to use the server version as a workaround.

1 Like