Logo Khaganat

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
fr:serveur_tour [2018/03/16 22:12] – [Les services] /* salut, de toute façon personne ne lit ça. Ah on me dit dans mon oreillete que si, en fait. */ merlin8282fr:serveur_tour [2021/12/03 18:19] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
-====== Serveur Khanat - Tour d'horizon ======+====== Serveur OpenNeL Khanat - Tour d'horizon ======
  
-Note préalable : notre serveur de jeu utilisant « RyzomCore », toute la documentation qui s'y rapporte s'applique également à notre serveur de jeu : www.ryzomcore.org.+Note préalable : notre serveur de jeu utilisant RyzomCore / OpenNeL, toute la documentation qui s'y rapporte s'applique également à notre serveur de jeu : www.ryzomcore.org.
 \\ La page d'index alphabétique de leur wiki permet de trouver bon nombre d'informations utiles, de tutoriels (en anglais exclusivement par contre) : https://ryzomcore.atlassian.net/wiki/display/RC/Reference+Guides \\ La page d'index alphabétique de leur wiki permet de trouver bon nombre d'informations utiles, de tutoriels (en anglais exclusivement par contre) : https://ryzomcore.atlassian.net/wiki/display/RC/Reference+Guides
  
Ligne 82: Ligne 82:
   * **RBS** (//Reference Builder Service//) (non utilisé)    * **RBS** (//Reference Builder Service//) (non utilisé) 
  
 +===== Liste des ports =====
 +
 +  * admin_service.cfg
 +    * WebPort = 49995
 +  * login_service.cfg
 +    * WSPort = 49999
 +    * WebPort = 49998
 +    * ClientsPort = 49997
 +  * admin_executor_service.cfg
 +    * ASPort="46701"
 +  * admin_service.cfg
 +    * ASWebPort="46700"
 +    * ASPort="46701"
 +  * ai_service.cfg
 +    * SUPort = 50505
 +  * backup_service.cfg
 +    * WebPort = 49970
 +    * ListeningPort = 49990
 +    * WebPort = 49898
 +    * L3BSPort = "49950"
 +  * common.cfg
 +    * AESPort="46702"
 +  * dynamic_scenario_service.cfg
 +    * ASWebPort="46700"
 +    * ASPort="46701"
 +    * AESPort="46702"
 +    * SUPort = 50505
 +    * SUGlobalPort = 50503
 +    * L3BSPort = "49950"
 +    * L3SlaveBSPort = "49951"
 +    * L3MasterLGSPort = 49992
 +    * LGSBSPort = 49994
 +    * L3LGSBSPort = 49995
 +    * BasePort = 51400
 +  * entities_game_service.cfg
 +    * AESPort="46702"
 +    * SUPort = 50505
 +    * SUGlobalPort = 50503
 +    * L3MasterLGSPort = 41292
 +    * L3SlaveLGSPort = 49993
 +  * frontend_service.cfg
 +    * FSUDPPort = 47851
 +  * input_output_service.cfg
 +    * AESPort="46702"
 +    * SUPort = 50505
 +    * SUGlobalPort = 50503
 +    * L3MasterLGSPort = 41292
 +    * L3SlaveLGSPort = 49993
 +  * logger_service.cfg
 +    * LGSL3Port = 41292
 +  * naming_service.cfg
 +    * BasePort = 51000
 +  * session_browser_server.cfg
 +    * SBSPort = 48851
 +  * shard_unifier_service.cfg
 +    * SUGlobalPort = 50503
 +  * welcome_service.cfg
 +    * SUPort = 50505
 +
 +<hidden>jeanluc@tomate:~/ryzomcore$ rgrep Port code/*/*/*.cfg
 +code/nelns/admin_service/admin_service.cfg:WebPort = 49995;
 +code/nelns/login_service/login_service.cfg:WSPort = 49999; // port for the welcome service connection (default is 49999)
 +code/nelns/login_service/login_service.cfg:WebPort = 49998; // port for the web server (default 49998)
 +code/nelns/login_service/login_service.cfg:ClientsPort = 49997; // port for the clients connection (default 49997)
 +code/ryzom/server/admin_executor_service.cfg:ASPort="46701";
 +code/ryzom/server/admin_executor_service.cfg: "gw_aes.transportCmd aes_l3c(connect addr="+AESHost+":"+AESPort+")",
 +code/ryzom/server/admin_executor_service.cfg: "asc_gw.transportCmd l3c(connect addr="+ASHost+":"+ASPort+")",
 +code/ryzom/server/admin_executor_service.cfg: "aes_gw.transportCmd l3s(open port="+AESPort+")",
 +code/ryzom/server/admin_service.cfg:ASWebPort="46700";
 +code/ryzom/server/admin_service.cfg:ASPort="46701";
 +code/ryzom/server/admin_service_default.cfg://ASWebPort="46700";
 +code/ryzom/server/admin_service_default.cfg://ASPort="46701";
 +code/ryzom/server/admin_service_default.cfg: "moduleManager.createModule AdminService as webPort="+ASWebPort,
 +code/ryzom/server/admin_service_default.cfg: "as_gw.transportCmd l3s(open port="+ASPort+")",
 +code/ryzom/server/ai_service.cfg:SUPort = 50505;
 +code/ryzom/server/ai_service.cfg:SUAddress = SUHost+":"+SUPort;
 +code/ryzom/server/backup_service.cfg:WebPort = 49970;
 +code/ryzom/server/backup_service_default.cfg:ListeningPort = 49990;
 +code/ryzom/server/backup_service_default.cfg:WebPort = 49898;
 +code/ryzom/server/backup_service_default.cfg:// Port for the Layer 3 interface of the backup service
 +code/ryzom/server/backup_service_default.cfg:L3ListeningPort = 49950;
 +code/ryzom/server/backup_service_interface.cfg:L3BSPort = "49950";
 +code/ryzom/server/common.cfg:AESPort="46702";
 +code/ryzom/server/common.cfg: "gw_aes.transportCmd aes_l3c(connect addr="+AESHost+":"+AESPort+")",
 +code/ryzom/server/dynamic_scenario_service.cfg:ASWebPort="46700";
 +code/ryzom/server/dynamic_scenario_service.cfg:ASPort="46701";
 +code/ryzom/server/dynamic_scenario_service.cfg:AESPort="46702";
 +code/ryzom/server/dynamic_scenario_service.cfg:SUPort = 50505;
 +code/ryzom/server/dynamic_scenario_service.cfg:SUGlobalPort = 50503;
 +code/ryzom/server/dynamic_scenario_service.cfg:L3BSPort = "49950";
 +code/ryzom/server/dynamic_scenario_service.cfg:L3SlaveBSPort = "49951";
 +code/ryzom/server/dynamic_scenario_service.cfg:L3MasterLGSPort = 49992;
 +code/ryzom/server/dynamic_scenario_service.cfg:LGSBSPort = 49994;
 +code/ryzom/server/dynamic_scenario_service.cfg:L3LGSBSPort = 49995;
 +code/ryzom/server/dynamic_scenario_service.cfg:"gw_aes.transportCmd aes_l3c(connect addr=localhost:"+AESPort+")",
 +code/ryzom/server/dynamic_scenario_service.cfg:SUAddress = SUHost+":"+SUPort;
 +code/ryzom/server/dynamic_scenario_service.cfg:BasePort = 51400;
 +code/ryzom/server/entities_game_service.cfg:AESPort="46702";
 +code/ryzom/server/entities_game_service.cfg:SUPort = 50505;
 +code/ryzom/server/entities_game_service.cfg:SUGlobalPort = 50503;
 +code/ryzom/server/entities_game_service.cfg:L3MasterLGSPort = 41292;
 +code/ryzom/server/entities_game_service.cfg:L3SlaveLGSPort = 49993;
 +code/ryzom/server/entities_game_service.cfg:SUAddress = SUHost+":"+SUPort;
 +code/ryzom/server/entities_game_service_default.cfg: "glob_gw.transportCmd l3c(connect addr="+SUHost+":"+SUGlobalPort+")",
 +code/ryzom/server/entities_game_service_default.cfg: "lgs_gw.transportCmd masterL3c(connect addr="+MasterLGSHost+":"+L3MasterLGSPort+")",
 +code/ryzom/server/entities_game_service_default.cfg: "lgs_gw.transportCmd slaveL3c(connect addr="+SlaveLGSHost+":"+L3SlaveLGSPort+")",
 +code/ryzom/server/frontend_service.cfg:FSUDPPort = 47851;
 +code/ryzom/server/frontend_service_default.cfg://FrontendPort = 47851;
 +code/ryzom/server/frontend_service_default.cfg:ListenAddress = FSListenHost+":"+FSUDPPort;
 +code/ryzom/server/input_output_service.cfg:AESPort="46702";
 +code/ryzom/server/input_output_service.cfg:SUPort = 50505;
 +code/ryzom/server/input_output_service.cfg:SUGlobalPort = 50503;
 +code/ryzom/server/input_output_service.cfg:L3MasterLGSPort = 41292;
 +code/ryzom/server/input_output_service.cfg:L3SlaveLGSPort = 49993;
 +code/ryzom/server/input_output_service.cfg:SUAddress = SUHost+":"+SUPort;
 +code/ryzom/server/input_output_service_default.cfg: "glob_gw.transportCmd l3c(connect addr="+SUHost+":"+SUGlobalPort+")",
 +code/ryzom/server/input_output_service_default.cfg: "lgs_gw.transportCmd masterL3c(connect addr="+MasterLGSHost+":"+L3MasterLGSPort+")",
 +code/ryzom/server/input_output_service_default.cfg: "lgs_gw.transportCmd slaveL3c(connect addr="+SlaveLGSHost+":"+L3SlaveLGSPort+")",
 +code/ryzom/server/logger_service.cfg:LGSL3Port = 41292;
 +code/ryzom/server/logger_service.cfg:"lgs_gw.transportCmd l3s(open port="+ LGSL3Port +")",
 +code/ryzom/server/naming_service.cfg:BasePort = 51000;
 +code/ryzom/server/session_browser_server.cfg:SBSPort = 48851;
 +code/ryzom/server/session_browser_server.cfg:"moduleManager.createModule SessionBrowserServerMod sbs suAddr="+SUHost+":49999 listenPort="+SBSPort+" ring_db(host="+DBHost+" user="+DBRingUser+" password="+DBRingPass+" base="+DBRingName+")",
 +code/ryzom/server/shard_unifier_service.cfg:SUGlobalPort = 50503;
 +code/ryzom/server/shard_unifier_service_default.cfg:    "glob_gw.transportCmd l3s(open port="+SUGlobalPort+")",
 +code/ryzom/server/welcome_service.cfg:SUPort = 50505;
 +code/ryzom/server/welcome_service.cfg:SUAddress = SUHost+":"+SUPort;
 +</hidden>
  
 {{tag>Outils}} {{tag>Outils}}
CC Attribution-Share Alike 4.0 International Driven by DokuWiki
fr/serveur_tour.1521238339.txt.gz · Dernière modification : (modification externe)

Licences Mentions légales Accueil du site Contact Inclusion