Advertisement
Guest User

Untitled

a guest
Feb 27th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. PS C:\Users\Asus> docker container run -d --name testdb -e MYSQL_ROOT_PASSWORD=secret -e MYSQL_DATABASE=wp-content -e MYSQL_USER=aqwe-e MYSQL_PASSWORD=sqwe@ -v //c/Users/Asus/Container/testdb/data:/var/lib/mysql -p 3333:3333 --restart unless-stopped mariadb
  2. docker container logs testdb
  3.  
  4. 2019-02-27 17:29:32 0 [Note] mysqld (mysqld 10.3.13-MariaDB-1:10.3.13+maria~bionic) starting as process 1 ...
  5. 2019-02-27 17:29:32 0 [Warning] Setting lower_case_table_names=2 because file system for /var/lib/mysql/ is case insensitive
  6. 2019-02-27 17:29:32 0 [Note] InnoDB: Using Linux native AIO
  7. 2019-02-27 17:29:32 0 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
  8. 2019-02-27 17:29:32 0 [Note] InnoDB: Uses event mutexes
  9. 2019-02-27 17:29:32 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
  10. 2019-02-27 17:29:32 0 [Note] InnoDB: Number of pools: 1
  11. 2019-02-27 17:29:32 0 [Note] InnoDB: Using SSE2 crc32 instructions
  12. 2019-02-27 17:29:32 0 [Note] InnoDB: Initializing buffer pool, total size = 256M, instances = 1, chunk size = 128M
  13. 2019-02-27 17:29:32 0 [Note] InnoDB: Completed initialization of buffer pool
  14. 2019-02-27 17:29:32 0 [Note] InnoDB: If the mysqld execution user is authorized, page cleaner thread priority can be changed. See the man page of setpriority()
  15. .
  16. 2019-02-27 17:29:32 0 [Warning] InnoDB: Failed to set O_DIRECT on file./ibdata1; OPEN: Invalid argument, continuing anyway. O_DIRECT is known to result in 'Inv
  17. alid argument' on Linux on tmpfs, see MySQL Bug#26662.
  18. 2019-02-27 17:29:32 0 [ERROR] InnoDB: Header page consists of zero bytes in datafile: ./ibdata1, Space ID:0, Flags: 0. Please refer to http://dev.mysql.com/doc
  19. /refman/5.7/en/innodb-troubleshooting-datadict.html for how to resolve the issue.
  20. 2019-02-27 17:29:32 0 [ERROR] InnoDB: Corrupted page [page id: space=0, page number=0] of datafile './ibdata1' could not be found in the doublewrite buffer.
  21. 2019-02-27 17:29:32 0 [ERROR] InnoDB: Plugin initialization aborted with error Data structure corruption
  22. 2019-02-27 17:29:32 0 [Note] InnoDB: Starting shutdown...
  23. 2019-02-27 17:29:32 0 [ERROR] Plugin 'InnoDB' init function returned error.
  24. 2019-02-27 17:29:32 0 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
  25. 2019-02-27 17:29:32 0 [Note] Plugin 'FEEDBACK' is disabled.
  26. 2019-02-27 17:29:32 0 [ERROR] Could not open mysql.plugin table. Some plugins may be not loaded
  27. 2019-02-27 17:29:32 0 [ERROR] Unknown/unsupported storage engine: InnoDB
  28. 2019-02-27 17:29:32 0 [ERROR] Aborting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement