Skip to content

halysondev/PWServerInstallScript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 

Repository files navigation

Perfect World Server Install Script

Overview

This script is designed to manage and automate the installation and operation of a Perfect World server. It simplifies tasks such as starting, stopping, and updating server components, managing backups, and configuring network settings.

Features

  • Auto-update: Automatically checks for and installs updates to the script.
  • Server management: Provides commands to start, stop, and restart the server.
  • Backup and restore: Supports creating backups of server data and restoring from them.
  • External backup synchronization: Allows syncing backups to an external server.
  • Database management: Includes utilities for database repair and cache management.
  • Network configuration: Tools for configuring firewall rules to manage server access.

Installation

To use this script, clone it from the GitHub repository:

git clone https://github.com/halysondev/PWServerInstallScript.git   \
chmod +x PWServer.sh    \
./PWServer.sh install

Usage

Before running the script, configure the necessary environment variables according to your server setup. This can be done by editing your .bashrc file or exporting them directly in your terminal session, or create a file name "configure" in "/PWServer" and edit your settings

Configure Example

#PWSERVER CONFIG
export PW_AUTO_UPDATE="true" # Auto-update toggle (set to false to disable auto updates)
#DIR
export PW_SERVER_DIR="PWServer" # Directory for server files and logs
#EXTERNAL PORTS
export PW_PORT_1="29000"
export PW_PORT_2="29001"
export PW_PORT_3="29002"
export PW_PORT_4="29003"
#START
export PW_START_GAMED="true"
export PW_START_GLINKD_1="true"
export PW_START_GLINKD_2="false"
export PW_START_GLINKD_3="false"
export PW_START_GLINKD_4="false"
export PW_START_GAMEDBD="true"
export PW_START_GFACTIOND="true"
export PW_START_GACD="true"
export PW_START_GDELIVERYD="true"
export PW_START_GAUTHD="true"
export PW_START_UNIQUENAMED="true"
export PW_START_LOGSERVICE="true"
export PW_START_MONITOR="true"
#BACKUP
export PW_DB_HOST="10.10.0.1"
export PW_DB_USER="root"
export PW_DB_PASSWORD="1"
export PW_DB_NAME="pw"
export PW_EXTERNAL_BACKUP="false"
export PW_BACKUP_SSH_PASS="1"
export PW_BACKUP_SSH_USER="root"
export PW_BACKUP_SSH_HOST="10.10.0.1"
export PW_BACKUP_DIR="/PWStorage/backup"
export PW_BACKUP_LOG_DIR="/PWStorage/logs"
export PW_BACKUP_STORAGE_DIR="/PWStorage"
export PW_BACKUP_RETENTION_DAYS="5"
export PW_SLEEP_TIME="5"

Basic Commands

Start the server:

PWServer start

Stop the server:

PWServer stop

Restart the server:

PWServer restart

Backup server data:

PWServer backup

Show commands:

PWServer help

Environment Variables

The script supports numerous environment variables for extensive customization and control over the server and backup configurations. Here are a few important ones:

PW_AUTO_UPDATE: Enable or disable automatic script updates.

PW_SERVER_DIR: Directory for server files and logs.

PW_PORT_1 to PW_PORT_4: Port configurations for server services.

PW_DB_HOST, PW_DB_USER, PW_DB_PASSWORD, PW_DB_NAME: Database configurations.

PW_EXTERNAL_BACKUP: Toggle external backup functionality.

PW_BACKUP_DIR, PW_BACKUP_LOG_DIR, PW_BACKUP_STORAGE_DIR: Directories for backups, logs, and storage.

For a full list and explanation of the environment variables, refer to the script comments.

Contributing

Contributions to the Perfect World Server script are welcome. Please follow the standard fork-and-pull request workflow. If you have any suggestions, bug reports, or contributions, please submit them via GitHub issues or pull requests.

License

This project is open-sourced under the MIT License. See the LICENSE file for more details.

Acknowledgments

Thanks to all the contributors and users of the PWServerInstallScript. Perfect World community for the invaluable feedback and support. For more information and updates, visit the project repository on GitHub.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages