145 lines
3.1 KiB
Markdown
145 lines
3.1 KiB
Markdown
---
|
|
title: "Installation and Updates"
|
|
---
|
|
|
|
# Installation and Updates
|
|
|
|
## Deploy from Pre-compiled Files
|
|
|
|
Download the binary file for your platform from the [Release](https://github.com/krau/SaveAny-Bot/releases) page.
|
|
|
|
Create a `config.toml` file in the extracted directory, refer to the [Configuration Guide](../configuration) to edit the configuration file.
|
|
|
|
Run:
|
|
|
|
```bash
|
|
chmod +x saveany-bot
|
|
./saveany-bot
|
|
```
|
|
|
|
### Process Monitoring
|
|
|
|
{{< tabs "daemon" >}}
|
|
{{< tab "systemd (Regular Linux)" >}}
|
|
|
|
Create a file <code>/etc/systemd/system/saveany-bot.service</code> and write the following content:
|
|
|
|
{{< codeblock >}}
|
|
[Unit]
|
|
Description=SaveAnyBot
|
|
After=systemd-user-sessions.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/yourpath/
|
|
ExecStart=/yourpath/saveany-bot
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
{{< /codeblock >}}
|
|
|
|
Enable startup on boot and start the service:
|
|
|
|
{{< codeblock >}}
|
|
systemctl enable --now saveany-bot
|
|
{{< /codeblock >}}
|
|
|
|
{{< /tab >}}
|
|
|
|
{{< tab "procd (OpenWrt)" >}}
|
|
|
|
<h4>Add Boot Autostart Service</h4>
|
|
|
|
Create a file <code>/etc/init.d/saveanybot</code>, refer to <a href="https://github.com/krau/SaveAny-Bot/blob/main/docs/confs/wrt_init" target="_blank">wrt_init</a> and modify as needed:
|
|
|
|
{{< codeblock >}}
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
#This is the OpenWRT init.d script for SaveAnyBot
|
|
|
|
START=99
|
|
STOP=10
|
|
description="SaveAnyBot"
|
|
|
|
WORKING_DIR="/mnt/mmc1-1/SaveAnyBot"
|
|
EXEC_PATH="$WORKING_DIR/saveany-bot"
|
|
start() {
|
|
echo "Starting SaveAnyBot..."
|
|
cd $WORKING_DIR
|
|
$EXEC_PATH &
|
|
}
|
|
stop() {
|
|
echo "Stopping SaveAnyBot..."
|
|
killall saveany-bot
|
|
}
|
|
reload() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
{{< /codeblock >}}
|
|
|
|
Set permissions:
|
|
|
|
{{< codeblock >}}
|
|
chmod +x /etc/init.d/saveanybot
|
|
{{< /codeblock >}}
|
|
|
|
Then copy the file to <code>/etc/rc.d</code> and rename it to <code>S99saveanybot</code>, also set permissions:
|
|
|
|
{{< codeblock >}}
|
|
chmod +x /etc/rc.d/S99saveanybot
|
|
{{< /codeblock >}}
|
|
|
|
<h4>Add Shortcut Commands</h4>
|
|
|
|
Create a file <code>/usr/bin/sabot</code>, refer to <a href="https://github.com/krau/SaveAny-Bot/blob/main/docs/confs/wrt_bin" target="_blank">wrt_bin</a> and modify as needed. Note that the file encoding here only supports ANSI 936.
|
|
|
|
Then set permissions:
|
|
|
|
{{< codeblock >}}
|
|
chmod +x /usr/bin/sabot
|
|
{{< /codeblock >}}
|
|
|
|
Usage: <code>sudo sabot start|stop|restart|status|enable|disable</code>
|
|
|
|
{{< /tab >}}
|
|
{{< /tabs >}}
|
|
|
|
|
|
## Deploy Using Docker
|
|
|
|
### Docker Compose
|
|
|
|
Download the [docker-compose.yml](https://github.com/krau/SaveAny-Bot/blob/main/docker-compose.yml) file, create a new `config.toml` file in the same directory, refer to [config.example.toml](https://github.com/krau/SaveAny-Bot/blob/main/config.example.toml) to edit the configuration file.
|
|
|
|
Start:
|
|
|
|
```bash
|
|
docker compose up -d
|
|
```
|
|
|
|
### Docker
|
|
|
|
```shell
|
|
docker run -d --name saveany-bot \
|
|
-v /path/to/config.toml:/app/config.toml \
|
|
-v /path/to/downloads:/app/downloads \
|
|
ghcr.io/krau/saveany-bot:latest
|
|
```
|
|
|
|
## Updates
|
|
|
|
Use `upgrade` or `up` to upgrade to the latest version
|
|
|
|
```bash
|
|
./saveany-bot upgrade
|
|
```
|
|
|
|
If you deployed with Docker, use the following commands to update:
|
|
|
|
```bash
|
|
docker pull ghcr.io/krau/saveany-bot:latest
|
|
docker restart saveany-bot
|
|
``` |