Perfect tutorial, congratulations my friend. I'm doing it step by step, but when I get to that part of MySQL, where you put the command start bin\mysqld --console, it threatens to open the console but it closes very quickly, I can't even print it to find out what the error is. Do you know what this could be?
@@realjoecast I did the test here, it tries to open another window and closes quickly, even without the --console. The worst part is that I have no way of knowing if it is ok and if there is an error message, because it is too fast.
@@NPCDAVIDA-x4w i got myself confused, i deleted my other comment. leave the --console and take out the start portion. start is what opens it into another window not the --console.
@@realjoecast Good morning I'm going to do the test here, I'm really enjoying venturing into this installation, I'm following all the steps. I managed to finish a server once but it was a repack of practically everything already pre-installed, this one is being much more difficult but I think I'm fine, if not you don't mind I can contact you by email and show you this screen, this part that I'm stuck?
Hey wanted to run a private server on my machine, that is completely local so no one can join and is just me, as I like to play singleplayer. I was just wondering if that could get me banned from official blizzard servers permanently.
Any idea why I am getting this? LNK1104 cannot open file 'libboost_filesystem-vc143-mt-x64-1_85.lib' I have the env. path setup to point here but getting this build error? Thanks in advance and great video!
in the description there is a link to the text document on zerobin. zero bin is a more privacy aware version of paste bin. in that text document you will find a list of all the dependencies make sure you got them all. sounds like you are missing the boost dependency EDIT: there are links to each of them in the document as well.
I think during this video I was running them on vmware esxi. I since scrapped esxi after broadcom started making changes to their licensing. I am now using Microsoft Hyper-V for more permanent things and vmware workstation for quick one offs. General Server specs: dual 8c/16t xeon, 284GB ram, 22 1tb SAS with 18tb usable and three smaller solid states for machines with higher work loads.
All you need to do is put the modules you want in the azerothcore Modules directory and then recompile. from there you configure the modules like say solocraft the way you want it. Add any vendors, mobs, etc.. you want then export them zip/rar them up and distribute :-) here is a video on adding modules ruclips.net/video/HOFWX3AAdm4/видео.html you can check other videos on my channel for other fun stuff like items, vendors, etc. mostly trinity core but most TC stuff I find works in AZC. I'm getting the itch to do WoTLK again so might be expanding my WoW video collection.
off the top of my head... there is a directory called modules. put your mod in there and then recompile the whole thing and it should add the module to the server. some mods have additional requirements like database tables and such you may need to do manually. thats just off the top of my head.
I have other videos showing how to put a database and servers on different systems. In those videos it explains how to create users to connect to a database on a different machine. You need a seperate account 'user'@'%' where the % means that it can connect from anywhere rather than the 'user'@'localhost' which means you can only connect to the database from that local machine. If you just need to get the IP address of the ubuntu server, at the command prompt type 'ip a' you will see it listed in there.
@@realjoecast yeah I tried but to put the enp03s IP but i get errot connecting to the Heidi SQL using root/password as credentials, may be its that im doing it throw a vpn my pc and using docker om the vm ?
@@SrPancetouseing the root user? yeah that won't work. On the server side run the mysql console then: CREATE USER 'heidi'@'%' identified by joecastrocks'; where joecastrocks is the passwrd. then grant all privileges on *.* to 'heidi'@'%' with grant option; lastly flush privileges; then on the heidi side point it to that IP using the user heidi and passwd joecastrocks (or whatever)
I launch my server, then the client but it tries to connect to battlenet online. I have had this for years and it's never done this. I block it with the firewall and the login screen works fine. But it used to not try to connect to anything by my offline server. Any ideas?
client updated some how? Check your realmlist just to be sure thats the ip/hostname of the server you want to connect too. if not try getting the client again. Warmane has one under their download section. get that and change the realmlist to the server you want.
its been over a year so something may have changed from then to now. When I was running errors before it was because I missed a dependency. If you didn't see it, in the description there is a link to zerobin that has all the steps including the depdancies.... but again.. something might have changed from then to now that might make this video inaccurate.
Thanks for the helpful guide! :)
Great work, Thanks
Perfect tutorial, congratulations my friend.
I'm doing it step by step, but when I get to that part of MySQL, where you put the command start bin\mysqld --console, it threatens to open the console but it closes very quickly, I can't even print it to find out what the error is. Do you know what this could be?
@@realjoecast I did the test here, it tries to open another window and closes quickly, even without the --console.
The worst part is that I have no way of knowing if it is ok and if there is an error message, because it is too fast.
@@NPCDAVIDA-x4w i got myself confused, i deleted my other comment. leave the --console and take out the start portion. start is what opens it into another window not the --console.
@@realjoecast Good morning
I'm going to do the test here, I'm really enjoying venturing into this installation, I'm following all the steps. I managed to finish a server once but it was a repack of practically everything already pre-installed, this one is being much more difficult but I think I'm fine, if not you don't mind I can contact you by email and show you this screen, this part that I'm stuck?
Amazing guide.
Hey wanted to run a private server on my machine, that is completely local so no one can join and is just me, as I like to play singleplayer. I was just wondering if that could get me banned from official blizzard servers permanently.
I've never heard of it being done. doesn't mean it hasn't but i never seen it.
Gj
Any idea why I am getting this? LNK1104 cannot open file 'libboost_filesystem-vc143-mt-x64-1_85.lib' I have the env. path setup to point here but getting this build error? Thanks in advance and great video!
in the description there is a link to the text document on zerobin. zero bin is a more privacy aware version of paste bin. in that text document you will find a list of all the dependencies make sure you got them all. sounds like you are missing the boost dependency EDIT: there are links to each of them in the document as well.
@@realjoecast I figured it out...was an issue in that I didn't copy .dll files over from OpenSSL and MySQL to the binary main folder.
I'm interested in how you run your windows servers? Are they running in Virtualbox on a debian nas (if that's even possible)? Or something else?
I think during this video I was running them on vmware esxi. I since scrapped esxi after broadcom started making changes to their licensing. I am now using Microsoft Hyper-V for more permanent things and vmware workstation for quick one offs.
General Server specs: dual 8c/16t xeon, 284GB ram, 22 1tb SAS with 18tb usable and three smaller solid states for machines with higher work loads.
Thank you! Please make a video about creating a repack and updating the server!
All you need to do is put the modules you want in the azerothcore Modules directory and then recompile. from there you configure the modules like say solocraft the way you want it. Add any vendors, mobs, etc.. you want then export them zip/rar them up and distribute :-) here is a video on adding modules ruclips.net/video/HOFWX3AAdm4/видео.html you can check other videos on my channel for other fun stuff like items, vendors, etc. mostly trinity core but most TC stuff I find works in AZC.
I'm getting the itch to do WoTLK again so might be expanding my WoW video collection.
so I got everything running, but the Mod Playerbots, can you help/make a video on installing that and other mods? (all done on windows =D)
off the top of my head... there is a directory called modules. put your mod in there and then recompile the whole thing and it should add the module to the server. some mods have additional requirements like database tables and such you may need to do manually.
thats just off the top of my head.
Do you know how I can connect to the database of the server that is on a Ubuntu VM and Heidi SQL on another VM ? I'm struggling to get the ip
I have other videos showing how to put a database and servers on different systems. In those videos it explains how to create users to connect to a database on a different machine. You need a seperate account 'user'@'%' where the % means that it can connect from anywhere rather than the 'user'@'localhost' which means you can only connect to the database from that local machine.
If you just need to get the IP address of the ubuntu server, at the command prompt type 'ip a' you will see it listed in there.
@@realjoecast yeah I tried but to put the enp03s IP but i get errot connecting to the Heidi SQL using root/password as credentials, may be its that im doing it throw a vpn my pc and using docker om the vm ?
@@SrPancetouseing the root user? yeah that won't work. On the server side run the mysql console then:
CREATE USER 'heidi'@'%' identified by joecastrocks';
where joecastrocks is the passwrd.
then
grant all privileges on *.* to 'heidi'@'%' with grant option;
lastly
flush privileges;
then on the heidi side point it to that IP using the user heidi and passwd joecastrocks (or whatever)
@@realjoecast I will try this weekend can u link me the video that you mentioned above ?
@@SrPancetoits in my world of warcraft playlist. there is the first one in that series. ruclips.net/video/cRlXNhygpp8/видео.htmlsi=VIchL88btJIR4T40
I launch my server, then the client but it tries to connect to battlenet online. I have had this for years and it's never done this. I block it with the firewall and the login screen works fine. But it used to not try to connect to anything by my offline server. Any ideas?
client updated some how? Check your realmlist just to be sure thats the ip/hostname of the server you want to connect too. if not try getting the client again. Warmane has one under their download section. get that and change the realmlist to the server you want.
errors at first cmake wont complete
its been over a year so something may have changed from then to now. When I was running errors before it was because I missed a dependency. If you didn't see it, in the description there is a link to zerobin that has all the steps including the depdancies.... but again.. something might have changed from then to now that might make this video inaccurate.