Forums WoW Modding Support Archives Azerothcore Discord Archives [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?

[DiscordArchive] ah understood. to move to mysql would I need to migrate the database as well?

Pages (3): Previous 1 2 3
rektbyfaith
Administrator
0
02-13-2025, 01:11 PM
#21
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
rektbyfaith
02-13-2025, 01:11 PM #21

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

rektbyfaith
Administrator
0
02-13-2025, 01:11 PM
#22
Archived author: Coffee • Posted: 2025-02-13T13:11:57.281000+00:00
Original source

either way
rektbyfaith
02-13-2025, 01:11 PM #22

Archived author: Coffee • Posted: 2025-02-13T13:11:57.281000+00:00
Original source

either way

rektbyfaith
Administrator
0
02-13-2025, 01:12 PM
#23
Archived author: Coffee • Posted: 2025-02-13T13:12:02.031000+00:00
Original source

i give up
rektbyfaith
02-13-2025, 01:12 PM #23

Archived author: Coffee • Posted: 2025-02-13T13:12:02.031000+00:00
Original source

i give up

rektbyfaith
Administrator
0
02-13-2025, 01:12 PM
#24
Archived author: metallinos • Posted: 2025-02-13T13:12:18.822000+00:00
Original source

But this issue really doesn't seem related to recompiling
rektbyfaith
02-13-2025, 01:12 PM #24

Archived author: metallinos • Posted: 2025-02-13T13:12:18.822000+00:00
Original source

But this issue really doesn't seem related to recompiling

rektbyfaith
Administrator
0
02-13-2025, 01:12 PM
#25
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
rektbyfaith
02-13-2025, 01:12 PM #25

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

rektbyfaith
Administrator
0
02-13-2025, 03:00 PM
#26
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
rektbyfaith
02-13-2025, 03:00 PM #26

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

rektbyfaith
Administrator
0
02-13-2025, 04:04 PM
#27
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
rektbyfaith
02-13-2025, 04:04 PM #27

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

rektbyfaith
Administrator
0
02-13-2025, 04:08 PM
#28
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;
} ```
rektbyfaith
02-13-2025, 04:08 PM #28

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;
} ```

rektbyfaith
Administrator
0
02-13-2025, 04:12 PM
#29
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
rektbyfaith
02-13-2025, 04:12 PM #29

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

rektbyfaith
Administrator
0
02-13-2025, 04:14 PM
#30
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
rektbyfaith
02-13-2025, 04:14 PM #30

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

Pages (3): Previous 1 2 3
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)