I need help with this error when power a server.

07/05/2023 19:06 Biiiz#1
So guys, I'm trying to set up a game server..
I installed aaPanel and the necessary dependencies for the 'game' to run, but when I enter the command in the console 'cd /ltcq/server/s1 && ./stop.sh' it gives the following error:

HTML Code:
./run.sh: line 8: /ltcq/server/s1/Debug/dbserver/dbserver: cannot execute binary file

./run.sh: line 10: /ltcq/server/s1/Debug/gameworld/gameworld: cannot execute binary file

./run.sh: line 12: /ltcq/server/s1/Debug/gateway/gateway: cannot execute binary file

./run.sh: line 14: /ltcq/server/s1/Debug/loggerserver/loggerserver: cannot execute binary file
nohup: appending output to 'nohup.out'

I'm using Oracle Cloud with an Ampere processor, could that be the issue?
07/05/2023 20:47 sk8land​#2
You're probably trying to run an x86 binary on Arm. Check the output of file /ltcq/server/s1/Debug/dbserver/dbserver.
07/12/2023 14:58 TonyFinch09#3
The error message you encountered suggests that the binary files for the game server cannot be executed. There could be several reasons for this issue, but make sure that the binary files have the necessary permissions to be executed. You can use the chmod command to set the correct permissions. For example, you can run chmod +x /ltcq/server/s1/Debug/dbserver/dbserver to grant executable permissions to the file.
08/21/2023 19:32 Ole2212#4
Ensure that the binary files have the necessary execute permissions. You can use the chmod command to make them executable

chmod +x /ltcq/server/s1/Debug/dbserver/dbserver
chmod +x /ltcq/server/s1/Debug/gameworld/gameworld
chmod +x /ltcq/server/s1/Debug/gateway/gateway
chmod +x /ltcq/server/s1/Debug/loggerserver/loggerserver