Re: Perfect world database?!
If I'm not mistaken it is PWServer/gamedbd/dbhomewdb/dbdata. Not sure if there is anything or anywhere else though.
Re: Perfect world database?!
/PWServer/gamedbd (char datas)
/PWServer/uniquenamed (char names)
How to save it safety? Easy! Just compress those two folders and save them on your computer or anywhere else!
How to compress? Easy! Use this command in console:
Code:
tar zcf gamedbd_bak.tar.gz /PWServer/gamedbd
tar zcf uniquenamed_bak.tar.gz /PWServer/uniquenamed
Re: Perfect world database?!
Just curious, is there a program that can open the files inside those folders to read the data?Basically what type of files are they?
Re: Perfect world database?!
It's a custom oracle berkeley db. Take a look here http://forum.ragezone.com/f452/berke...editor-737835/
It's a little tricky to open the data files.
Re: Perfect world database?!
Re: Perfect world database?!
Thank you all:)!!
---------- Post added at 10:18 AM ---------- Previous post was at 10:12 AM ----------
And Why these folders gamedbd/dbhomewdb/dblogs and /dbdata
and uniquenamed/uname/dbdata and /dblogs are empty?(with winscp)
Re: Perfect world database?!
Edit gamesys.conf from gamedbd and uniquenamed to check the path where the data are stored...
Re: Perfect world database?!
My gamesys.conf in the uniquenamed folder..
[uniqueNameServer]
type = tcp
port = 29401
address = 192.168.1.32
so_sndbuf = 16384
so_rcvbuf = 16384
ibuffermax = 1048576
obuffermax = 1048576
tcp_nodelay = 0
listen_backlog = 10
accumulate = 16777216
isec = 2
iseckey = baxitf91jvrQarnjwbyvlcdxqdvuqp
osec = 2
oseckey = baxiyEwt4fuqrysyoylfy7Fxbmhobo
[LogclientClient]
type = udp
port = 11100
address = 192.168.1.32
so_sndbuf = 16384
so_rcvbuf = 16384
ibuffermax = 16384
obuffermax = 1048576
accumulate = 1048576
[LogclientTcpClient]
type = tcp
port = 11101
address = 192.168.1.32
so_sndbuf = 16384
so_rcvbuf = 16384
ibuffermax = 16384
obuffermax = 1048576
accumulate = 1048576
[storage]
homedir = /export/uname
datadir = dbdata
logdir = dblogs
backupdir = /export/unamebackup
cachesize = 16777216
errpfx = Storage
checkpoint_interval = 60
backup_lockfile = /tmp/.lockuniquenamed
;compress = 1
[storagewdb]
homedir = /export/uname
datadir = dbdata
logdir = dblogs
backupdir = /export/unamebackup
checkpoint_interval = 60
times_incbackup = 24
tables = config,uidrole,unamefaction,unamerole
cache_high_default = 16384
cache_low_default = 10000
;base_cache_high = 4096
;base_cache_low = 1024
;status_cache_high = 4096
;status_cache_low = 1024
;equipment_cache_high = 4096
;equipment_cache_low = 1024
;inventory_cache_high = 4096
;inventory_cache_low = 1024
backup_lockfile = /tmp/.lockuniquenamed
quit_lockfile = /tmp/.quituniquenamed
[ThreadPool]
threads = (0,1)(1,5)(100,1)(101,1)
max_queuesize = 1048576
prior_strict = 1
i think all is correct? or not? But my uniquenamed/uname/dbdata and dblogs is empty. Why?
Re: Perfect world database?!
Well as i can see in your gamesys.conf, your data are stored in "homedir = /export/uname" and not in "uniquenamed/uname/".
So in your FTP browser, go to /export/uname and you will find your datas.
Same thing for the gamedbd I guess.
Re: Perfect world database?!
no:( I'm not found the export. Can u show me your uniquenamed/gamesys.conf please?
Re: Perfect world database?!
What release do you use?? :blink:
Re: Perfect world database?!
Beastie's Files
But i maked a folder with export name, and it's ok:)
Thanks all