smartcomputing123

sail_up

Jan 19th, 2024
1,321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 17.53 KB | Source Code | 0 0
  1. user@MSI:~/example-app$ ./vendor/bin/sail up
  2. [+] Building 0.0s (0/0)                                                                                  docker:default
  3. [+] Running 10/9
  4.  ✔ Network example-app_sail               Created                                                                  0.1s
  5.  ✔ Volume "example-app_sail-mysql"        Created                                                                  0.0s
  6.  ✔ Volume "example-app_sail-redis"        Created                                                                  0.0s
  7.  ✔ Volume "example-app_sail-meilisearch"  Created                                                                  0.0s
  8.  ✔ Container example-app-meilisearch-1    Created                                                                  0.1s
  9.  ✔ Container example-app-redis-1          Created                                                                  0.1s
  10.  ✔ Container example-app-selenium-1       Created                                                                  0.1s
  11.  ✔ Container example-app-mailpit-1        Created                                                                  0.1s
  12.  ✔ Container example-app-mysql-1          Created                                                                  0.1s
  13.  ✔ Container example-app-laravel.test-1   Created                                                                  0.0s
  14. Attaching to example-app-laravel.test-1, example-app-mailpit-1, example-app-meilisearch-1, example-app-mysql-1, example-app-redis-1, example-app-selenium-1
  15. example-app-selenium-1      | 2024-01-17 05:01:19,942 INFO Included extra file "/etc/supervisor/conf.d/selenium.conf" during parsing
  16. example-app-selenium-1      | 2024-01-17 05:01:19,947 INFO RPC interface 'supervisor' initialized
  17. example-app-selenium-1      | 2024-01-17 05:01:19,948 CRIT Server 'unix_http_server' running without any HTTP authentication checking
  18. example-app-selenium-1      | 2024-01-17 05:01:19,948 INFO supervisord started with pid 8
  19. example-app-mailpit-1       | INFO[2024/01/17 05:01:19] [smtpd] starting on [::]:1025
  20. example-app-mailpit-1       | INFO[2024/01/17 05:01:19] [http] starting on [::]:8025
  21. example-app-mailpit-1       | INFO[2024/01/17 05:01:19] [http] accessible via http://localhost:8025/
  22. example-app-redis-1         | 1:C 17 Jan 2024 05:01:20.376 # WARNING Memory overcommit must be enabled! Without it, a background save or replication may fail under low memory condition. Being disabled, it can also cause failures without low memory condition, see https://github.com/jemalloc/jemalloc/issues/1328. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
  23. example-app-redis-1         | 1:C 17 Jan 2024 05:01:20.376 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
  24. example-app-redis-1         | 1:C 17 Jan 2024 05:01:20.376 * Redis version=7.2.4, bits=64, commit=00000000, modified=0, pid=1, just started
  25. example-app-redis-1         | 1:C 17 Jan 2024 05:01:20.376 # Warning: no config file specified, using the default config. In order to specify a config file use redis-server /path/to/redis.conf
  26. example-app-redis-1         | 1:M 17 Jan 2024 05:01:20.377 * monotonic clock: POSIX clock_gettime
  27. example-app-redis-1         | 1:M 17 Jan 2024 05:01:20.377 * Running mode=standalone, port=6379.
  28. example-app-redis-1         | 1:M 17 Jan 2024 05:01:20.378 * Server initialized
  29. example-app-redis-1         | 1:M 17 Jan 2024 05:01:20.378 * Ready to accept connections tcp
  30. example-app-mysql-1         | [Entrypoint] MySQL Docker Image 8.0.32-1.2.11-server
  31. example-app-mysql-1         | [Entrypoint] Initializing database
  32. example-app-mysql-1         | 2024-01-17T05:01:20.561452Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead.
  33. example-app-mysql-1         | 2024-01-17T05:01:20.561511Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32) initializing of server in progress as process 17
  34. example-app-mysql-1         | 2024-01-17T05:01:20.568037Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
  35. example-app-selenium-1      | 2024-01-17 05:01:20,951 INFO spawned: 'xvfb' with pid 9
  36. example-app-selenium-1      | 2024-01-17 05:01:20,953 INFO spawned: 'vnc' with pid 10
  37. example-app-selenium-1      | 2024-01-17 05:01:20,954 INFO spawned: 'novnc' with pid 11
  38. example-app-selenium-1      | 2024-01-17 05:01:20,956 INFO spawned: 'selenium-standalone' with pid 12
  39. example-app-selenium-1      | Setting up SE_NODE_GRID_URL...
  40. example-app-selenium-1      | 2024-01-17 05:01:20,961 INFO success: xvfb entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
  41. example-app-selenium-1      | 2024-01-17 05:01:20,961 INFO success: vnc entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
  42. example-app-selenium-1      | 2024-01-17 05:01:20,961 INFO success: novnc entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
  43. example-app-selenium-1      | 2024-01-17 05:01:20,961 INFO success: selenium-standalone entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
  44. example-app-selenium-1      | Selenium Grid Standalone configuration:
  45. example-app-selenium-1      | [network]
  46. example-app-selenium-1      | relax-checks = true
  47. example-app-selenium-1      |
  48. example-app-selenium-1      | [node]
  49. example-app-selenium-1      | session-timeout = "300"
  50. example-app-selenium-1      | override-max-sessions = false
  51. example-app-selenium-1      | detect-drivers = false
  52. example-app-selenium-1      | drain-after-session-count = 0
  53. example-app-selenium-1      | max-sessions = 1
  54. example-app-selenium-1      |
  55. example-app-selenium-1      | [[node.driver-configuration]]
  56. example-app-selenium-1      | display-name = "chrome"
  57. example-app-selenium-1      | stereotype = '{"browserName": "chrome", "browserVersion": "120.0", "platformName": "Linux", "goog:chromeOptions": {"binary": "/usr/bin/google-chrome"}}'
  58. example-app-selenium-1      | max-sessions = 1
  59. example-app-selenium-1      |
  60. example-app-selenium-1      | Starting Selenium Grid Standalone...
  61. example-app-selenium-1      | Tracing is disabled
  62. example-app-laravel.test-1  | 2024-01-17 05:01:21,337 INFO Set uid to user 0 succeeded
  63. example-app-laravel.test-1  | 2024-01-17 05:01:21,339 INFO supervisord started with pid 1
  64. example-app-selenium-1      | 05:01:21.488 INFO [LoggingOptions.configureLogEncoding] - Using the system default encoding
  65. example-app-selenium-1      | 05:01:21.497 INFO [OpenTelemetryTracer.createTracer] - Using OpenTelemetry for tracing
  66. example-app-mysql-1         | 2024-01-17T05:01:21.568051Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
  67. example-app-meilisearch-1   |
  68. example-app-meilisearch-1   | 888b     d888          d8b 888 d8b                                            888
  69. example-app-meilisearch-1   | 8888b   d8888          Y8P 888 Y8P                                            888
  70. example-app-meilisearch-1   | 88888b.d88888              888                                                888
  71. example-app-meilisearch-1   | 888Y88888P888  .d88b.  888 888 888 .d8888b   .d88b.   8888b.  888d888 .d8888b 88888b.
  72. example-app-meilisearch-1   | 888 Y888P 888 d8P  Y8b 888 888 888 88K      d8P  Y8b     "88b 888P"  d88P"    888 "88b
  73. example-app-meilisearch-1   | 888  Y8P  888 88888888 888 888 888 "Y8888b. 88888888 .d888888 888    888      888  888
  74. example-app-meilisearch-1   | 888   "   888 Y8b.     888 888 888      X88 Y8b.     888  888 888    Y88b.    888  888
  75. example-app-meilisearch-1   | 888       888  "Y8888  888 888 888  88888P'  "Y8888  "Y888888 888     "Y8888P 888  888
  76. example-app-meilisearch-1   |
  77. example-app-meilisearch-1   | Config file path: "none"
  78. example-app-meilisearch-1   | Database path:            "./data.ms"
  79. example-app-meilisearch-1   | Server listening on:      "http://0.0.0.0:7700"
  80. example-app-meilisearch-1   | Environment:              "development"
  81. example-app-meilisearch-1   | Commit SHA:               "a6fa0b97ecb5ac75ee0e180a956e4a066eda5f39"
  82. example-app-meilisearch-1   | Commit date:              "2024-01-15T09:37:31+00:00"
  83. example-app-meilisearch-1   | Package version:  "1.6.0"
  84. example-app-meilisearch-1   |
  85. example-app-meilisearch-1   | Thank you for using Meilisearch!
  86. example-app-meilisearch-1   |
  87. example-app-meilisearch-1   |
  88. example-app-meilisearch-1   | We collect anonymized analytics to improve our product and your experience. To learn more, including how to turn off analytics, visit our dedicated documentation page: https://www.meilisearch.com/docs/learn/what_is_meilisearch/telemetry
  89. example-app-meilisearch-1   |
  90. example-app-meilisearch-1   | Anonymous telemetry:      "Enabled"
  91. example-app-meilisearch-1   | Instance UID:             "e8bd85a7-82cb-4884-890e-843888405127"
  92. example-app-meilisearch-1   |
  93. example-app-meilisearch-1   |
  94. example-app-meilisearch-1   |
  95. example-app-meilisearch-1   |  No master key was found. The server will accept unidentified requests.
  96. example-app-meilisearch-1   |
  97. example-app-meilisearch-1   |  A master key of at least 16 bytes will be required when switching to a production environment.
  98. example-app-meilisearch-1   |
  99. example-app-meilisearch-1   |
  100. example-app-meilisearch-1   | We generated a new secure master key for you (you can safely use this token):
  101. example-app-meilisearch-1   |
  102. example-app-meilisearch-1   | >> --master-key YrGhkiXfe3vHBeDazaxriT8DW-3EoTlyI3irKvAXlYw <<
  103. example-app-meilisearch-1   |
  104. example-app-meilisearch-1   | Restart Meilisearch with the argument above to use this new and secure master key.
  105. example-app-meilisearch-1   |
  106. example-app-meilisearch-1   | Check out Meilisearch Cloud!      https://www.meilisearch.com/cloud?utm_campaign=oss&utm_source=engine&utm_medium=cli
  107. example-app-meilisearch-1   | Documentation:                    https://www.meilisearch.com/docs
  108. example-app-meilisearch-1   | Source code:                      https://github.com/meilisearch/meilisearch
  109. example-app-meilisearch-1   | Discord:                  https://discord.meilisearch.com
  110. example-app-meilisearch-1   |
  111. example-app-meilisearch-1   | [2024-01-17T05:01:21Z INFO  actix_server::builder] starting 10 workers
  112. example-app-meilisearch-1   | [2024-01-17T05:01:21Z INFO  actix_server::server] Actix runtime found; starting in Actix runtime
  113. example-app-selenium-1      | 05:01:22.263 INFO [NodeOptions.getSessionFactories] - Detected 20 available processors
  114. example-app-selenium-1      | 05:01:22.292 INFO [NodeOptions.report] - Adding chrome for {"browserName": "chrome","browserVersion": "120.0","goog:chromeOptions": {"binary": "\u002fusr\u002fbin\u002fgoogle-chrome"},"platformName": "linux","se:noVncPort": 7900,"se:vncEnabled": true} 1 times
  115. example-app-selenium-1      | 05:01:22.305 INFO [Node.<init>] - Binding additional locator mechanisms: relative
  116. example-app-selenium-1      | 05:01:22.318 INFO [GridModel.setAvailability] - Switching Node 8fbda06e-e606-43c7-aac2-d0aa4e50b744 (uri: http://172.18.0.2:4444) from DOWN to UP
  117. example-app-selenium-1      | 05:01:22.319 INFO [LocalDistributor.add] - Added node 8fbda06e-e606-43c7-aac2-d0aa4e50b744 at http://172.18.0.2:4444. Health check every 120s
  118. example-app-laravel.test-1  | 2024-01-17 05:01:22,342 INFO spawned: 'php' with pid 16
  119. example-app-selenium-1      | 05:01:22.566 INFO [Standalone.execute] - Started Selenium Standalone 4.16.1 (revision 9b4c83354e): http://172.18.0.2:4444
  120. example-app-laravel.test-1  | 2024-01-17 05:01:23,344 INFO success: php entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
  121. example-app-mysql-1         | 2024-01-17T05:01:23.373898Z 6 [Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
  122. example-app-laravel.test-1  |
  123. example-app-laravel.test-1  |    INFO  Server running on [http://0.0.0.0:80].
  124. example-app-laravel.test-1  |
  125. example-app-laravel.test-1  |   Press Ctrl+C to stop the server
  126. example-app-laravel.test-1  |
  127. example-app-mysql-1         | [Entrypoint] Database initialized
  128. example-app-mysql-1         | 2024-01-17T05:01:27.174660Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead.
  129. example-app-mysql-1         | 2024-01-17T05:01:27.176031Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.32) starting as process 60
  130. example-app-mysql-1         | 2024-01-17T05:01:27.216550Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
  131. example-app-mysql-1         | 2024-01-17T05:01:27.627325Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
  132. example-app-mysql-1         | 2024-01-17T05:01:27.886488Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
  133. example-app-mysql-1         | 2024-01-17T05:01:27.886522Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
  134. example-app-mysql-1         | 2024-01-17T05:01:27.901016Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: /var/run/mysqld/mysqlx.sock
  135. example-app-mysql-1         | 2024-01-17T05:01:27.903794Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.32'  socket: '/var/lib/mysql/mysql.sock'  port: 0  MySQL Community Server - GPL.
  136. example-app-mysql-1         | Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it.
  137. example-app-mysql-1         | Warning: Unable to load '/usr/share/zoneinfo/leapseconds' as time zone. Skipping it.
  138. example-app-mysql-1         | Warning: Unable to load '/usr/share/zoneinfo/tzdata.zi' as time zone. Skipping it.
  139. example-app-mysql-1         | Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it.
  140. example-app-mysql-1         | Warning: Unable to load '/usr/share/zoneinfo/zone1970.tab' as time zone. Skipping it.
  141. example-app-mysql-1         |
  142. example-app-mysql-1         | [Entrypoint] running /docker-entrypoint-initdb.d/10-create-testing-database.sh
  143. example-app-mysql-1         | mysql: [Warning] Using a password on the command line interface can be insecure.
  144. example-app-mysql-1         |
  145. example-app-mysql-1         | 2024-01-17T05:01:29.182746Z 15 [System] [MY-013172] [Server] Received SHUTDOWN from user root. Shutting down mysqld (Version: 8.0.32).
  146. example-app-mysql-1         | 2024-01-17T05:01:30.843522Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32)  MySQL Community Server - GPL.
  147. example-app-mysql-1         | [Entrypoint] Server shut down
  148. example-app-mysql-1         |
  149. example-app-mysql-1         | [Entrypoint] MySQL init process done. Ready for start up.
  150. example-app-mysql-1         |
  151. example-app-mysql-1         | [Entrypoint] Starting MySQL 8.0.32-1.2.11-server
  152. example-app-mysql-1         | 2024-01-17T05:01:31.399090Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead.
  153. example-app-mysql-1         | 2024-01-17T05:01:31.400063Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.32) starting as process 1
  154. example-app-mysql-1         | 2024-01-17T05:01:31.405284Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
  155. example-app-mysql-1         | 2024-01-17T05:01:31.519698Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended.
  156. example-app-mysql-1         | 2024-01-17T05:01:31.629835Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
  157. example-app-mysql-1         | 2024-01-17T05:01:31.629869Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel.
  158. example-app-mysql-1         | 2024-01-17T05:01:31.643235Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock
  159. example-app-mysql-1         | 2024-01-17T05:01:31.643349Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.32'  socket: '/var/lib/mysql/mysql.sock'  port: 3306  MySQL Community Server - GPL.
  160. example-app-meilisearch-1   | [2024-01-17T05:01:50Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000448
  161. example-app-laravel.test-1  |   2024-01-17 05:01:55 ................................................... ~ 0s
  162. example-app-laravel.test-1  |   2024-01-17 05:01:55 /favicon.ico ...................................... ~ 0s
  163. example-app-meilisearch-1   | [2024-01-17T05:02:20Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000119
  164. example-app-meilisearch-1   | [2024-01-17T05:02:50Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000098
  165. example-app-meilisearch-1   | [2024-01-17T05:03:20Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000169
  166. example-app-meilisearch-1   | [2024-01-17T05:03:50Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000105
  167. example-app-meilisearch-1   | [2024-01-17T05:04:20Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000127
  168. example-app-meilisearch-1   | [2024-01-17T05:04:50Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000157
  169. example-app-meilisearch-1   | [2024-01-17T05:05:20Z INFO  actix_web::middleware::logger] 127.0.0.1 "GET /health HTTP/1.1" 200 22 "-" "Wget" 0.000106
  170.  
Tags: php laravel
Advertisement
Add Comment
Please, Sign In to add comment