mame
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
mame [2025/03/23 19:48] – mark_scottworld.net | mame [2025/03/23 19:52] (current) – removed mark_scottworld.net | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Game Service ====== | ||
- | |||
- | |||
- | Firstly we need to create the service file in / | ||
- | |||
- | nano / | ||
- | |||
- | In this file we put all the details about the service we want to run. | ||
- | |||
- | < | ||
- | [Unit] | ||
- | Description=MyGameServer Server Control Script | ||
- | Documentation= | ||
- | Requires=network.target | ||
- | After=network.target | ||
- | |||
- | [Service] | ||
- | User=gameserver | ||
- | Group=gameserver | ||
- | Environment=" | ||
- | ExecStart=/ | ||
- | Type=oneshot | ||
- | RemainAfterExit=yes | ||
- | |||
- | [Install] | ||
- | WantedBy=multi-user.target | ||
- | |||
- | </ | ||
- | |||
- | Now we reload the daemon, to read in the file we just created. | ||
- | |||
- | systemctl --system daemon-reload | ||
- | |||
- | Now enabled the service with | ||
- | |||
- | systemctl enable MyGameService.service | ||
- | |||
- | Now start the service with the cmd. | ||
- | |||
- | systemctl start MyGameService.service | ||
- | |||
- | |||
- | Once you've started the server, you can check that it's running with this command. | ||
- | |||
- | systemctl status MyGameService.service | ||
- | | ||
- | |||
- | |||
mame.1742755724.txt.gz · Last modified: 2025/03/23 19:48 by mark_scottworld.net