On my VPS, I done wget "https://minecraft.azureedge.net/bin-linux/bedrock-server-1.6.1.0.zip" then I done unzip bedrock-server-1.6.1.0.zip. Then i tried doing ./bedrock_server and i get this error: ./bedrock_server: error while loading shared libraries: libCrypto.so: cannot open shared object file: No such file or directory. When I check in my folder, there is a libCriypto.so file.
Comments 3
You need to run:
LD_LIBRARY_PATH=. ./bedrock_server
otherwise it won't find that libCrypto.so file. It's in the instructions file included with the server.
You need to run:
LD_LIBRARY_PATH=. ./bedrock_server
otherwise it won't find that libCrypto.so file. It's in the instructions file included with the server.