changed root password

This commit is contained in:
Kevin Veen-Birkenbach 2022-08-31 20:22:56 +02:00
parent 7409431798
commit 5361915c0d
2 changed files with 45 additions and 2 deletions

View File

@ -1,11 +1,14 @@
# docker akaunting # docker akaunting
## clean up ## clean up
### delete all containers ### delete all containers
```bash ```bash
export COMPOSE_HTTP_TIMEOUT=600 export COMPOSE_HTTP_TIMEOUT=600
export DOCKER_CLIENT_TIMEOUT=600 export DOCKER_CLIENT_TIMEOUT=600
cd /home/administrator/docker-compose/akaunting/ && docker-compose down cd /home/administrator/docker-compose/akaunting/ && docker-compose down
``` ```
### delete all volumes ### delete all volumes
```bash ```bash
docker volume rm akaunting_akaunting-data akaunting_akaunting-db akaunting_akaunting-modules docker volume rm akaunting_akaunting-data akaunting_akaunting-db akaunting_akaunting-modules
@ -17,11 +20,48 @@ cd /home/administrator/docker-compose/akaunting/
export COMPOSE_HTTP_TIMEOUT=600 export COMPOSE_HTTP_TIMEOUT=600
export DOCKER_CLIENT_TIMEOUT=600 export DOCKER_CLIENT_TIMEOUT=600
AKAUNTING_SETUP=true docker-compose -p akaunting up -d AKAUNTING_SETUP=true docker-compose -p akaunting up -d
```
Check Webinterface and then execute:
```bash
docker-compose down docker-compose down
docker-compose -p akaunting up -d docker-compose -p akaunting up -d
``` ```
## enter akaunting container
## rebuild docker exec -it akaunting bash
curl https://getcomposer.org/download/2.4.1/composer.phar --output composer.phar
## manuel update
```bash
php /var/www/html/artisan update:all
php /var/www/html/artisan update:db
```
## composer
curl http://some.url --output
php composer.phar install
## recover
### recover all volumes
Keep in mind to set the $akaunting_db_password!
```bash
cd /usr/local/bin/docker-volume-backup &&
machine_id="$(sha256sum /etc/machine-id)" &&
bash docker-volume-recover.sh akaunting_akaunting-modules ${machine_id:0:64} &&
bash docker-volume-recover.sh akaunting_akaunting-data ${machine_id:0:64} &&
bash docker-volume-recover.sh akaunting_akaunting-db ${machine_id:0:64} akaunting-db "$akaunting_db_password" akaunting
```
docker exec -it akaunting-db /bin/mysql -u admin --password=$akaunting_db_password akaunting
### rebuild containers
```bash ```bash
cd /home/administrator/docker-compose/akaunting/ cd /home/administrator/docker-compose/akaunting/
export COMPOSE_HTTP_TIMEOUT=600 export COMPOSE_HTTP_TIMEOUT=600
@ -34,3 +74,6 @@ docker-compose -p akaunting up -d --force-recreate
## Further information ## Further information
- https://github.com/akaunting/docker - https://github.com/akaunting/docker
- https://akaunting.com/forum/discussion/installation-update/updating-to-300-failed-cant-manually-update-either
- https://akaunting.com/forum/discussion/installation-update/not-able-to-update-core
- https://akaunting.com/forum/discussion/installation-update/update-to-203-not-able-to-finalize-core-installation

View File

@ -6,4 +6,4 @@ MYSQL_USER=admin
MYSQL_PASSWORD={{akaunting_database_password}} MYSQL_PASSWORD={{akaunting_database_password}}
# You should probably leave this # You should probably leave this
MYSQL_RANDOM_ROOT_PASSWORD=yes MYSQL_ROOT_PASSWORD={{akaunting_database_password}}