How to run "service cabal start" on ubuntu?

Newbie Spellweaver
Joined
Sep 4, 2007
Messages
25
Reaction score
0
Anyone knows how to run "service cabal start" on ubuntu? or command how to start cabal server?
If someone knows how to make cabal server on ubuntu share your guide pls...
I have my working cabal server on Centos, i just only want to try it on ubuntu.. help me pls..:frusty:
 
Last edited by a moderator:
So is there a solution to ubuntu "service cabal start" ?

okay I managed to get something working but something else broke ...
copy the files from etc/rc.d/init.d to etc/init.d

Code:
cp /etc/rc.d/init.d/cabal /etc/init.d/cabal
cp /etc/rc.d/init.d/cabal_server /etc/init.d/cabal_server
cp /etc/rc.d/init.d/functions /etc/init.d/functions

now the command "service cabal start" should work, if it doesn't do this;
Code:
sudo gedit /etc/cabal/server_list
#change

Code:
GlobalDBAgent
DBAgent_24
GlobalMgrSvr
ChatNode_24
LoginSvr_01
CashDBAgent
WorldSvr_24_01
#to
Code:
usr/bin/GlobalDBAgent
usr/bin/DBAgent_24
usr/bin/GlobalMgrSvr
usr/bin/ChatNode_24
usr/bin/LoginSvr_01
usr/bin/CashDBAgent
usr/bin/WorldSvr_24_01
 
Last edited by a moderator:
Upvote 0
Back