[VideoGuide]CSVG By Mahi

Page 26 of 35 FirstFirst ... 161819202122232425262728293031323334 ... LastLast
Results 626 to 650 of 865
  1. #626
    Apprentice kulboot is offline
    MemberRank
    May 2007 Join Date
    5Posts
    Help Me !!

    VMware Error


  2. #627
    Modeler / C++ Coder Matynator is offline
    DeveloperRank
    Feb 2008 Join Date
    NetherlandsLocation
    577Posts

    Re: [VideoGuide]CSVG By Mahi

    hmm i have it 2 sometimes..
    but not always :P

  3. #628
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    Re: [VideoGuide]CSVG By Mahi

    Hello.

    I got a problem :smurf: ... i made everything like in your video maki ... but when i write yum install openssl097a db4 in putty it gives me this error :

    [root@cabal ~]# cd /
    [root@cabal /]# yum install openssl097a db4
    Could not retrieve mirrorlist http://mirrorlist.centos.org/?releas...6&repo=updates error was
    [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
    Error: Cannot retrieve repository metadata (repomd.xml) for repository: update. Please verify its path and try again

    What i can do about this? :scratch:
    Or i can just pass this? Or it is important? idk ... its the first time i run a cabal server ...

    Thank you in advance xD

  4. #629
    Member mmoobb is offline
    MemberRank
    Jul 2008 Join Date
    93Posts

    Re: [VideoGuide]CSVG By Mahi

    Ok. Sry for posting again ...

    But i readed some post from this topic and now i wanna ask ... how to setup correctly the CentOS-5 network? I think that this is my problem because the errors says : "Could not retrieve mirrorlist" from a link ... and that link need internet connection to work ... and i saw that when i use the settings for the local area network from this video i cannot access the internet -.-" only if i change them back to the default ...

    So there is any fix for this problem? or a guide?

  5. #630
    Member New3D is offline
    MemberRank
    Feb 2008 Join Date
    69Posts

    Re: [VideoGuide]CSVG By Mahi

    plyss rezolv my error :dontgetit


  6. #631
    Valued Member codename is offline
    MemberRank
    Mar 2004 Join Date
    SEALocation
    103Posts

    Re: [VideoGuide]CSVG By Mahi

    Quote Originally Posted by mmoobb View Post
    Hello.

    I got a problem :smurf: ... i made everything like in your video maki ... but when i write yum install openssl097a db4 in putty it gives me this error :

    [root@cabal ~]# cd /
    [root@cabal /]# yum install openssl097a db4
    Could not retrieve mirrorlist http://mirrorlist.centos.org/?releas...6&repo=updates error was
    [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
    Error: Cannot retrieve repository metadata (repomd.xml) for repository: update. Please verify its path and try again

    What i can do about this? :scratch:
    Or i can just pass this? Or it is important? idk ... its the first time i run a cabal server ...

    Thank you in advance xD
    google search
    First, prepare the directories to receive the repository files. Yum uses HTTP to get the repository metadata as well as the files, hence the use of Apache; thusly, we will be creating the repository in a directory that is accessible via HTTP. For my install, I used Apache 2.2 on FreeBSD 6.2, creating the repository for CentOS 5.

    In a default install of Apache 2.2, the base serving directory is: /usr/local/www/apache22/data/. As such, this is what will be used in all examples. If you have installed or configured Apache with options to use a different directory (or you wish to symlink a directory, you should already know how to adjust these instructions).

    Create the directory tree for both OS and Updates:


    mkdir -pv /usr/local/www/apache22/data/centos/5/{os,updates}

    Next we will populate populate the folders; currently this requires ~4GB. This will also likely take several hours, depending on your connection. To make this process faster, select the mirror closest to you from the CentOS Mirror List. Make sure you use one that supports RSYNC. If you wish to use a different mirror, replace rsync://centos.arcticnetwork.ca with the rsync address of the mirror you wish to use. Enter the following commands:

    /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/os/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/os/
    /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/updates/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/updates/

    While the repository is being populated we will prepare the CentOS systems to use the local repository being created. Make a copy of the existing CentOS-Base.repo by typing:

    cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bkp

    This will allow you to restore the original repo file if you decide at a later date to turn down your local repository.

    Next, edit /etc/yum.repos.d/CentOS-Base.repo and delete the contents. Copy/paste the following into the file and update the IP address information to reflect the IP of the server that will host the repository data.


    #Localized Base Repo
    [base]
    name=CentOS-$releasever - Base
    baseurl=http://172.16.x.x/centos/$releasever/os/$basearch/
    gpgcheck=1
    gpgkey=http://172.16.x.x/centos/RPM-GPG-KEY-CentOS-5

    #Localized Updates Repo
    [update]
    name=CentOS-$releasever - Updates
    baseurl=http://172.16.x.x/centos/$releasever/updates/$basearch/
    gpgcheck=1
    gpgkey=http://172.16.x.x/centos/RPM-GPG-KEY-CentOS-5

    #Default Base Repo
    #Uncomment these to enable checking of internet-based CentOS repositories.
    #[base]
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    #gpgcheck=1
    #gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5

    #Default Updates Repo
    #Uncomment these to enable checking of internet-based CentOS repositories.
    #[update]
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
    #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
    #gpgcheck=1
    #gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5


    When the repository has finished updating, you are now free to run yum update. If you have any issues, check all the above steps and details. I chose 3AM daily as a personal preference, change this to whatever suits your needs.

    As a final step, you might want to automate the update of the repository. To do this, edit root’s crontab to have the following included:


    0 3 * * * /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/updates/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/updates/
    0 3 * * * /usr/local/bin/rsync -avrt --delete rsync://centos.arcticnetwork.ca/centos/5/os/i386 --exclude=debug/ /usr/local/www/apache22/data/centos/5/os/

    OR
    Sometimes it can be handy to set up your own repository to prevent from downloading the remote repository over and over again. This tutorial shows how to create a CentOS mirror for your local network. If you have to install multiple systems in your local network then all needed packages can be downloaded over the fast LAN connection, thus saving your internet bandwidth.



    Create the Directories:
    mkdir -pv /var/www/html/centos/4/{os,updates}/i386

    Replacing 4 and i386 with your major version and architecture.
    Additionally you’ll need some deeper directories. This is the correct location to copy the CD/DVD rpms.

    Quote:

    mkdir -pv /var/www/html/centos/4/os/i386/CentOS/RPMS/

    The Base Repository
    Copy the RPMs from the CDs/DVD to /var/www/html/centos/base.

    Create the base repository headers:

    createrepo /var/www/html/centos/4/os/i386/

    The Updates Repository
    Select an rsync mirror for updates: check out this list of aviable mirrors: Centos OS Mirror list and these are identified with rsync.

    For example: rsync://ftp.belnet.be/packages/centos/

    The mirrors share a common structure for updates. Simply append /updates/<d version>/<base arch>.

    Rsync to create the updates-released repository:

    /usr/bin/rsync -avrt rsync://ftp.riken.jp/centos/4/updates/i386 –exclude=debug/ /var/www/html/centos/4/updates/

    This will create a complete update repository at /var/www/html/centos/4/updates/i386. The repodata directory will be created with all of the headers.

    You can additionally pipe this into mail to receive an email when updates are available.



    /usr/bin/rsync -avrt rsync://ftp.riken.jp/centos/4/updates/i386 –exclude=debug /var/www/html/centos/4/updates/ | /bin/mail you@example.com -s “New Repo Updates”

    Next I would advise to setup a cron job to run the rsync (above). In this manner your repository is kept updated and only new updates and headers will be downloaded to your repository.

    Yum Configuration
    Edit yum.conf:

    vi /etc/yum.repos.d/CentOS-Base.repo

    [base]
    name=CentOS-$releasever - Base
    baseurl=http://192.168.*.*/centos/$releasever/os/$basearch/
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5
    #released updates
    [update]
    name=CentOS-$releasever - Updates
    baseurl=http://192.168.*.*/centos/$releasever/updates/$basearch/
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
    #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5That’s it.
    it a guide how to make local mirror to update or install without connect internet.
    Last edited by codename; 24-07-08 at 03:45 AM. Reason: ^^

  7. #632
    Account Upgraded | Title Enabled! maggieta2 is offline
    MemberRank
    Jun 2006 Join Date
    cqwcqcwLocation
    211Posts

    Re: [VideoGuide]CSVG By Mahi

    [ENGLISH]

    Hello such, I have a problem, my client tells me ue can not connect to server when trying to connect my ip Cent 192.168.21.128 and are in Windows is 200.125.21.18 and fix all the files in all directories with these ip's not me but even connects the internal my client I have the ip of Windows and it also connects please thank them a solution that post since I have seen that I am not alone with the problem, thank you very much and forgive the inconvenience caused.

    [SPANISH]

    Hola que tal, tengo un problema, mi cliente me dice ue no se puede conectar al servidor en el momento de intentar conectar, mis ip son CentOS 192.168.21.128 y en el Windows es 200.125.21.18 ya arregle todos los archivos en todos los directorios con dichas ip's pero aun no me conecta, el internal de mi cliente le tengo el ip del windows y no conecta tampoco por favor les agradeceria que postearan alguna solucion ya que he visto que no soy el unico con el problema, muchas gracias y disculpen las molestias causadas.:scratch:



  8. #633
    Apprentice Ajwad is offline
    MemberRank
    Apr 2007 Join Date
    23Posts

    Re: [VideoGuide]CSVG By Mahi

    i got this error its not like what in the video.. can any one help??

    after i type "service cabal start" nothing is going on.. its just come on another line.. look at the screen shot


  9. #634
    Apprentice Ajwad is offline
    MemberRank
    Apr 2007 Join Date
    23Posts

    Re: [VideoGuide]CSVG By Mahi

    Ok i have solve the prob.. any one with this prob can ask me... :)

  10. #635
    Member RevLord is offline
    MemberRank
    May 2008 Join Date
    Spain/RomaniaLocation
    61Posts

    Re: [VideoGuide]CSVG By Mahi

    EDIT:
    wrong topic TAB :|

  11. #636
    Member RevLord is offline
    MemberRank
    May 2008 Join Date
    Spain/RomaniaLocation
    61Posts

    Re: [VideoGuide]CSVG By Mahi

    Quote Originally Posted by Ajwad View Post
    i got this error its not like what in the video.. can any one help??

    after i type "service cabal start" nothing is going on.. its just come on another line.. look at the screen shot

    try "ps -ax" and see if it runs even though it didn`t show.
    something like this will show :
    12865 ? S<l 0:00 GlobalDBAgent
    12907 ? S<l 0:00 DBAgent_24
    12944 ? S<l 0:00 GlobalMgrSvr
    12977 ? S<l 0:00 ChatNode_24
    13017 ? S<l 0:01 LoginSvr_01
    13049 ? S<l 0:00 CashDBAgent
    13091 ? S<l 3:52 WorldSvr_24_01

  12. #637
    Apprentice witek16 is offline
    MemberRank
    Jun 2008 Join Date
    11Posts

    Re: [VideoGuide]CSVG By Mahi

    this tutorial is for windows too?

  13. #638
    Apprentice dungnh is offline
    MemberRank
    Jan 2006 Join Date
    Viet NamLocation
    18Posts

    Re: [VideoGuide]CSVG By Mahi

    I have error when buy "105 B2F" from F.Ruina's PNC.

  14. #639
    Enthusiast Kimnazk is offline
    MemberRank
    Jun 2008 Join Date
    NorwayLocation
    40Posts

    Re: [VideoGuide]CSVG By Mahi

    Quote Originally Posted by New3D View Post
    plyss rezolv my error :dontgetit

    If you did watch the Mahi's video guide you would get 100% success. But try this and see if it works

    rm GlobalMgrSvr
    ln -s cabal_server GlobalMgrSvr

    Its because its already a GlobalMgr file there, but its not linked to cabal_server

  15. #640
    Member New3D is offline
    MemberRank
    Feb 2008 Join Date
    69Posts

    Re: [VideoGuide]CSVG By Mahi

    plyss help me start sv error :hands:


  16. #641
    Apprentice witek16 is offline
    MemberRank
    Jun 2008 Join Date
    11Posts

    Re: [VideoGuide]CSVG By Mahi

    Quote Originally Posted by HKRnew View Post
    this is a guide for Cabal Server ....using

    SQL 2000+SPK4
    VMWare
    CentOS-5
    WinSPC
    Putty
    So i can watching and install it in XP?

  17. #642
    Member RevLord is offline
    MemberRank
    May 2008 Join Date
    Spain/RomaniaLocation
    61Posts

    Re: [VideoGuide]CSVG By Mahi

    Mwahahaha , after 2 days of no sleep cause of damn closed port i managed to get my server up and runing :D



    for those with the problem "server not able to connect to database" try this ....uber quality pics ;D


    1



    2



    3



    4


  18. #643
    Apprentice Ajwad is offline
    MemberRank
    Apr 2007 Join Date
    23Posts

    Re: [VideoGuide]CSVG By Mahi

    em... i have follow all the steps on mahi video... but what is the account ID?? and where can i creat the??

  19. #644
    Member RevLord is offline
    MemberRank
    May 2008 Join Date
    Spain/RomaniaLocation
    61Posts

    Re: [VideoGuide]CSVG By Mahi

    Quote Originally Posted by Ajwad View Post
    em... i have follow all the steps on mahi video... but what is the account ID?? and where can i creat the??
    exec dbo.cabal_tool_registerAccount 'user','password' in ACCOUNT database , u will see in the vid

  20. #645
    Novice Bobthebadstar is offline
    MemberRank
    Jul 2008 Join Date
    somewhere between now and pastLocation
    3Posts

    Re: [VideoGuide]CSVG By Mahi

    I need help to edit my skill exp here.....may some one help me :

    [Multiple] All_M PC_M Free_P FreePC_P Premium_P PremiumPC_P Remark
    0 100 100 0 0 0 0

  21. #646
    Member RevLord is offline
    MemberRank
    May 2008 Join Date
    Spain/RomaniaLocation
    61Posts

    Re: [VideoGuide]CSVG By Mahi

    [QUOTE=Bobthebadstar;3771449]I need help to edit my skill exp here.....may some one help me :

    [Multiple] All_M PC_M Free_P FreePC_P Premium_P PremiumPC_P Remark
    0 100 100 0 0 0 0

  22. #647
    Novice Bobthebadstar is offline
    MemberRank
    Jul 2008 Join Date
    somewhere between now and pastLocation
    3Posts

    Re: [VideoGuide]CSVG By Mahi

    thankx for the info....but where the question was more likely where should i edit the number for my ( 30/100 ) skill exp.

  23. #648
    Account Upgraded | Title Enabled! jiahao_94 is offline
    MemberRank
    Jul 2008 Join Date
    208Posts

    Re: [VideoGuide]CSVG By Mahi

    The easiest way would be to change all the numbers to the one you want.

  24. #649
    Novice donizeteq is offline
    MemberRank
    Mar 2007 Join Date
    4Posts

    Re: [VideoGuide]CSVG By Mahi

    somebody knows as I arrange this error I more than execute it in query to this error.

    Server: Msg 515, Level 16, State 2, Procedure cabal_tool_registerAccount, Line 10
    Cannot insert the value NULL into column 'Password', table 'ACCOUNT.dbo.cabal_auth_table'; column does not allow nulls. INSERT fails.
    The statement has been terminated.
    Server: Msg 515, Level 16, State 2, Procedure cabal_tool_registerAccount, Line 16
    Cannot insert the value NULL into column 'UserNum', table 'ACCOUNT.dbo.cabal_charge_auth'; column does not allow nulls. INSERT fails.
    The statement has been terminated.

    (1 row(s) affected)

    I already executed I command md5 I was without error alone this that in you going somebody could help me. oks uses tranlate is brazil

  25. #650
    Novice firedragon is offline
    MemberRank
    May 2004 Join Date
    2Posts

    Re: [VideoGuide]CSVG By Mahi

    Hi everyone, my server works but when i want to create my character the client says "Cannot proceed with the command due unknown DB errors. Please try again." and i don't know why, if anyone know what is happening tellme the solution...!!

    thanks a lot!!!

    heres the image:




Advertisement