Compare commits

...

17 Commits

Author SHA1 Message Date
philipm 31514c5f33 add more sites and correct sidebars 2 months ago
philipm 5dd803d9ec Merge remote-tracking branch 'origin/main' into update-dependencies 2 months ago
Phil f61f267e1d Merge pull request 'testing - Ein paar änderungen' (#5) from testing into main 2 months ago
philipm fe14b65d01 Merge remote-tracking branch 'origin/main' into testing 2 months ago
Thomas Brinkmann 25517d5391
Update - Reseller Module Infos 3 years ago
Thomas Brinkmann f24cf9c43c Merge pull request 'added python, newest node js, and discord bot hosting tutorial' (#2) from Da_Mivolis/Wiki:main into testing 3 years ago
Thomas Brinkmann 4e08234adb Merge branch 'main' into main 3 years ago
Da_Mivolis 54a17755f3 added upload.gif again 4 years ago
Da_Mivolis e1f99654e6 „static/img/dcbot/upload.gif“ löschen 4 years ago
Da_Mivolis 5da6689a4b added discord bot tutorial assets 4 years ago
Da_Mivolis b8f7072080 „wiki/extras/discord-bot-setup.md“ ändern 4 years ago
Da_Mivolis 9fe686d39a fixed one markdown syntax error 4 years ago
Da_Mivolis 9e35b6f02e discord bot hosting tutorial 4 years ago
Da_Mivolis cb2aaeb5e8 removed uneccessary sentence 4 years ago
Da_Mivolis d000e80d4c fixed misspelling of "Paketquellen" 4 years ago
Da_Mivolis 200fe1059b added node js wiki entry 4 years ago
Da_Mivolis 38980fb230 added python wiki entry 4 years ago
  1. 4
      sidebars.js
  2. BIN
      static/img/dcbot/connect.png
  3. BIN
      static/img/dcbot/upload.gif
  4. 54
      wiki/extras/discord-bot-setup.md
  5. 11
      wiki/reseller/deinserverhost-whmcs-modul.md
  6. 23
      wiki/software-installation/debian-nodejs-installieren.md
  7. 28
      wiki/software-installation/debian-python3-installieren.md

@ -4,7 +4,7 @@ module.exports = {
ALLGEMEINES: ['home', 'prepaid', 'elterninformation'],
},
{
EXTRAS: [ 'extras/extra-preisliste' ],
EXTRAS: [ 'extras/extra-preisliste', 'extras/debian-discord-bot-setup' ],
},
{
type: 'category',
@ -101,7 +101,9 @@ module.exports = {
'software-installation/debian-chrome-installieren',
'software-installation/debian-cockpit-installieren',
'software-installation/debian-cronjobs-einstellen',
'software-installation/debian-nodejs-installieren',
'software-installation/debian-docker-installieren',
'software-installation/debian-python-installieren',
'software-installation/debian-fail2ban-installieren',
'software-installation/debian-java-8-installieren',
'software-installation/debian-mariadb-installieren',

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

@ -0,0 +1,54 @@
---
id: debian-discord-bot-setup
title: Python Discord Bot hosten
sidebar_label: Python Discord Bot hosten
---
Hosten eines Discord Bots auf einem Debian VPS
## Informationen
In diesem Tutorial wird dir gezeigt, wie du einen Discord Bot auf einem VPS, root oder Dedicated Server hostest. Du benötigst dafür eine beliebige Debian basierende Distro und Root Rechte.
Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY, Termius oder Tabby.
### Installation
1. Als erstes lädst du Python und screen herunter:
```sh
sudo apt update && sudo apt install python3 pip3 screen
```
2. Nun überträgst du mit WinSCP deine Bot source auf den server.
![img](../../static/img/dcbot/connect.png)
![img](../../static/img/dcbot/upload.gif)
3. Dann installierst du mit pip die benötigten Python Pakete:
```sh
pip3 install paket1 paket2
```
4. Teste ob dein Bot richtig funktioniert:
```sh
python3 /pfad/zum/bot.py
```
5. Wenn alles geklappt hat starte den Bot mit screen, damit du die SSH Sitzung schließen kannst:
```sh
screen -dmS bot python3 /pfad/zum/bot.py
```
6. (optional) Als letztes kannst du wenn du willst einen cronjob einrichten, damit der Bot automatisch beim hochfahren des Servers startet:
```sh
crontab -e
```
Wähle wenn du danach gefragt wirst einen Editor aus. Ich empfehle nano oder vim. Nun trage den cronjob ein.
```sh
@reboot /usr/bin/screen -dmS userbot /usr/bin/python3 /pfad/zum/bot.py
```

@ -57,6 +57,17 @@ Desweiteren muss beachtet werden das in der Aktuellen Version kein Template Mana
|Version | Beschreibung | Datum | Download |
|------ | ------ | ------ | ---- |
**0.8** | **Released** (``Getestet in WHMCS 8.2.x & 8.4``) | **10.02.2022** | **[Download v0.8](https://rose.dsh-mirror.de/reseller/whmcs-module/0.8/dshreseller_v0.8.0.zip)**
|-| Renamed the Module from ``dshreseller`` to ``manageservers`` to become more whitelabled
|**⚠**|**Please delete the ``/modules/servers/dshreseller`` to avoid errors before you upload the new version. Please check also your "Servers" and Products that they have assigned the correct module.**|⚠|⚠|
|-|Added full language support - https://git.dsh.gg/Conan_Doyl/DSHReseller-Languagefiles |
|-|Import the old Data from the dshreseller Module|
|-|Permission Manager has been improved, permissions now correct implemented|
|-|Template Manager updated - Fully customizable Admin/Client Templates|
|-|Added a hook for the Clientarea Panel|
|-|Danish Language added - Thanks to Mikkel for the Translations|
|-|Spanish Language partial added - Thanks to Mikkel for the Translations|
|-|A lot of bugfixes from v0.7.x
**0.6** | **Pre-Release** (``Getestet in WHMCS 7.10.x``) | **19.03.2021** | **[Download v0.6](https://rose.dsh-mirror.de/reseller/whmcs-module/0.6/DSH_Reseller_v0.6.zip)**
|-| Added an Addon to manage some more Settings for the Reseller itself. |
|-| Added a search function to find services by their IP or their ID. |

@ -0,0 +1,23 @@
---
id: debian-nodejs-installieren
title: Node JS installieren (Debian)
sidebar_label: Node JS installieren
---
Installation von Node JS auf Linux Debian Server
## Informationen
In diesem Tutorial wird dir gezeigt, wie du Node JS auf einem VPS, root oder Dedicated Server installierst. Du benötigst dafür eine beliebige Debian basierende distro, curl und Root Rechte.
Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY, Termius oder Tabby.
### Installation
1. Als erstes fügst du die offiziellen Node JS Paketquellen hinzu:
```sh
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
```
2. Nun updatest du deine Paketquellen und installierst Node JS.
```sh
sudo apt-get update && sudo apt-get install nodejs
```

@ -0,0 +1,28 @@
---
id: debian-python-installieren
title: Python installieren (Debian)
sidebar_label: Python installieren
---
Installation von Python auf Linux Debian Server
## Informationen
In diesem Tutorial wird dir gezeigt, wie du Python auf einem VPS, root oder Dedicated Server installierst. Du benötigst dafür eine beliebige Debian basierende distro und Root Rechte.
Melde dich zunächst als root mit dem SSH Client deiner Wahl an, z.B. PuTTY oder Terminus.
### Installation
1. Als erstes aktualisierst du deine Paketquellen:
```sh
sudo apt-get update
```
2. Nun installierst du python und pip.
```sh
sudo apt-get install python3 pip3
```
3. Wenn du es von Windows gewohnt bist, statt python3 python zu schreiben installiere das paket python-is-python3:
```sh
sudo apt-get install python-is-python3
```
Loading…
Cancel
Save