feat(worker): rename service and package to libretime-worker (#2065)
BREAKING CHANGE: The `libretime-celery` python package and service was renamed to `libretime-worker`. Make sure to remove the old python package and service.
This commit is contained in:
parent
a9cd1fb3df
commit
2edbf15bf4
12 changed files with 35 additions and 21 deletions
|
@ -31,10 +31,10 @@ general:
|
|||
In order to apply the changes made in this section, please restart the following services:
|
||||
|
||||
```
|
||||
libretime-api
|
||||
libretime-analyzer
|
||||
libretime-celery
|
||||
libretime-api
|
||||
libretime-playout
|
||||
libretime-worker
|
||||
```
|
||||
|
||||
## Database
|
||||
|
@ -110,10 +110,10 @@ rabbitmq:
|
|||
In order to apply the changes made in this section, please restart the following services:
|
||||
|
||||
```
|
||||
libretime-api
|
||||
libretime-analyzer
|
||||
libretime-celery
|
||||
libretime-api
|
||||
libretime-playout
|
||||
libretime-worker
|
||||
```
|
||||
|
||||
## Playout
|
||||
|
|
|
@ -20,9 +20,9 @@ sudo systemctl stop libretime.target
|
|||
# Or
|
||||
sudo systemctl stop libretime-analyzer.service
|
||||
sudo systemctl stop libretime-api.service
|
||||
sudo systemctl stop libretime-celery.service
|
||||
sudo systemctl stop libretime-liquidsoap.service
|
||||
sudo systemctl stop libretime-playout.service
|
||||
sudo systemctl stop libretime-worker.service
|
||||
```
|
||||
|
||||
## Make a backup
|
||||
|
|
|
@ -23,7 +23,7 @@ If a service isn't running, you should search for details using the tool running
|
|||
On a common setup, you should use the systemd service status:
|
||||
|
||||
```bash
|
||||
sudo systemctl status libretime-celery
|
||||
sudo systemctl status libretime-worker
|
||||
```
|
||||
|
||||
:::note
|
||||
|
@ -51,6 +51,7 @@ On a common setup, to access LibreTime specific logs you should search for the f
|
|||
- The `/var/log/libretime/legacy.log` file contains logs from the legacy app,
|
||||
- The `/var/log/libretime/liquidsoap.log` file contains logs from liquidsoap,
|
||||
- The `/var/log/libretime/playout.log` file contains logs from playout.
|
||||
- The `/var/log/libretime/worker.log` file contains logs from the worker.
|
||||
|
||||
For some LibreTime services, you can set a higher log level using the `LIBRETIME_LOG_LEVEL` environment variable, or by running the service by hand and using a command line flag:
|
||||
|
||||
|
|
|
@ -78,9 +78,10 @@ sudo pip3 uninstall \
|
|||
libretime-analyzer \
|
||||
libretime-api \
|
||||
libretime-api-client \
|
||||
libretime-celery \
|
||||
libretime-playout \
|
||||
libretime-shared \
|
||||
libretime-celery
|
||||
libretime-worker
|
||||
|
||||
# Check if we forgot old python packages.
|
||||
# Remove packages that show up with this commands.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue