dlopen failed trying to load: steamclient.so (fixed)

Bigun

New member
Environment:

  • 64bit Linux


So, I recently updated my stand-alone server to alpha 19.

When I start the server I get the following messages:

Using config file: navezganeconfig.xml
Set current directory to /home/bigun/steamcmd/7daysded
Found path: /home/bigun/steamcmd/7daysded/7DaysToDieServer.x86_64
[S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
dlopen failed trying to load:
steamclient.so
with error:
steamclient.so: cannot open shared object file: No such file or directory
[S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.


Opening the log the only ERR message I see is:

2020-06-29T19:05:02 49.427 ERR [Steamworks.NET] Could not initialize GameServer


This was never a problem before.

So, I attempted to link the steamclient.so to /usr/lib with no success.

Unsure what to do.

 
Last edited by a moderator:
Fixed this myself.

I had to link the steamclient.so from my steamcmd directory to the directory where 7D2D resided.

Code:
ln -s /home/bigun/steamcmd/linux64/steamclient.so /home/bigun/steamcmd/7daysded/
 
Back
Top