Dahlgren / arma-server-web-admin

Web based server manager for Arma
MIT License
123 stars 47 forks source link

Servers Not Starting #159

Open ygorma opened 4 years ago

ygorma commented 4 years ago

ISSUE DESCRIPTION

When I click "Start" any server won't start.

ISSUE TYPE

Arma Server Web Admin Version

Latest

OS / ENVIRONMENT

Windows 10 x64

STEPS TO REPRODUCE

Click "Start".

config.js

module.exports = {
  game: 'arma3', // arma3, arma2oa, arma2, arma1, cwa, ofpresistance, ofp
  path: 'C:\\steamcmd\\steamapps\\common\\Arma 3 Server',
  port: 3000,
  host: '127.0.0.1', // Can be either an IP or a Hostname
  type: 'windows', // Can be either linux, windows or wine
  additionalConfigurationOptions: '', // Additional configuration options appended to server.cfg file
  parameters: [ // Additional startup parameters used by all servers
  ],
  serverMods: [ // Mods used exclusively by server and not shared with clients
    '@mod1',
    '@mod2'
  ],
  admins: [
    'STEAM_0:1:13261489'
  ], // add steam IDs here to enable #login without password
  auth: { // If both username and password is set, HTTP Basic Auth will be used. You may use an array to specify more than one user.
    username: 'Admin', // Username for HTTP Basic Auth
    password: '********', // Password for HTTP Basic Auth
  },
  prefix: "", // Prefix to all server names
  suffix: "", // Suffix to all server names
  logFormat: "dev", // expressjs/morgan log format
};
Dahlgren commented 4 years ago

Check the node application console for issues while starting the game

ygorma commented 4 years ago

Sorry. This is the first app that i'm trying to implement with Node.js. Where I can find the console for the service?

Dahlgren commented 4 years ago

The windows service throws away all the logs. Stop the service and run it manually with npm start