Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Battle of the Immortals
You last visited: Today at 20:57

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[ Release ] Server Files Fixed!

Discussion on [ Release ] Server Files Fixed! within the Battle of the Immortals forum part of the MMORPGs category.

Reply
 
Old 07/12/2012, 16:40   #61
 
axelcro's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 208
Received Thanks: 88
Short tutorial forMSSQL 2008:

Download:

When install select SQL Authentication mode and set password.

When installation finished open Server Managment Studio, login with your password, create a database called "boi". Right click on database and select Restore database. > Restore db from file > point the .bak file which is in the server files/ mssql folder. After u've restored rename the database to "PassportBoi".
axelcro is offline  
Thanks
2 Users
Old 07/12/2012, 17:36   #62
 
elite*gold: 0
Join Date: Jul 2012
Posts: 4
Received Thanks: 0
Can provide supporting clients to download address thank you very much!~!!!
yueyue4567 is offline  
Old 07/12/2012, 17:52   #63
 
axelcro's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 208
Received Thanks: 88
Quote:
Originally Posted by yueyue4567 View Post
Can provide supporting clients to download address thank you very much!~!!!
Quote:
OR
Quote:
axelcro is offline  
Thanks
2 Users
Old 07/12/2012, 22:50   #64
 
ZorroXXX's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 57
Received Thanks: 4
How do i make new account?
ZorroXXX is offline  
Old 07/12/2012, 23:38   #65
 
elite*gold: 0
Join Date: May 2008
Posts: 86
Received Thanks: 5
/etc Edit : table.xml add your microsoft db and config
joseus34 is offline  
Old 07/13/2012, 00:01   #66
 
ZorroXXX's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 57
Received Thanks: 4
WHen i am running ./dbserver i get this
Quote:
run dir:../bin
ZorroXXX is offline  
Old 07/13/2012, 00:36   #67
 
elite*gold: 0
Join Date: Sep 2011
Posts: 7
Received Thanks: 6
How do I point my client to the test server?
How do I create an account to login?

I'm running the windows version.

Thanks
bluedev is offline  
Old 07/13/2012, 00:53   #68
 
LordMadara's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 98
Received Thanks: 3
btw: on which system is easier to set up. Linux or Windows ?
LordMadara is offline  
Old 07/13/2012, 01:09   #69
 
ZorroXXX's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 57
Received Thanks: 4
You need to run on both.
ZorroXXX is offline  
Thanks
1 User
Old 07/13/2012, 01:23   #70
 
elite*gold: 0
Join Date: May 2009
Posts: 6
Received Thanks: 2
I guess plenty of you guys still don't get it, it's not a windows and a linux version which you can simply choose from and run the server from that.
You gotta run both to have it actually working, each of those have different sub-servers that work together.

@ZorroXXX:
That is fine, it's just pointing out in which directory the script is running from.

@bluedev:
To point the client to the server just edit BOI Folder/Bin/ServerList.ini with something like:
Code:
node server normal WhateverNameYouWant 127.0.0.1 30002  1
No idea how to create the account correctly yet, you create it on PassportBOI..account, but I still couldn't get the password to work.

Btw, for those who don't frequent rz:

Quote:
Originally Posted by BloodyShade
Btw, I changed the scripts around a bit to make them actually accurate:

start.sh:
Code:
#!/bin/bash
cd /home/BOI/DBServer/bin
./dbserver&
sleep 2
cd /home/BOI/CardServer/bin
./cardsvrd&
sleep 2
cd /home/BOI/NameServer/bin
./namesvrd&
sleep 2
cd /home/BOI/gacd
./gacd io.conf&
sleep 2
cd /home/BOI/LogServer/bin
./logsrv&
sleep 2
cd /home/BOI/authd/build
./authd&
stop.sh:
Code:
#!/bin/bash
pkill -9 dbserver
pkill -9 cardsvrd
pkill -9 namesvrd
pkill -9 gacd
pkill -9 logsrv
pkill -9 java
Also remember to change /home/BOI/authd/build/authd:
Otherwise it will keep looping forever, and since it seems the java app doesn't close on failure (it will fail when relaunching because the port will already be in use from the first start), it will start eating memory until it makes the server unusable and will probably cause it to reboot due to a lack of memory (and eventually swap).
Code:
#!/bin/sh

java -cp ../lib/jio.jar:../lib/cache.jar:../lib/wanmeiaudb.jar:../lib/log4j-1.2.9.jar:../lib/jconn3.jar:../msSQLjdbc/lib/msbase.jar:../msSQLjdbc/lib/mssqlserver.jar:../msSQLjdbc/lib/msutil.jar:. authd /etc/table.xml &> authd.out
Hope that helps a bit, just need to figure out now how to insert the password correctly on PassportBOI..account
bloodyshade is offline  
Thanks
2 Users
Old 07/13/2012, 01:46   #71
 
LordMadara's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 98
Received Thanks: 3
~Linux part
You must logged as a /root user (super user)
copy the linux file into root folder
Run Terminal (Applications /System Tools/ Terminal)
tar -zxvf boi-linux.tar.gz
tar xvfz boi-linux.tar.gz
Click on Install.sh - Click Run
Now downloading 700mb :*(
Will keep posting with progress
----------------------------------------------------------------------------------------
Create Databases


ERROR 1007 (HY000) at line 1: Can't create database 'shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'empty_shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguiex'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'forbid'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguicard'; database exists

??? Need help with that one what i did wrong ?
LordMadara is offline  
Old 07/13/2012, 02:03   #72
 
elite*gold: 0
Join Date: May 2009
Posts: 6
Received Thanks: 2
Quote:
Originally Posted by LordMadara View Post
~Linux part
You must logged as a /root user (super user)
copy the linux file into root folder
Run Terminal (Applications /System Tools/ Terminal)
tar -zxvf boi-linux.tar.gz
tar xvfz boi-linux.tar.gz
Click on Install.sh - Click Run
Now downloading 700mb :*(
Will keep posting with progress
----------------------------------------------------------------------------------------
Create Databases


ERROR 1007 (HY000) at line 1: Can't create database 'shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'empty_shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguiex'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'forbid'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguicard'; database exists

??? Need help with that one what i did wrong ?
From the looks of it, you already ran the install_db.sh file, so it should be fine.
bloodyshade is offline  
Old 07/13/2012, 02:21   #73
 
LordMadara's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 98
Received Thanks: 3
How to config ip's in Linux (for Linux) and in Windows (For Windows)
[DBINFO]

DBUSER = root

DBNAME = shenguicard

DBPASSWD = game

DBSOCKFILE = /tmp/mysql.sock



[CARDSVRD]

SERVERID = 1

SERVICEIP = LINUX

SERVICEPORT =10080

CHECKINTERVAL = 6000

PRINTSTATINTERVAL = 300

ISAUTO = 1

ISENCRYPT = 0



[MANAGERSVRD]

MANAGERSVRDNUM = 1

[MANAGERSVRD.1]

SERVERID = 1

SERVICEIP = WINDOWS
LordMadara is offline  
Old 07/13/2012, 02:33   #74
 
axelcro's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 208
Received Thanks: 88
In terminal: "yum install compat-libstdc++-33"


Ohh and u will get an error "Create-Database.sh No such file or directory".

How to fix that:

Get the old server files package.
Copy "createtab" folder from "old CardServer" folder to your NEW CardServer folder on linux.
Copy "db" folder from "old DBServer" folder to your NEW DBServer folder on linux.

Then:

Run a command in terminal: yum install dos2unix

cd /home/BOI/CardServer/createtab/

dos2unix createcardtable-beta1.sh
dos2unix create-database.sh

cd /home/BOI/DBServer/db/
dos2unix type all file names here in here in order etc: dos2unix create-database.sh (Yes i know there are many files Have fun)

Quote:
Originally Posted by LordMadara View Post
~Linux part
You must logged as a /root user (super user)
copy the linux file into root folder
Run Terminal (Applications /System Tools/ Terminal)
tar -zxvf boi-linux.tar.gz
tar xvfz boi-linux.tar.gz
Click on Install.sh - Click Run
Now downloading 700mb :*(
Will keep posting with progress
----------------------------------------------------------------------------------------
Create Databases


ERROR 1007 (HY000) at line 1: Can't create database 'shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'empty_shengui'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguiex'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'forbid'; database exists
ERROR 1007 (HY000) at line 1: Can't create database 'shenguicard'; database exists

??? Need help with that one what i did wrong ?
U followed wrong order. First u have to install "install.sh" then "install_db.sh"
axelcro is offline  
Old 07/13/2012, 03:11   #75
 
LordMadara's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 98
Received Thanks: 3
Quote:
Originally Posted by axelcro View Post
In terminal: "yum install compat-libstdc++-33"


Ohh and u will get an error "Create-Database.sh No such file or directory".

How to fix that:

Get the old server files package.
Copy "createtab" folder from "old CardServer" folder to your NEW CardServer folder on linux.
Copy "db" folder from "old DBServer" folder to your NEW DBServer folder on linux.

Then:

Run a command in terminal: yum install dos2unix

cd /home/BOI/CardServer/createtab/

dos2unix createcardtable-beta1.sh
dos2unix create-database.sh

cd /home/BOI/DBServer/db/
dos2unix type all file names here in here in order etc: dos2unix create-database.sh (Yes i know there are many files Have fun)



U followed wrong order. First u have to install "install.sh" then "install_db.sh"
is there way to fix it ?
LordMadara is offline  
Reply


Similar Threads Similar Threads
Release Noxferato 2.3+ SP NA [Combat Arms NA Fixed Files]!
08/20/2011 - Combat Arms Hacks, Bots, Cheats & Exploits - 3 Replies
RE-DOWNLOAD TODAY THE FIXED UPDATE : FOR Bypass Noxferato 2.3+SP NA! Combat Arms NA! Follow This Link: http://www.elitepvpers.com/forum/combat-arms-hack s-bots-cheats-exploits/1371949-noxferato-2-3-speci al-editon-combat-arms-na-gordon-1-5-3-a.html#post1 2348532 :cool:;)
[Beta Release]ZSZC Fixed Files For V1.693
08/19/2011 - SRO PServer Guides & Releases - 41 Replies
hi all i have unpacked the sro_client and silkroad.exe and i have fixed it. why should i use it? to bot like old way: -fireup srproxy & set ip's -fireup db bot -click change folder and select sro_client -click start game - happy botting
WTB / Buy Dekaron Server Files A7 Most Bug Fixed & Works
12/05/2010 - Dekaron Trading - 7 Replies
I want to start Dekaron Private Server. I need good mods server files. Working on A7, Many Skills, Many Monster, Many Map and system bug fix needed. Working client-server side match. Reborn NPC. Tell me your price, deal and you will get some transaction and some other way login to my server and set up your file and test your client. Server side and client side should be in English Language. I looking the best server files also complete features than the others of all offers here. I...
SERVER FILES (FIXED)
11/24/2008 - SRO Private Server - 61 Replies
Fixes ( You can use with Haros's files or SL.rar ) ?????.rar - ???????????::???-Namipan.com ???????.rar - ???????????::???-Namipan.com Client Silkroad(Ordner) version 1.57 - FileFront.com Everything works fine but when I want to connect to my server SRO screen frozen ... Look this pictures



All times are GMT +1. The time now is 21:01.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.