How to start .x86 file in EC2 Ubuntu

Hello everyone. Have compiled for nix folder with

Server.x86 file.
I’m using Ubuntu 777 permissions are set and don’t understand if i start this file

sudo file /var/unityfolder/LinuxBuild/Server.x86

it says

/var/unityfolder/LinuxBuild/Server.x86: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, BuildID[sha1]=f773af6c99daad946a8adb67f607a84438b42079, stripped

ok now i don’t understand if it works and how i can connect to it?

Your command:

$ sudo file /var/unityfolder/LinuxBuild/Server.x86

Starts the “file” command on file “/var/unityfolder/LinuxBuild/Server.x86”

You want:

$ sudo /var/unityfolder/LinuxBuild/Server.x86

Note: I don’t know if your server really needs root privileges(sudo)
If you don’t, then remove it

$ /var/unityfolder/LinuxBuild/Server.x86