Starting a private server, how 2? menu

User Tag List

Results 1 to 15 of 15
  1. #1
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Starting a private server, how 2?

    Hello, i'm wanting to host a private server, how would i go by doing this?

    Is there some sort of guide to setup a server on a SQL server, also what is the best EMU SVN to use?

    Ive hosted private server before but not for WoW so i'm a total noob at this :P

    Starting a private server, how 2?
  2. #2
    turtleswin's Avatar Banned
    Reputation
    28
    Join Date
    Sep 2012
    Posts
    166
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1. Buy VPS.
    2. MySQL.com
    3. Heidisql.com
    4. Compile TrinityCore.
    5. Execute SQLs
    6. Win.

  3. #3
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a dedicated host so all i need to do is these?

    4. Compile TrinityCore.
    5. Execute SQLs

    Does PUTTY work WoW servers?

  4. #4
    turtleswin's Avatar Banned
    Reputation
    28
    Join Date
    Sep 2012
    Posts
    166
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need Heidisql and MySQL to execute SQLs, no Putty does not work.

  5. #5
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Noticed your sig .

    I'm impatient with idiots, so be careful
    In this case im an idiot but also a fast learner so please bare with me

    Is there a guide on how do;

    1. Buy VPS.
    2. MySQL.com
    3. Heidisql.com
    4. Compile TrinityCore.
    5. Execute SQLs
    6. Win.
    Thank you.

  6. #6
    turtleswin's Avatar Banned
    Reputation
    28
    Join Date
    Sep 2012
    Posts
    166
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, a dedicated host is considered a VPS. MySQL.com is a download aswell as Heidisql.com. I wrote a guide on how to compile Trinity with the SQLs. http://www.ownedcore.com/forums/worl...e-scratch.html (How to compile TrinityCore from scratch!)

  7. #7
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you.

  8. #8
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great guide but when downloading most files i realized this is to host from your own machine.

    Is there a guide to setup and host on a dedicated host i purchased from iweb.com

    These are my specs, suppose it will be okay to learn the setup, i can always add hardware if required.

    4GB RAM
    2x 160GB
    Linux Entreprise - CentOS
    Proc: 2 CELERON DUAL CORE E1400
    Last edited by RWashi; 01-04-2013 at 04:36 PM.

  9. #9
    turtleswin's Avatar Banned
    Reputation
    28
    Join Date
    Sep 2012
    Posts
    166
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My guide was for windows specifically. I'll get you a CentOS guide.

  10. #10
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thankyou, much appreciated

  11. #11
    The-Eradicator's Avatar Contributor

    Reputation
    149
    Join Date
    May 2007
    Posts
    829
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here's how to compile MaNGOS on any Linux distro, should be pretty much the same for other emulators. Make sure you have appropriate dependencies (cmake, gcc, etc)

    Code:
    mkdir mangos
    cd mangos
    git clone http://github.com/path/to/repo.git .
    
    ### If you need ScriptDev2 ###
    cd src/bindings
    mkdir scripts
    cd scripts
    git clone http://github.com/path/to/scriptdev/repo.git .
    cd ../..
    git apply src/bindings/scripts/patches/(name of patch).patch
    ### End ScriptDev2 ###
    
    mkdir build
    cd build
    cmake ../ -DPREFIX=/path/to/where/you/want/the/executables -DPCH=1 -DACE_USE_EXTERNAL=0 -DDEBUG=0 -DTBB_USE_EXTERNAL=0
    make && make install
    Once that's done, you'll want to rename your config files from .conf.dist to .conf and edit your config files, typically in the etc folder, and then run extractors for vmaps/dbcs/mmaps/maps on your computer. Upload anything the extractors generated, then create your MySQL databases (some or all of: realmd, world, characters, and SD2 depending on your emulator), and restore the appropriate .SQL files for each. Most of that is pretty easy to figure out, just follow a readme from any guide, it's OS independent so you should have no trouble.
    The most beautiful thing we can experience is the mysterious. It is the source of all true art and all science. He to whom this emotion is a stranger, who can no longer pause to wonder and stand rapt in awe, is as good as dead: his eyes are closed.
    Albert Einstein

  12. #12
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I dont understand this bit;

    Ive gone with TrinityCore

    ### If you need ScriptDev2 ###
    cd src/bindings
    mkdir scripts
    cd scripts
    git clone http://github.com/path/to/scriptdev/repo.git .
    cd ../..
    git apply src/bindings/scripts/patches/(name of patch).patch
    ### End ScriptDev2 ###
    Also;

    Once that's done, you'll want to rename your config files from .conf.dist to .conf and edit your config files, typically in the etc folder, and then run extractors for vmaps/dbcs/mmaps/maps on your computer. Upload anything the extractors generated, then create your MySQL databases (some or all of: realmd, world, characters, and SD2 depending on your emulator), and restore the appropriate .SQL files for each. Most of that is pretty easy to figure out, just follow a readme from any guide, it's OS independent so you should have no trouble.
    I can not fine a file called .conf.dist or .conf, where is this located?

    Also how do i run extractors for vmaps/dbcs/mmaps/maps using PUTTY SSH?
    Last edited by RWashi; 01-05-2013 at 09:37 AM.

  13. #13
    The-Eradicator's Avatar Contributor

    Reputation
    149
    Join Date
    May 2007
    Posts
    829
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RWashi View Post
    I get this error when doing this;
    That was an example URL, you have to use the URL of the emulator you want...
    The most beautiful thing we can experience is the mysterious. It is the source of all true art and all science. He to whom this emotion is a stranger, who can no longer pause to wonder and stand rapt in awe, is as good as dead: his eyes are closed.
    Albert Einstein

  14. #14
    turtleswin's Avatar Banned
    Reputation
    28
    Join Date
    Sep 2012
    Posts
    166
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You want TrinityCore - Don't need to compile ScriptDev on Trinity, aswell as its fast.

  15. #15
    RWashi's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you how about this bit?

    Once that's done, you'll want to rename your config files from .conf.dist to .conf and edit your config files, typically in the etc folder, and then run extractors for vmaps/dbcs/mmaps/maps on your computer. Upload anything the extractors generated, then create your MySQL databases (some or all of: realmd, world, characters, and SD2 depending on your emulator), and restore the appropriate .SQL files for each. Most of that is pretty easy to figure out, just follow a readme from any guide, it's OS independent so you should have no trouble.
    I can not fine a file called .conf.dist or .conf, where is this located?

    Also how do i run extractors for vmaps/dbcs/mmaps/maps using PUTTY SSH?
    Last edited by RWashi; 01-06-2013 at 08:30 AM.

Similar Threads

  1. [Trinity] Realm locked on own private server, how to "unlock" it?
    By kjeld in forum WoW EMU Questions & Requests
    Replies: 5
    Last Post: 07-30-2022, 05:35 PM
  2. [Private Server] How to get into Old outland with no model edit
    By talkycoder in forum World of Warcraft Exploration
    Replies: 21
    Last Post: 03-20-2009, 08:02 PM
  3. Starting a private server again
    By wiseguyxp in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 09-18-2007, 08:12 AM
  4. how do u leave a private server and go to a regular realm ?
    By remadayz in forum World of Warcraft General
    Replies: 4
    Last Post: 12-11-2006, 03:29 PM
  5. How To Set Up A Private Server Using A Lan/wireless Network!!!
    By Chaos Lord in forum World of Warcraft Guides
    Replies: 4
    Last Post: 07-22-2006, 06:26 AM
All times are GMT -5. The time now is 04:21 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search