Difference between revisions of "AdminServer (Architecture)"
From SWGANH Wiki
| (21 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| + | {{PageHeader|Server Architecture|Admin Server}} | ||
{| align="right" | {| align="right" | ||
|- | |- | ||
||{{ServerArchitectureNAV}} | ||{{ServerArchitectureNAV}} | ||
|- | |- | ||
| − | |} | + | |}<br><br><br><br> |
| + | =Description= | ||
| + | Text goes here.... | ||
| + | =Process Overview= | ||
| + | '''Network Manager:''' Responsible for all OS network calls, low level packaging of packets, compression, encryption. Threaded. | ||
| − | + | '''Database Manager:''' Responsible for all calls to the database server. Threaded. | |
| − | + | '''Login Manager:''' Responsible for initial contact and authentication of clients, world list requests from client, and character profile request from client. Main thread. | |
| − | = | + | =Diagrams= |
| + | {| align="center" | ||
| + | |+ '''Server Diagram''' | ||
| + | |- | ||
| + | ||[[Image:AdminServerArchitecture.jpg]] | ||
| + | |- | ||
| + | |} | ||
| − | = | + | =Configuration Files= |
| + | |||
| + | <pre> | ||
| + | # Admin Server Configuration File | ||
| + | |||
| + | # Database Configuration | ||
| + | DBServer = localhost | ||
| + | DBPort = 3306 | ||
| + | DBName = swganh | ||
| + | DBUser = <dbusername> | ||
| + | DBPass = <dbpass> | ||
| + | </pre> | ||
Latest revision as of 01:07, 10 August 2007
Server Architecture - Admin Server
SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.
|
Description
Text goes here....
Process Overview
Network Manager: Responsible for all OS network calls, low level packaging of packets, compression, encryption. Threaded.
Database Manager: Responsible for all calls to the database server. Threaded.
Login Manager: Responsible for initial contact and authentication of clients, world list requests from client, and character profile request from client. Main thread.
Diagrams
| File:AdminServerArchitecture.jpg |
Configuration Files
# Admin Server Configuration File # Database Configuration DBServer = localhost DBPort = 3306 DBName = swganh DBUser = <dbusername> DBPass = <dbpass>