• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[EP8] Server in Docker

Initiate Mage
Joined
Oct 13, 2020
Messages
3
Reaction score
0
It runs well in the same way as cabal ep2. I want to change the language. What should I do?
 
Joined
May 28, 2014
Messages
75
Reaction score
145
It runs well in the same way as cabal ep2. I want to change the language. What should I do?
You can unpack the files in the language folder, and change them to your language, then pack them back, if there are problems with the encoding, find a solution to this issue using the search on the forum
 
Initiate Mage
Joined
Nov 26, 2021
Messages
1
Reaction score
0
Hey Lex, you're the best! Really easy and almost no configuration needed to make it run!
Congratz and thanks! :D
 
Newbie Spellweaver
Joined
Sep 9, 2022
Messages
69
Reaction score
18
does anyone have a video, how to setup Desbian 11 and docker?.
 
Newbie Spellweaver
Joined
Sep 9, 2022
Messages
69
Reaction score
18
can i follow this guide to setup debian 11


 
Newbie Spellweaver
Joined
Dec 22, 2022
Messages
9
Reaction score
0
here's a python script to backup the database from docker and cp the files from docker to the folder of your choice, you will need to do a " pip3 install pymssql command first "

import os
import pymssql

SERVER_IP = "< DB IP HERE >"

SERVER_USERNAME = "< DB USERNAME HERE >"

SERVER_PASSWORD = "< DB PASSWORD HERE >"

DOCKER_FOLDER = "< CABAL DOCKER FOLDER >"

BACKUP_DIR = "< DIR YOU WANT TO CP BACKUP TOO >"

def get_backup_from_docker():
os.chdir(DOCKER_FOLDER)

print("getting backups from docker.")
os.system("docker-compose cp mssql:/home/Account.bak {0}/Account.bak".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/Authentication.bak {0}/Authentication.bak ".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/CabalCash.bak {0}/CabalCash.bak".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/CabalGuild.bak {0}/CabalGuild.bak ".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/EventData.bak {0}/EventData.bak ".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/NetcafeBilling.bak {0}/NetcafeBilling.bak ".format(BACKUP_DIR))
os.system("docker-compose cp mssql:/home/Server01.bak {0}/Server01.bak ".format(BACKUP_DIR))

def backup_database():
conn = pymssql.connect(SERVER_IP, SERVER_USERNAME, SERVER_PASSWORD)
conn.autocommit(True)

cursor = conn.cursor()
cursor.execute("BACKUP DATABASE [Account] TO DISK = N'/home/Account.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [Authentication] TO DISK = N'/home/Authentication.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [CabalCash] TO DISK = N'/home/CabalCash.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [CabalGuild] TO DISK = N'/home/CabalGuild.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [EventData] TO DISK = N'/home/EventData.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [NetcafeBilling] TO DISK = N'/home/NetcafeBilling.bak';")
conn.commit()
cursor.execute("BACKUP DATABASE [Server01] TO DISK = N'/home/Server01.bak';")
conn.commit()

conn.close()

backup_database()
get_backup_from_docker()
 
Newbie Spellweaver
Joined
Jan 8, 2013
Messages
71
Reaction score
2
possible to install in raspberry pi 3?
been trying to install centos on raspberry but cant manage to increase root partition to start with yum update :(
 
Newbie Spellweaver
Joined
Dec 22, 2022
Messages
9
Reaction score
0
you dont need to install cent os as it's using docker. any 64 bit os should work.
 
Initiate Mage
Joined
Aug 23, 2023
Messages
2
Reaction score
1
Its passed halfway 2023 and I am stuck with login credentials for game admin and sql.

Anyone would be so kind to share what is the login credentials after I have run everything in the guide? I have this game running but I couldnt find the login details. Also using TDChien88 tools, I got below message.

Failed to connect to the SQL server.

A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)
 
Elite Diviner
Joined
Jun 18, 2023
Messages
437
Reaction score
245
Can I install Docker on Windows Server 2022 in AWS EC2?

I am using Windows Server 2019 with Docker Engine from Amazon but I cant manage to to build

1695694274820 - [EP8] Server in Docker - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Elite Diviner
Joined
Jun 18, 2023
Messages
437
Reaction score
245
Where can I add/edit INI files like WorldSvr_01_01.ini and Data? Because I can see it the WorldSvr has X in the last (wanted to add channel with different Common.ini location) and also for data has it's role where rates is located at .enc, do I need to rebuild it when I change rates?
 
Initiate Mage
Joined
Nov 7, 2023
Messages
3
Reaction score
1
Hi guys, I came across some problems like this:
Artem-Alekseev - [EP8] Server in Docker - RaGEZONE Forums


Seems like some of the services aren't created, but I'm a newbie in docker stuff, so I need a little help with that, I'll be very appreciative.
 
Back
Top