Commit all changes.
This commit is contained in:
parent
61f71805ad
commit
569204fcbd
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ Volumes/*
|
||||
|
||||
# Ignore backed up config files.
|
||||
*.yml.*
|
||||
|
||||
|
@ -36,7 +36,7 @@ ONE_DIR=1
|
||||
|
||||
# empty => postmaster@domain.com
|
||||
# => Specify the postmaster address
|
||||
POSTMASTER_ADDRESS=postmaster2@hyperling.com
|
||||
POSTMASTER_ADDRESS=postmaster@hyperling.com
|
||||
|
||||
# Check for updates on container start and then once a day
|
||||
# If an update is available, a mail is sent to POSTMASTER_ADDRESS
|
||||
|
34
README.md
34
README.md
@ -1,25 +1,37 @@
|
||||
# My Docker Setup
|
||||
Decided to organize and script my way into the Docker world.
|
||||
Was unable to find a good tutorial on using and managing containers so this is what made sense to me based on Docker-Compose.
|
||||
Scripting my way into the Docker world.
|
||||
Was unable to find a good tutorial on using and managing containers so this is what made sense to me based on practicing with `docker-compose`.
|
||||
I am still very new to Docker and am likely to make mistakes, but you're welcome to learn with me. ;)
|
||||
|
||||
## Disclaimer
|
||||
Currently the project only focuses on `apt` based operating systems.
|
||||
|
||||
## How To Use
|
||||
`apt install git bash`
|
||||
`git clone https://github.com/hyperling/docker /opt/Docker`
|
||||
`source /opt/Docker/source.env`
|
||||
`install.sh`
|
||||
`create.sh PROJECT_NAME`
|
||||
`vi /opt/Docker/Config/PROJECT_NAME/docker-compose.yml`
|
||||
`start.sh`
|
||||
Cross your fingers and hope to profit.
|
||||
|
||||
## Folders
|
||||
|
||||
### Config
|
||||
Compose projects are set up here. Each folder should have a docker-compose.yml file set up.
|
||||
Compose projects are set up here. Each folder should have a `docker-compose.yml` file set up.
|
||||
|
||||
### Volumes
|
||||
The data of the files go here if the Config is done correctly.
|
||||
I think this should be easier to remember than /var/lib/docker/volumes when it comes time for migrations.
|
||||
Hopefully all that's needed is to rsync /opt/Docker and run start.sh on the new server.
|
||||
That's my opinion though, if someone else uses this then they can use /var/.
|
||||
I think this should be easier to remember than `/var/lib/docker/volumes` when it comes time for migrations.
|
||||
Hopefully all that's needed is to rsync `/opt/Docker` and run start.sh on the new server.
|
||||
That's my opinion though, if someone else uses this then they can use `/var/`.
|
||||
|
||||
### bin
|
||||
Scripts to help make life easier. Some are pretty basic, but others do nice things like handle the container IDs.
|
||||
* install.sh : Install dependencies on a new server with apt.
|
||||
* create.sh : Create a new folder with the needed yml file.
|
||||
* start.sh : Start all compose containers.
|
||||
* stop.sh : Stop all compose containers.
|
||||
* get_logs.sh : Create log files rather than using the `docker log` command or searching in /var/whatever.
|
||||
* `install.sh` : Install dependencies on a new server with apt.
|
||||
* `create.sh` : Create a new folder with the needed yml file.
|
||||
* `start.sh` : Start all compose containers.
|
||||
* `stop.sh` : Stop all compose containers.
|
||||
* `get_logs.sh` : Create log files rather than using the `docker log` command or searching in /var/whatever.
|
||||
* `uninstall.sh` : If something goes wrong and you'd like to start from scratch without provisioning a new server then this should do the job.
|
||||
|
50596
logs/docker-mailserver:latest.log.20220810-044739
Executable file
50596
logs/docker-mailserver:latest.log.20220810-044739
Executable file
File diff suppressed because it is too large
Load Diff
222
logs/mariadb:10.5.log.20220810-044739
Executable file
222
logs/mariadb:10.5.log.20220810-044739
Executable file
@ -0,0 +1,222 @@
|
||||
2022-08-06 13:53:00+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 13:53:00+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-06 13:53:00+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 13:53:00+00:00 [Note] [Entrypoint]: Initializing database files
|
||||
|
||||
|
||||
PLEASE REMEMBER TO SET A PASSWORD FOR THE MariaDB root USER !
|
||||
To do so, start the server, then issue the following command:
|
||||
|
||||
'/usr/bin/mysql_secure_installation'
|
||||
|
||||
which will also give you the option of removing the test
|
||||
databases and anonymous user created by default. This is
|
||||
strongly recommended for production servers.
|
||||
|
||||
See the MariaDB Knowledgebase at https://mariadb.com/kb
|
||||
|
||||
Please report any problems at https://mariadb.org/jira
|
||||
|
||||
The latest information about MariaDB is available at https://mariadb.org/.
|
||||
|
||||
Consider joining MariaDB's strong and vibrant community:
|
||||
https://mariadb.org/get-involved/
|
||||
|
||||
2022-08-06 13:53:03+00:00 [Note] [Entrypoint]: Database files initialized
|
||||
2022-08-06 13:53:03+00:00 [Note] [Entrypoint]: Starting temporary server
|
||||
2022-08-06 13:53:03+00:00 [Note] [Entrypoint]: Waiting for server startup
|
||||
2022-08-06 13:53:03 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 97 ...
|
||||
2022-08-06 13:53:03 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-06 13:53:03 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-06 13:53:03 0 [Note] InnoDB: 10.5.16 started; log sequence number 45106; transaction id 20
|
||||
2022-08-06 13:53:03 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-06 13:53:03 0 [Warning] 'user' entry 'root@ede896ecd3a4' ignored in --skip-name-resolve mode.
|
||||
2022-08-06 13:53:03 0 [Warning] 'proxies_priv' entry '@% root@ede896ecd3a4' ignored in --skip-name-resolve mode.
|
||||
2022-08-06 13:53:03 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-06 13:53:03 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-06 13:53:03 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 0 mariadb.org binary distribution
|
||||
2022-08-06 13:53:04+00:00 [Note] [Entrypoint]: Temporary server started.
|
||||
Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it.
|
||||
Warning: Unable to load '/usr/share/zoneinfo/leapseconds' as time zone. Skipping it.
|
||||
Warning: Unable to load '/usr/share/zoneinfo/tzdata.zi' as time zone. Skipping it.
|
||||
2022-08-06 13:53:08+00:00 [Note] [Entrypoint]: Securing system users (equivalent to running mysql_secure_installation)
|
||||
2022-08-06 13:53:08+00:00 [Note] [Entrypoint]: Creating database nextcloud
|
||||
2022-08-06 13:53:08+00:00 [Note] [Entrypoint]: Creating user nc
|
||||
2022-08-06 13:53:08+00:00 [Note] [Entrypoint]: Giving user nc access to schema nextcloud
|
||||
|
||||
2022-08-06 13:53:08+00:00 [Note] [Entrypoint]: Stopping temporary server
|
||||
2022-08-06 13:53:08 0 [Note] mysqld (initiated by: root[root] @ localhost []): Normal shutdown
|
||||
2022-08-06 13:53:08 0 [Note] Event Scheduler: Purging the queue. 0 events
|
||||
2022-08-06 13:53:08 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2022-08-06 13:53:08 0 [Note] InnoDB: Starting shutdown...
|
||||
2022-08-06 13:53:08 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 13:53:08 0 [Note] InnoDB: Buffer pool(s) dump completed at 220806 13:53:08
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Shutdown completed; log sequence number 45118; transaction id 21
|
||||
2022-08-06 13:53:09 0 [Note] mysqld: Shutdown complete
|
||||
|
||||
2022-08-06 13:53:09+00:00 [Note] [Entrypoint]: Temporary server stopped
|
||||
|
||||
2022-08-06 13:53:09+00:00 [Note] [Entrypoint]: MariaDB init process done. Ready for start up.
|
||||
|
||||
2022-08-06 13:53:09 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-06 13:53:09 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-06 13:53:09 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-06 13:53:09 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: 10.5.16 started; log sequence number 45118; transaction id 20
|
||||
2022-08-06 13:53:10 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-06 13:53:10 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 13:53:10 0 [Note] InnoDB: Buffer pool(s) load completed at 220806 13:53:10
|
||||
2022-08-06 13:53:10 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-06 13:53:10 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-06 13:53:10 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-06 14:04:06 88 [Warning] Access denied for user 'root'@'localhost' (using password: YES)
|
||||
2022-08-06 14:04:14 89 [Warning] Access denied for user 'root'@'localhost' (using password: YES)
|
||||
2022-08-06 14:04:38 91 [Warning] Access denied for user 'root'@'localhost' (using password: YES)
|
||||
2022-08-06 14:07:35 97 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 14:07:35 98 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 14:07:35 99 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 14:07:35 100 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 14:07:35 101 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 14:08:05 102 [Warning] Access denied for user 'nc'@'172.19.0.3' (using password: YES)
|
||||
2022-08-06 16:04:00 6010 [Warning] Aborted connection 6010 to db: 'nextcloud' user: 'nc' host: '172.19.0.3' (Got an error reading communication packets)
|
||||
2022-08-06 16:04:00 6008 [Warning] Aborted connection 6008 to db: 'nextcloud' user: 'nc' host: '172.19.0.3' (Got an error reading communication packets)
|
||||
2022-08-06 16:04:00 6009 [Warning] Aborted connection 6009 to db: 'nextcloud' user: 'nc' host: '172.19.0.3' (Got an error reading communication packets)
|
||||
2022-08-06 16:27:46 0 [Note] mysqld (initiated by: unknown): Normal shutdown
|
||||
2022-08-06 16:27:46 0 [Note] Event Scheduler: Purging the queue. 0 events
|
||||
2022-08-06 16:27:46 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2022-08-06 16:27:46 0 [Note] InnoDB: Starting shutdown...
|
||||
2022-08-06 16:27:46 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 16:27:46 0 [Note] InnoDB: Restricted to 2016 pages due to innodb_buf_pool_dump_pct=25
|
||||
2022-08-06 16:27:46 0 [Note] InnoDB: Buffer pool(s) dump completed at 220806 16:27:46
|
||||
2022-08-06 16:27:47 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
|
||||
2022-08-06 16:27:47 0 [Note] InnoDB: Shutdown completed; log sequence number 344104047; transaction id 18875
|
||||
2022-08-06 16:27:47 0 [Note] mysqld: Shutdown complete
|
||||
|
||||
2022-08-06 16:28:35+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 16:28:36+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-06 16:28:36+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 16:28:37+00:00 [Note] [Entrypoint]: MariaDB upgrade not required
|
||||
2022-08-06 16:28:37 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-06 16:28:37 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-06 16:28:37 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: 10.5.16 started; log sequence number 344104047; transaction id 18876
|
||||
2022-08-06 16:28:37 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 16:28:37 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-06 16:28:37 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-06 16:28:37 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-06 16:28:37 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-06 16:28:37 0 [Note] InnoDB: Buffer pool(s) load completed at 220806 16:28:37
|
||||
2022-08-06 17:43:06 0 [Note] mysqld (initiated by: unknown): Normal shutdown
|
||||
2022-08-06 17:43:06 0 [Note] Event Scheduler: Purging the queue. 0 events
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Starting shutdown...
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Restricted to 2016 pages due to innodb_buf_pool_dump_pct=25
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Buffer pool(s) dump completed at 220806 17:43:06
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
|
||||
2022-08-06 17:43:06 0 [Note] InnoDB: Shutdown completed; log sequence number 700880332; transaction id 30365
|
||||
2022-08-06 17:43:06 0 [Note] mysqld: Shutdown complete
|
||||
|
||||
2022-08-06 17:48:58+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 17:48:59+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-06 17:48:59+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-06 17:48:59+00:00 [Note] [Entrypoint]: MariaDB upgrade not required
|
||||
2022-08-06 17:48:59 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-06 17:48:59 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-06 17:48:59 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: 10.5.16 started; log sequence number 700880332; transaction id 30366
|
||||
2022-08-06 17:48:59 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-06 17:48:59 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-06 17:48:59 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-06 17:48:59 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-06 17:48:59 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-06 17:48:59 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-06 17:49:00 0 [Note] InnoDB: Buffer pool(s) load completed at 220806 17:49:00
|
||||
2022-08-07 10:06:46 0 [Note] mysqld (initiated by: unknown): Normal shutdown
|
||||
2022-08-07 10:06:46 0 [Note] Event Scheduler: Purging the queue. 0 events
|
||||
2022-08-07 10:06:46 0 [Note] InnoDB: FTS optimize thread exiting.
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Starting shutdown...
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Dumping buffer pool(s) to /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Restricted to 2016 pages due to innodb_buf_pool_dump_pct=25
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Buffer pool(s) dump completed at 220807 10:06:47
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Removed temporary tablespace data file: "ibtmp1"
|
||||
2022-08-07 10:06:47 0 [Note] InnoDB: Shutdown completed; log sequence number 1434774998; transaction id 181875
|
||||
2022-08-07 10:06:47 0 [Note] mysqld: Shutdown complete
|
||||
|
||||
2022-08-07 10:07:45+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-07 10:07:46+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-07 10:07:46+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-07 10:07:46+00:00 [Note] [Entrypoint]: MariaDB upgrade not required
|
||||
2022-08-07 10:07:46 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-07 10:07:46 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-07 10:07:46 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: 10.5.16 started; log sequence number 1434774998; transaction id 181876
|
||||
2022-08-07 10:07:46 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-07 10:07:46 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-07 10:07:46 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-07 10:07:46 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-07 10:07:46 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-07 10:07:46 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-07 10:07:47 0 [Note] InnoDB: Buffer pool(s) load completed at 220807 10:07:47
|
27
logs/mariadb:10.5.log.20220821-124943
Executable file
27
logs/mariadb:10.5.log.20220821-124943
Executable file
@ -0,0 +1,27 @@
|
||||
2022-08-21 17:49:28+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: MariaDB upgrade not required
|
||||
2022-08-21 17:49:29 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-21 17:49:29 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-21 17:49:29 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: 10.5.16 started; log sequence number 3002909028; transaction id 3014365
|
||||
2022-08-21 17:49:29 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-21 17:49:29 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-21 17:49:29 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-21 17:49:29 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-21 17:49:29 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Buffer pool(s) load completed at 220821 17:49:29
|
27
logs/mariadb:10.5.log.20220821-125035
Executable file
27
logs/mariadb:10.5.log.20220821-125035
Executable file
@ -0,0 +1,27 @@
|
||||
2022-08-21 17:49:28+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql'
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: Entrypoint script for MariaDB Server 1:10.5.16+maria~focal started.
|
||||
2022-08-21 17:49:29+00:00 [Note] [Entrypoint]: MariaDB upgrade not required
|
||||
2022-08-21 17:49:29 0 [Note] mysqld (mysqld 10.5.16-MariaDB-1:10.5.16+maria~focal) starting as process 1 ...
|
||||
2022-08-21 17:49:29 0 [Warning] You need to use --log-bin to make --binlog-format work.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Uses event mutexes
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Number of pools: 1
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Using SSE4.2 crc32 instructions
|
||||
2022-08-21 17:49:29 0 [Note] mysqld: O_TMPFILE is not supported on /tmp (disabling future attempts)
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Using Linux native AIO
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Initializing buffer pool, total size = 134217728, chunk size = 134217728
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Completed initialization of buffer pool
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: 128 rollback segments are active.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Creating shared tablespace for temporary tables
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: File './ibtmp1' size is now 12 MB.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: 10.5.16 started; log sequence number 3002909028; transaction id 3014365
|
||||
2022-08-21 17:49:29 0 [Note] Plugin 'FEEDBACK' is disabled.
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Loading buffer pool(s) from /var/lib/mysql/ib_buffer_pool
|
||||
2022-08-21 17:49:29 0 [Note] Server socket created on IP: '::'.
|
||||
2022-08-21 17:49:29 0 [Note] Reading of all Master_info entries succeeded
|
||||
2022-08-21 17:49:29 0 [Note] Added new Master_info '' to hash table
|
||||
2022-08-21 17:49:29 0 [Note] mysqld: ready for connections.
|
||||
Version: '10.5.16-MariaDB-1:10.5.16+maria~focal' socket: '/run/mysqld/mysqld.sock' port: 3306 mariadb.org binary distribution
|
||||
2022-08-21 17:49:29 0 [Note] InnoDB: Buffer pool(s) load completed at 220821 17:49:29
|
56301
logs/nextcloud.log.20220810-044738
Executable file
56301
logs/nextcloud.log.20220810-044738
Executable file
File diff suppressed because it is too large
Load Diff
4
logs/nextcloud.log.20220821-124943
Executable file
4
logs/nextcloud.log.20220821-124943
Executable file
@ -0,0 +1,4 @@
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message
|
||||
[Sun Aug 21 17:49:30.196968 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/8.0.22 configured -- resuming normal operations
|
||||
[Sun Aug 21 17:49:30.197267 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
|
17
logs/nextcloud.log.20220821-125035
Executable file
17
logs/nextcloud.log.20220821-125035
Executable file
@ -0,0 +1,17 @@
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message
|
||||
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.19.0.3. Set the 'ServerName' directive globally to suppress this message
|
||||
[Sun Aug 21 17:49:30.196968 2022] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.54 (Debian) PHP/8.0.22 configured -- resuming normal operations
|
||||
[Sun Aug 21 17:49:30.197267 2022] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
|
||||
172.19.0.1 - - [21/Aug/2022:17:50:16 +0000] "GET /custom_apps/richdocumentscode/proxy.php?req=/hosting/capabilities HTTP/1.1" 200 559 "-" "Nextcloud Server Crawler"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:16 +0000] "GET / HTTP/1.1" 503 18577 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /core/css/guest.css?v=1b7ca177-45 HTTP/1.1" 200 6144 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /dist/core-main.js?v=1b7ca177-45 HTTP/1.1" 200 48416 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /dist/core-maintenance.js?v=1b7ca177-45 HTTP/1.1" 200 1767 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /core/img/background.png?v=2 HTTP/1.1" 200 10101 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /core/img/logo/logo.svg?v=1 HTTP/1.1" 200 1297 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /core/img/actions/error-white.svg?v=1 HTTP/1.1" 200 705 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:17 +0000] "GET /dist/core-common.js?v=1b7ca177-45 HTTP/1.1" 200 2111844 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:18 +0000] "GET /core/img/favicon.ico HTTP/1.1" 200 3756 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:18 +0000] "GET /core/img/manifest.json HTTP/1.1" 200 691 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:18 +0000] "GET /status.php HTTP/1.1" 200 1033 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
||||
192.168.1.90 - - [21/Aug/2022:17:50:18 +0000] "GET /core/img/favicon-touch.png HTTP/1.1" 200 4676 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36"
|
Loading…
x
Reference in New Issue
Block a user