Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate

Autor Topic: How to set up 2 MuEmu S6 server clusters? can someone guide, thanks!  (Visto 1455 veces)

0 Miembros and 1 Guest are viewing this topic.

Offline onlinezajzaj Posteado: June 10, 2019, 07:18:36 PM

  • MAESTRO

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 700
  • Gracias recibida: 18233
  • vn
How to set up 2 MuEmu S6 server clusters? can someone guide, thanks!


Chuyên cung cấp Server MU -  Dạy dev MU online - Giá rẻ.
TEACHER MU ONLINE VIỆT NAM / TRAO ĐỔI KINH NGHIỆM MU ONLINE TOP 1 tại VIỆT NAM
WhatApps/Zalo : +886983042918 - ONLINEZAJZAJ : https://zalo.me/caongochavt
https://www.paypal.me/teacherzajzaj

Gracias:


Offline kayito #1 Posteado: June 10, 2019, 07:50:21 PM | Modificado: June 10, 2019, 07:53:02 PM by kayito

  • MAESTRO

  • C++ Coder
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 1.035
  • Gracias recibida: 15037
  • ar
1) Create a folder inside your MuServer folder.

2) If you are going to use the same database for both servers, just copy and paste inside the folder you created these folders: Data and GameServer
If you are going to use differents databases for each server, copy and paste inside the folder these folders: Data, JoinServer, DataServer and GameServer

2.5) If you are going to use differents databases, inside the JoinServer and DataServer folders you copied put your new database name and make sure that you are using different ports than the main server and change that ports in MuServer/'NewFolder'/GameServer/Common otherwise it won't work. The ConnectServer Port has to be the same in both servers.

3) Config the ServerList inside ConnectServer and add another server. The server code must be over 20. F.E. i have it like this

Code: [Select]
0 "GameServer" "YOURIP" PORT1 "SHOW"
19 "GameserverCS" "YOURIP" PORT2 "HIDE"
21 "ServerPVP" "YOURIP" PORT3 "SHOW"

PS: if you add a servercode over 20, when you open the client you will see 2 different servers, but if you add a servercode under 20, you will see just one server with 2 subservers in it

4) in the GameServer folder you copied inside your new folder, look for common and change de servercode to the code you used in ConnectServer

21 "ServerPVP" "YOURIP" PORT3 "SHOW" >>> The red number

5) in both MapServerInfo ( MuServer/Data and MuServer/'NewFolder'/Data ) you have to add the new server info
i have it like this:

Code: [Select]
0
//ServerCode   MapServerGroup   InitSetVal   IpAddress         Port
0        0         1      SYOURIP       PORT1
19        0         0      SYOURIP       PORT2
21        1         1      SYOURIP       PORT3
end

1
//ServerCode   NotMoveOption   NextMap   NextServerCode
0        0        30        19
0        0        31        19
0        0        34        19
0        0        41        19
0        0        42        19
0        0        79        19
19        1        30        -1
19        1        31        -1
19        1        34        -1
19        1        41        -1
19        1        42        -1
19        1        79        -1
21        1        30        -1
21        1        31        -1
21        1        34        -1
21        1        41        -1
21        1        42        -1
21        1        79        -1
end

And i think that will be all. If you have questions, i can help you with everything i can haha
Good luck.

Gracias:


Offline onlinezajzaj #2 Posteado: June 10, 2019, 07:59:23 PM

  • MAESTRO

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 700
  • Gracias recibida: 18233
  • vn
Chuyên cung cấp Server MU -  Dạy dev MU online - Giá rẻ.
TEACHER MU ONLINE VIỆT NAM / TRAO ĐỔI KINH NGHIỆM MU ONLINE TOP 1 tại VIỆT NAM
WhatApps/Zalo : +886983042918 - ONLINEZAJZAJ : https://zalo.me/caongochavt
https://www.paypal.me/teacherzajzaj

Offline onlinezajzaj #3 Posteado: June 10, 2019, 08:34:08 PM

  • MAESTRO

  • Colaborador
  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 700
  • Gracias recibida: 18233
  • vn
1) Create a folder inside your MuServer folder.

2) If you are going to use the same database for both servers, just copy and paste inside the folder you created these folders: Data and GameServer
If you are going to use differents databases for each server, copy and paste inside the folder these folders: Data, JoinServer, DataServer and GameServer

2.5) If you are going to use differents databases, inside the JoinServer and DataServer folders you copied put your new database name and make sure that you are using different ports than the main server and change that ports in MuServer/'NewFolder'/GameServer/Common otherwise it won't work. The ConnectServer Port has to be the same in both servers.

3) Config the ServerList inside ConnectServer and add another server. The server code must be over 20. F.E. i have it like this

Code: [Select]
0 "GameServer" "YOURIP" PORT1 "SHOW"
19 "GameserverCS" "YOURIP" PORT2 "HIDE"
21 "ServerPVP" "YOURIP" PORT3 "SHOW"

PS: if you add a servercode over 20, when you open the client you will see 2 different servers, but if you add a servercode under 20, you will see just one server with 2 subservers in it

4) in the GameServer folder you copied inside your new folder, look for common and change de servercode to the code you used in ConnectServer

21 "ServerPVP" "YOURIP" PORT3 "SHOW" >>> The red number

5) in both MapServerInfo ( MuServer/Data and MuServer/'NewFolder'/Data ) you have to add the new server info
i have it like this:

Code: [Select]
0
//ServerCode   MapServerGroup   InitSetVal   IpAddress         Port
0        0         1      SYOURIP       PORT1
19        0         0      SYOURIP       PORT2
21        1         1      SYOURIP       PORT3
end

1
//ServerCode   NotMoveOption   NextMap   NextServerCode
0        0        30        19
0        0        31        19
0        0        34        19
0        0        41        19
0        0        42        19
0        0        79        19
19        1        30        -1
19        1        31        -1
19        1        34        -1
19        1        41        -1
19        1        42        -1
19        1        79        -1
21        1        30        -1
21        1        31        -1
21        1        34        -1
21        1        41        -1
21        1        42        -1
21        1        79        -1
end

And i think that will be all. If you have questions, i can help you with everything i can haha
Good luck.


Thanks for your help, Good man!

Wish you a good day and always succeed at work!

Chuyên cung cấp Server MU -  Dạy dev MU online - Giá rẻ.
TEACHER MU ONLINE VIỆT NAM / TRAO ĐỔI KINH NGHIỆM MU ONLINE TOP 1 tại VIỆT NAM
WhatApps/Zalo : +886983042918 - ONLINEZAJZAJ : https://zalo.me/caongochavt
https://www.paypal.me/teacherzajzaj

Gracias:


Offline KhongGianOL #4 Posteado: June 09, 2023, 08:59:31 AM

  • 0 puntos por ventas
  • *
  • Rank: Puto amo
  • Posts: 214
  • Gracias recibida: 571
  • vn
Be kind, for everyone you meet is fighting their hard battle

Solo usuarios registrados pueden comentar y agradecer, Logueate o Registrate


 

Related Topics

  Subject / Started by Replies Last post
1 Replies
896 Views
Last post August 01, 2023, 10:03:10 AM
by wellwisher22
6 Replies
1547 Views
Last post May 14, 2020, 02:02:35 AM
by BooM
1 Replies
682 Views
Last post September 18, 2020, 12:03:21 AM
by ZabiinoOo
4 Replies
741 Views
Last post September 30, 2020, 05:37:02 PM
by ZabiinoOo
1 Replies
365 Views
Last post July 19, 2021, 11:06:42 AM
by Ifreat