-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathreadme.txt
54 lines (42 loc) · 1.86 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//===== rAthena Documentation ================================
//= rAsql Documentation
//===== By: ==================================================
//= rAthena Dev Team
//===== Last Updated: ========================================
//= 20140206
//===== Description: =========================================
//= A brief description of rAsql, a portable MySQL server.
//============================================================
This server is meant for locally TESTING rAthena only, and should not be
used for hosting a public rAthena server. To host a public rAthena server,
you should use a Dedicated Server or VPS.
The server uses the standard port 3306, and will only accept connections
from localhost. The default username and password are both 'ragnarok'.
=======================
| Starting the server |
=======================
Run the server using 'mysql_start.bat', which creates a virtual drive. The
drive letter used is the first available letter found.
=======================
| Stopping the server |
=======================
Stop the server using 'mysql_stop.bat'. This shuts down the server and
removes the virtual drive.
=================
| Modifications |
=================
Change virtual drive
--------------------
To override the default virtual drive letter, locate these lines in
'mysql_start.bat':
rem ## To force a drive letter, remove "rem" and change drive letter
rem set Disk=w
For example, changing the second line to 'set Disk=X' would force the server
to run on drive letter X.
Change default settings
-----------------------
To change the default user, password, or port, simply type in your desired
settings when HeidiSQL launches. Then locate these lines in 'mysql_stop.bat':
rem ## Kill server
udrive\bin\mysqladmin.exe --port=3306 --user=ragnarok --password=ragnarok shutdown
Edit the necessary fields whenever changes to the configuration are made.