summaryrefslogtreecommitdiff
path: root/docs/database-installation.md
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2022-02-12 03:54:50 +0100
committerKitzunu <24550914+Kitzunu@users.noreply.github.com>2022-02-12 03:54:50 +0100
commit409647901095c804e70b4d89aeac0c2e3b3413d5 (patch)
tree69abdbe1d9624942a805a35ca20dbda004b8f104 /docs/database-installation.md
parent672036000f674606c36d80217f75cb5bc65f0f22 (diff)
downloadwiki-409647901095c804e70b4d89aeac0c2e3b3413d5.tar.gz
wiki-409647901095c804e70b4d89aeac0c2e3b3413d5.tar.bz2
wiki-409647901095c804e70b4d89aeac0c2e3b3413d5.zip
chore: misc
Diffstat (limited to 'docs/database-installation.md')
-rw-r--r--docs/database-installation.md35
1 files changed, 0 insertions, 35 deletions
diff --git a/docs/database-installation.md b/docs/database-installation.md
index da55abb..c95bd67 100644
--- a/docs/database-installation.md
+++ b/docs/database-installation.md
@@ -23,7 +23,6 @@ You would need to use one MySQL root account with your MySQL client or with MySQ
You can choose to populate the database in two ways:
- Automatic Database Updater (default, recommended)
-- DB Assambler tool
If you want to know how the SQL directory works or plan to have custom changes we recommend you read [this](sql-directory).
@@ -35,40 +34,6 @@ This is the easiest and recommended way to make sure you are always up-to-date w
To edit the automatic database updater you will find the neccessary settings in authserver.conf and worldserver.conf under [UPDATE SETTINGS](https://github.com/azerothcore/azerothcore-wotlk/commit/2d2857ce81db5297eb63d388d2e2f252ef52412d#diff-56b141374cf0384a2887c9fd490c6a79a3d2f31fb020ee0e423a5685344b59d3R30).
-### DB Assambler (For advanced users that want more control)
-
-This is a tool written before the automatic database updater and essentially does the same thing.
-
-#### Importing the Database
-
-*Note: if you're using MySQL 5.7, first run*
-
-```
-mysql -e "SET GLOBAL sql_mode = '';" -u root -p first
-```
-
-(replace root with your mysql user).
-
-*Note: If you are using Windows you will need to run the .sh files with git*
-
-1. Open **C:\AzerothCore\apps\db_assambler**
-
-1. Run db_assambler.sh `bash apps/db_assembler/db_assembler.sh`
-
-1. Select **import-all: Assemble & Import all**
-
-#### Changing user or password
-
-If you want to change the user or password you will need to edit the script config.
-
-1. Copy the file **conf/dist/config.sh** to **conf/config.sh**.
-
-1. Open **conf/config.sh** with a text editor.
-
-1. Go to the secion **DB EXPORTER/IMPORTER CONFIGURATIONS**.
-
-1. Edit the variables accordingly, e.g. you most likely need to edit **MYSQL_USER** and **MYSQL_PASS** variables putting your mysql server settings.
-
<br>
## Help