Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. database:
  2. image: mysql:5.5
  3. ports:
  4. - "3306:3306"
  5. environment:
  6. - MYSQL_ROOT_PASSWORD=pass
  7. - MYSQL_DATABASE=db
  8. - MYSQL_USER=user
  9. - MYSQL_PASSWORD=pass
  10. volumes:
  11. - ./data:/var/lib/mysql
  12.  
  13. Creating mysql_database_1 ...
  14. Creating mysql_database_1 ... done
  15. Attaching to mysql_database_1
  16. database_1 | Initializing database
  17. database_1 | 180123 11:11:29 [Note] Ignoring --secure-file-priv value as server is running with --bootstrap.
  18. database_1 | 180123 11:11:29 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.5.59) starting as process 64 ...
  19. database_1 | 180123 11:11:30 [Note] Ignoring --secure-file-priv value as server is running with --bootstrap.
  20. database_1 | 180123 11:11:30 [Note] /usr/local/mysql/bin/mysqld (mysqld 5.5.59) starting as process 70 ...
  21. database_1 |
  22. database_1 | PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
  23. database_1 | To do so, start the server, then issue the following commands:
  24. database_1 |
  25. database_1 | /usr/local/mysql/bin/mysqladmin -u root password 'new-password'
  26. database_1 | /usr/local/mysql/bin/mysqladmin -u root -h password 'new-password'
  27. database_1 |
  28. database_1 | Alternatively you can run:
  29. database_1 | /usr/local/mysql/bin/mysql_secure_installation
  30. database_1 |
  31. database_1 | which will also give you the option of removing the test
  32. database_1 | databases and anonymous user created by default. This is
  33. database_1 | strongly recommended for production servers.
  34. database_1 |
  35. database_1 | See the manual for more instructions.
  36. database_1 |
  37. database_1 | Please report any problems at http://bugs.mysql.com/
  38. database_1 |
  39. database_1 | Database initialized
  40. database_1 | MySQL init process in progress...
  41. database_1 | 180123 11:11:31 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled
  42. database_1 | 180123 11:11:31 [Note] mysqld (mysqld 5.5.59) starting as process 80 ...
  43. database_1 | 180123 11:11:31 [Warning] Setting lower_case_table_names=2 because file system for /var/lib/mysql/ is case insensitive
  44. database_1 | 180123 11:11:31 [Note] Plugin 'FEDERATED' is disabled.
  45. database_1 | 180123 11:11:31 InnoDB: The InnoDB memory heap is disabled
  46. database_1 | 180123 11:11:31 InnoDB: Mutexes and rw_locks use GCC atomic builtins
  47. database_1 | 180123 11:11:31 InnoDB: Compressed tables use zlib 1.2.3
  48. database_1 | 180123 11:11:31 InnoDB: Using Linux native AIO
  49. database_1 | 180123 11:11:31 InnoDB: Initializing buffer pool, size = 128.0M
  50. database_1 | 180123 11:11:31 InnoDB: Completed initialization of buffer pool
  51. database_1 | InnoDB: The first specified data file ./ibdata1 did not exist:
  52. database_1 | InnoDB: a new database to be created!
  53. database_1 | 180123 11:11:31 InnoDB: Setting file ./ibdata1 size to 10 MB
  54. database_1 | InnoDB: Database physically writes the file full: wait...
  55. database_1 | 180123 11:11:31 InnoDB: Log file ./ib_logfile0 did not exist: new to be created
  56. database_1 | InnoDB: Setting log file ./ib_logfile0 size to 5 MB
  57. database_1 | InnoDB: Database physically writes the file full: wait...
  58. database_1 | 180123 11:11:31 InnoDB: Log file ./ib_logfile1 did not exist: new to be created
  59. database_1 | InnoDB: Setting log file ./ib_logfile1 size to 5 MB
  60. database_1 | InnoDB: Database physically writes the file full: wait...
  61. database_1 | 180123 11:11:31 InnoDB: Operating system error number 22 in a file operation.
  62. database_1 | InnoDB: Error number 22 means 'Invalid argument'.
  63. database_1 | InnoDB: Some operating system error numbers are described at
  64. database_1 | InnoDB: http://dev.mysql.com/doc/refman/5.5/en/operating-system-error-codes.html
  65. database_1 | InnoDB: File name ./ib_logfile0
  66. database_1 | InnoDB: File operation call: 'aio write'.
  67. database_1 | InnoDB: Cannot continue operation.
  68. database_1 | MySQL init process in progress...
Add Comment
Please, Sign In to add comment