From 890792004063f3754be3a1ed0e36c6787f0c9351 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Thu, 15 Apr 2021 12:04:34 +0200 Subject: refactor(guide): Refactor installation guide (#427) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Spell_system.md * refactor(guide): Refactor installation guide * Update Requirements.md * Update Requirements.md * da * Update windows-requirements.md * d * test * test * windows * windows * help * note to self: next windows * core and server installation * db * finally * Update client-setup.md * Update final-server-steps.md * Update windows-core-installation.md * Update core-installation.md * last * Update database-installation.md * Update database-installation.md * Update server-setup.md * Rename Requirements.md to requirements.md * Y * f * ad * Update windows-core-installation.md * d * Update installation-guide.md * Update linux-requirements.md Ubuntu installation with seperate MariaDB and Oracle MySQL * Remove account * Update installation-guide.md * Update installation-guide.md * Update installation-guide.md Co-authored-by: Nolt Co-authored-by: Francesco Borzì --- docs/linux-keeping-the-server-up-to-date.md | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 docs/linux-keeping-the-server-up-to-date.md (limited to 'docs/linux-keeping-the-server-up-to-date.md') diff --git a/docs/linux-keeping-the-server-up-to-date.md b/docs/linux-keeping-the-server-up-to-date.md new file mode 100644 index 0000000..8986db7 --- /dev/null +++ b/docs/linux-keeping-the-server-up-to-date.md @@ -0,0 +1,39 @@ +# Linux Keeping the Server Up-to-Date + +| Installation Guide | | +| :- | :- | +| This article is a part of the Installation Guide. You can read it alone or click on the previous link to easily move between the steps. | +| [<< Step 6: Final Server Steps](final-server-steps.md) | [Step 8: Client Setup >>](client-setup.md) | + +## Keeping the source Up-to-Date + +```sh +cd ~/azerothcore/ +git pull origin master +``` + +```sh +cd build +make -j 8; make install +``` + +Sometimes we add or remove files from the repositiory. At that point it is neccessary to recompile the server, the same way as it was installed the first time [in the Linux Core Installation](linux-core-installation.md#configuring-for-compiling). + +## Keeping the Database Up-to-Date + +Read [Database Keeping the Server Up-to-Date](database-keeping-the-server-up-to-date.md) + +
+ +## Help + +If you are still having problems, check: + +* [How to ask for help](How-to-ask-for-help.md) + +* [Join our Discord Server](https://discord.gg/gkt4y2x), but it is not a 24/7 support channel. A staff member will answer you whenever they have time. + +| Installation Guide | | +| :- | :- | +| This article is a part of the Installation Guide. You can read it alone or click on the previous link to easily move between the steps. | +| [<< Step 6: Final Server Steps](final-server-steps.md) | [Step 8: Client Setup >>](client-setup.md) | -- cgit