[DiscordArchive] ah understood. to move to mysql would I need to migrate the database as well?
[DiscordArchive] ah understood. to move to mysql would I need to migrate the database as well?
Archived author: Coffee • Posted: 2025-02-13T13:11:55.901000+00:00
Original source
does really help when a repo from github gets updated and then it breaks and then recompiling it doesnt fix
Archived author: Coffee • Posted: 2025-02-13T13:11:57.281000+00:00
Original source
either way
Archived author: Coffee • Posted: 2025-02-13T13:12:02.031000+00:00
Original source
i give up
Archived author: metallinos • Posted: 2025-02-13T13:12:18.822000+00:00
Original source
But this issue really doesn't seem related to recompiling
Archived author: metallinos • Posted: 2025-02-13T13:12:36.684000+00:00
Original source
It's like you're trying to start your car so you can drive from A to B but you lost your keys and you're blaming the car
Archived author: aloehart • Posted: 2025-02-13T15:00:35.625000+00:00
Original source
The authentication its asking for is for your system, not azerothcore. The issue is wholly unrelated to the core and you'd likely hit the same issue trying to start any other service with this method
Archived author: aloehart • Posted: 2025-02-13T16:04:03.980000+00:00
Original source
On this note, I loaded up wireshark and saw that I was getting a full 400 error in the packet. I'm new to nginx and the documentation is a bit dense but apparently you can forward 3724 traffic under the http directive, but the header of the 8085 packets gets rejected.
Switching it to a stream and just directly passing the ports through the proxy worked fine
Archived author: aloehart • Posted: 2025-02-13T16:08:56.732000+00:00
Original source
``` user www-data;
worker_processes auto;
pid /run/nginx.pid;
#add debug to the end of this to see info in the event of malformed packets.
error_log /var/log/nginx/error.log;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
}
stream {
include /etc/nginx/conf.d/*.conf;
} ```
Archived author: aloehart • Posted: 2025-02-13T16:12:50.782000+00:00
Original source
If anyone wants the nginx config, there's the main config. here's the file in config.d
```server {
listen 8085;
listen [::]:8085;
proxy_pass xxx.xxx.xxx.xxx:8085;
}
server {
listen 3724;
listen [::]:3724;
proxy_pass xxx.xxx.xxx.xxx:3724;
}```
Swap the x's for your ip of course
Archived author: aloehart • Posted: 2025-02-13T16:14:32.958000+00:00
Original source
Also for funsies, I'm building azerothcore in a nanode since they gave me free money to play with for a couple months. Will report back with how it functions