GreatSQL社区

搜索

[讨论中] GreatSQL docker-compose启动报错

64 13 4 天前
2024-11-17T11:53:24.288407Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T11:53:24.288429Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T11:53:24.288551Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T11:53:24.290667Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T11:53:24.290820Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T11:53:24.290872Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T11:53:24.291021Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.


/var/lib/greatsql/目录在启动前确实是空的,但是docker-compose一启动就报错文件夹不为空,看了这个文件夹,一启动就会生成这些文件(下图),求助怎么解决



全部回复(13)
yejr 4 天前
请先贴上你的完整yaml配置文件,以及具体启动过程中的输出信息、日志
zyx 4 天前
yejr 发表于 2024-11-17 20:38
请先贴上你的完整yaml配置文件,以及具体启动过程中的输出信息、日志

docker-compose.yaml
version: '3'
services:
  greatsql:
    restart: always
    image: dptech/greatsql:8.0.32-26
    container_name: greatsql
    env_file:
      - ../../data/greatsql/conf/greatsql.env
    volumes:
      - ../../data/greatsql/log:/var/log/greatsql
      - ../../data/greatsql/db:/var/lib/greatsql
      - ../../data/greatsql/conf/my.cnf:/etc/my.cnf
      - ../../data/greatsql/sql:/opt/sql
      - ../../data/greatsql/init:/docker-entrypoint-initdb.d/
      - ../../install/script/db/dbscript:/dbscript
    network_mode: "host"
    tty: true
    logging:
      driver: "json-file"
      options:
        max-size: "50m"
    privileged: true
zyx 4 天前
yejr 发表于 2024-11-17 20:38
请先贴上你的完整yaml配置文件,以及具体启动过程中的输出信息、日志

my.cnf
[mysqld]
user=mysql
datadir=/var/lib/greatsql
skip-ssl
default-storage-engine=INNODB
default_authentication_plugin=caching_sha2_password
character-set-server=utf8mb4
collation-server=utf8mb4_general_ci
sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
explicit_defaults_for_timestamp=true
max_connections=65535
log_bin=greatsql_bin
expire_logs_days=7
log_output=file
log_error=/var/log/greatsql/error.log
slow_query_log=on
slow_query_log_file=/var/log/greatsql/slow.log
long_query_time=5
innodb_strict_mode=OFF
local_infile=ON
innodb_flush_log_at_trx_commit=2
sync_binlog=2000

#集群要求参数
#gtid_mode=ON
#binlog_transaction_dependency_tracking=WRITESET
#enforce_gtid_consistency=ON

[client]
default-character-set=utf8mb4
[mysql]
default-character-set=utf8mb4
local_infile=ON
zyx 4 天前
yejr 发表于 2024-11-17 20:38
请先贴上你的完整yaml配置文件,以及具体启动过程中的输出信息、日志

2024-11-17T11:53:24.288407Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T11:53:24.288429Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T11:53:24.288551Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T11:53:24.290667Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T11:53:24.290820Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T11:53:24.290872Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T11:53:24.291021Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T11:55:26.852652Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T11:55:26.852674Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T11:55:26.852792Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T11:55:26.854894Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T11:55:26.854921Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T11:55:26.854972Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T11:55:26.855117Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T11:57:29.391051Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T11:57:29.391078Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T11:57:29.391206Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T11:57:29.393350Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T11:57:29.393376Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T11:57:29.393424Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T11:57:29.393566Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T11:59:31.952149Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T11:59:31.952172Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T11:59:31.952301Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T11:59:31.954361Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T11:59:31.954388Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T11:59:31.954437Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T11:59:31.954580Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:01:34.511026Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:01:34.511051Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:01:34.511181Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:01:34.513579Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:01:34.513607Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:01:34.513661Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:01:34.513805Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:03:37.066648Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:03:37.066669Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:03:37.066792Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:03:37.068933Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:03:37.068961Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:03:37.069014Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:03:37.069179Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:05:39.732865Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:05:39.732887Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:05:39.733016Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 31
2024-11-17T12:05:39.735197Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:05:39.735223Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:05:39.735283Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:05:39.735427Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:07:42.275885Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:07:42.275907Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:07:42.276027Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 31
2024-11-17T12:07:42.278107Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:07:42.278138Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:07:42.278192Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:07:42.278352Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:09:44.825550Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:09:44.825573Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:09:44.825699Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:09:44.827785Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:09:44.827812Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:09:44.827872Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:09:44.828015Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:11:47.401805Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:11:47.401827Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:11:47.401977Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 31
2024-11-17T12:11:47.404224Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:11:47.404262Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:11:47.404330Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:11:47.404491Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:13:49.953972Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:13:49.953994Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:13:49.954114Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:13:49.956190Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:13:49.956217Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:13:49.956277Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:13:49.956423Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:15:52.497353Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:15:52.497374Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:15:52.497495Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:15:52.499656Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:15:52.499683Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:15:52.499741Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:15:52.499887Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:17:55.207738Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:17:55.207760Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:17:55.207887Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:17:55.209996Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:17:55.210024Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:17:55.210073Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:17:55.210219Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:19:57.752083Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:19:57.752106Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:19:57.752226Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:19:57.754417Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:19:57.754444Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:19:57.754496Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:19:57.754643Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:22:00.305439Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:22:00.305460Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:22:00.305582Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:22:00.307703Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:22:00.307730Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:22:00.307781Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:22:00.307934Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:24:02.842559Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:24:02.842581Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:24:02.842699Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:24:02.844752Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:24:02.844779Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:24:02.844834Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:24:02.844979Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:26:05.721882Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:26:05.721903Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:26:05.722021Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:26:05.724100Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:26:05.724126Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:26:05.724177Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:26:05.724327Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:28:08.270680Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:28:08.270702Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:28:08.270818Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:28:08.272883Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:28:08.272909Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:28:08.272960Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:28:08.273099Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:30:10.841673Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:30:10.841695Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:30:10.841815Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:30:10.844005Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:30:10.844033Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:30:10.844086Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:30:10.844245Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:32:13.467884Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:32:13.467913Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:32:13.468076Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:32:13.470294Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:32:13.470322Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:32:13.470385Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:32:13.470534Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:34:16.186828Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:34:16.186849Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:34:16.186970Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:34:16.189107Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:34:16.189136Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:34:16.189187Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:34:16.189369Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:36:18.748834Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:36:18.748855Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:36:18.748974Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:36:18.751135Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:36:18.751163Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:36:18.751213Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:36:18.751377Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:38:21.354365Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:38:21.354387Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:38:21.354505Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:38:21.356626Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:38:21.356652Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:38:21.356703Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:38:21.356855Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:40:24.878715Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:40:24.878737Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:40:24.878859Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:40:24.880961Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:40:24.880991Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:40:24.881049Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:40:24.881203Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:42:27.455537Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:42:27.455559Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:42:27.455684Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:42:27.457826Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:42:27.457854Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:42:27.457909Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:42:27.458064Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:44:29.997055Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:44:29.997077Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:44:29.997198Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:44:29.999371Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:44:29.999399Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:44:29.999450Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:44:29.999602Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:46:32.659490Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:46:32.659512Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:46:32.659644Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:46:32.661729Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:46:32.661765Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:46:32.661817Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:46:32.661969Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:48:35.190956Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:48:35.190983Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:48:35.191113Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:48:35.193167Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:48:35.193194Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:48:35.193269Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:48:35.193416Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:50:37.939553Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:50:37.939575Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:50:37.939697Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 29
2024-11-17T12:50:37.941813Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:50:37.941840Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:50:37.941891Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:50:37.942047Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:52:40.490898Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:52:40.490920Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:52:40.491042Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:52:40.493168Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:52:40.493198Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:52:40.493261Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:52:40.493422Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:54:43.046910Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:54:43.046932Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:54:43.047051Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:54:43.049138Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:54:43.049164Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:54:43.049217Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:54:43.049377Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:56:45.594301Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:56:45.594323Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:56:45.594452Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:56:45.596526Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:56:45.596553Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:56:45.596610Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:56:45.596752Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T12:58:48.142451Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T12:58:48.142472Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T12:58:48.142590Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T12:58:48.144700Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T12:58:48.144726Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T12:58:48.144777Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T12:58:48.144921Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:00:50.702980Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:00:50.703001Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:00:50.703130Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 31
2024-11-17T13:00:50.705212Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:00:50.705261Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:00:50.705312Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:00:50.705457Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:02:53.378770Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:02:53.378791Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:02:53.378925Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:02:53.381155Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:02:53.381185Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:02:53.381249Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:02:53.381399Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:04:55.939775Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:04:55.939799Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:04:55.939927Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:04:55.942038Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:04:55.942068Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:04:55.942132Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:04:55.942291Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:06:58.483062Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:06:58.483085Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:06:58.483204Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:06:58.485628Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:06:58.485657Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:06:58.485708Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:06:58.485855Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:09:01.030002Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:09:01.030025Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:09:01.030162Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:09:01.032270Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:09:01.032298Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:09:01.032351Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:09:01.032499Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:11:03.588842Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:11:03.588864Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:11:03.588985Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:11:03.591142Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:11:03.591171Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:11:03.591221Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:11:03.591377Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:13:06.500515Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:13:06.500536Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:13:06.500656Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:13:06.502722Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:13:06.502754Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:13:06.502807Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:13:06.502954Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:15:09.043290Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:15:09.043311Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:15:09.043440Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:15:09.045508Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:15:09.045534Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:15:09.045584Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:15:09.045734Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:17:11.686436Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:17:11.686458Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:17:11.686590Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:17:11.688765Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:17:11.688795Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:17:11.688846Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:17:11.688995Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:19:14.360463Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:19:14.360484Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:19:14.360600Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:19:14.362638Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:19:14.362664Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:19:14.362719Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:19:14.362857Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:21:16.951027Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:21:16.951048Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:21:16.951168Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:21:16.953283Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:21:16.953310Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:21:16.953363Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:21:16.953507Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:23:19.645227Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:23:19.645259Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:23:19.645382Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:23:19.647521Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:23:19.647549Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:23:19.647603Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:23:19.647749Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:25:22.190454Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:25:22.190476Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:25:22.190595Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:25:22.192667Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:25:22.192694Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:25:22.192744Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:25:22.192887Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:27:24.735095Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:27:24.735116Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:27:24.735247Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:27:24.737335Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:27:24.737362Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:27:24.737434Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:27:24.737580Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:29:27.291981Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:29:27.292003Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:29:27.292122Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:29:27.294274Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:29:27.294301Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:29:27.294351Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:29:27.294497Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:31:29.844644Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:31:29.844665Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:31:29.844779Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:31:29.846838Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:31:29.846864Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:31:29.846913Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:31:29.847049Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:33:32.498540Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:33:32.498562Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:33:32.498697Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:33:32.500752Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:33:32.500779Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:33:32.500830Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:33:32.500982Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:35:35.041520Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:35:35.041541Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:35:35.041662Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:35:35.043757Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:35:35.043785Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:35:35.043842Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:35:35.043990Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:37:37.580266Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:37:37.580289Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:37:37.580410Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:37:37.582515Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:37:37.582543Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:37:37.582592Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:37:37.582739Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:39:40.140723Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:39:40.140746Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:39:40.140864Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:39:40.143019Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:39:40.143046Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:39:40.143098Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:39:40.143258Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:41:42.707813Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:41:42.707835Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:41:42.707953Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:41:42.710024Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:41:42.710050Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:41:42.710098Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:41:42.710252Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:43:45.268162Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:43:45.268183Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:43:45.268325Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:43:45.270520Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:43:45.270548Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:43:45.270602Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:43:45.270756Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:45:47.851577Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:45:47.851599Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:45:47.851724Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 29
2024-11-17T13:45:47.853741Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:45:47.853771Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:45:47.853821Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:45:47.853972Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:47:50.444741Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:47:50.444764Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:47:50.444886Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:47:50.447166Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:47:50.447196Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:47:50.447258Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:47:50.447412Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:49:53.002846Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:49:53.002868Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:49:53.002995Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:49:53.005088Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:49:53.005115Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:49:53.005165Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:49:53.005318Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:51:55.562442Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:51:55.562464Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:51:55.562585Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:51:55.564750Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:51:55.564777Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:51:55.564835Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:51:55.564987Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:53:58.214128Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:53:58.214149Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:53:58.214279Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:53:58.216356Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:53:58.216383Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:53:58.216434Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:53:58.216580Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:56:00.756616Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:56:00.756638Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:56:00.756760Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 31
2024-11-17T13:56:00.758894Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:56:00.758926Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:56:00.758976Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:56:00.759128Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T13:58:03.421274Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T13:58:03.421296Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T13:58:03.421418Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T13:58:03.423531Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T13:58:03.423560Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T13:58:03.423611Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T13:58:03.423759Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:00:06.270621Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:00:06.270643Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:00:06.270763Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:00:06.272867Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:00:06.272894Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:00:06.272951Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:00:06.273098Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:02:08.828853Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:02:08.828875Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:02:08.829003Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:02:08.831109Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:02:08.831136Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:02:08.831186Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:02:08.831397Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:04:11.401455Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:04:11.401476Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:04:11.401597Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:04:11.403832Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:04:11.403861Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:04:11.403914Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:04:11.404060Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:06:14.044187Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:06:14.044212Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:06:14.044363Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:06:14.046509Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:06:14.046541Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:06:14.046592Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:06:14.046743Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:08:16.617978Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:08:16.617999Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:08:16.618122Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:08:16.620386Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:08:16.620414Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:08:16.620483Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:08:16.620634Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:10:19.302211Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:10:19.302249Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:10:19.302376Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:10:19.304466Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:10:19.304493Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:10:19.304545Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:10:19.304693Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:12:21.848454Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:12:21.848476Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:12:21.848600Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 29
2024-11-17T14:12:21.850683Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:12:21.850710Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:12:21.850760Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:12:21.850906Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:14:24.403305Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:14:24.403326Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:14:24.403447Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:14:24.405522Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:14:24.405550Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:14:24.405601Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:14:24.405750Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:16:26.975175Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:16:26.975196Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:16:26.975332Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:16:26.977509Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:16:26.977538Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:16:26.977591Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:16:26.977754Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:18:29.518361Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:18:29.518385Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:18:29.518531Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 29
2024-11-17T14:18:29.520868Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:18:29.520903Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:18:29.520953Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:18:29.521099Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:20:32.091696Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:20:32.091719Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:20:32.091840Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:20:32.094008Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:20:32.094035Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:20:32.094085Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:20:32.094230Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:22:34.650852Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:22:34.650874Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:22:34.650994Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:22:34.653112Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:22:34.653139Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:22:34.653198Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:22:34.653375Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:24:37.225394Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:24:37.225416Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:24:37.225550Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:24:37.227655Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:24:37.227691Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:24:37.227746Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:24:37.227893Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:26:39.775805Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:26:39.775828Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:26:39.775961Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:26:39.778273Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:26:39.778301Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:26:39.778352Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:26:39.778515Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:28:42.342670Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:28:42.342692Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:28:42.342813Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:28:42.344923Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:28:42.344951Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:28:42.345002Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:28:42.345152Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:30:44.931626Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:30:44.931648Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:30:44.931781Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:30:44.933903Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:30:44.933930Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:30:44.933987Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:30:44.934129Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:32:47.481941Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:32:47.481962Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:32:47.482081Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:32:47.484202Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:32:47.484228Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:32:47.484288Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:32:47.484434Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:34:50.117321Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:34:50.117342Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:34:50.117463Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:34:50.119532Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:34:50.119559Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:34:50.119612Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:34:50.119760Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:36:52.709662Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:36:52.709691Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:36:52.709844Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:36:52.712001Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:36:52.712027Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:36:52.712078Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:36:52.712224Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:38:55.258072Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:38:55.258093Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:38:55.258213Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:38:55.260280Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:38:55.260307Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:38:55.260366Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:38:55.260514Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:40:57.854717Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:40:57.854739Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:40:57.854859Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:40:57.856960Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:40:57.856988Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:40:57.857037Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:40:57.857181Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:43:00.871028Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:43:00.871050Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:43:00.871177Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:43:00.873288Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:43:00.873316Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:43:00.873367Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:43:00.873515Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:45:03.448783Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:45:03.448804Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:45:03.448920Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:45:03.451020Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:45:03.451047Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:45:03.451096Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:45:03.451272Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:47:06.192996Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:47:06.193019Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:47:06.193180Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:47:06.195427Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:47:06.195869Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:47:06.195932Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:47:06.196089Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:49:08.743525Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:49:08.743546Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:49:08.743675Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:49:08.745757Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:49:08.745783Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:49:08.745833Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:49:08.745979Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:51:11.305960Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:51:11.305981Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:51:11.306099Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:51:11.308298Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:51:11.308330Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:51:11.308386Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:51:11.308548Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:53:13.857220Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:53:13.857251Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:53:13.857368Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:53:13.859410Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:53:13.859435Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:53:13.859488Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:53:13.859627Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:55:16.448403Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:55:16.448425Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:55:16.448549Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:55:16.451173Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:55:16.451209Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:55:16.451307Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:55:16.451487Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:57:18.991123Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:57:18.991145Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:57:18.991276Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:57:18.993402Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:57:18.993430Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:57:18.993481Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:57:18.993627Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T14:59:21.528277Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T14:59:21.528300Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T14:59:21.528417Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T14:59:21.530519Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T14:59:21.530546Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T14:59:21.530598Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T14:59:21.530737Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T15:01:24.082143Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T15:01:24.082165Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T15:01:24.082294Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T15:01:24.084435Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T15:01:24.084470Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T15:01:24.084520Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T15:01:24.084666Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T15:03:26.636956Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T15:03:26.636977Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T15:03:26.637110Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T15:03:26.639171Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T15:03:26.639204Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T15:03:26.639273Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T15:03:26.639415Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T15:05:29.202860Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T15:05:29.202883Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T15:05:29.203026Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T15:05:29.205319Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T15:05:29.205348Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T15:05:29.205399Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T15:05:29.205549Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
2024-11-17T15:07:31.757723Z 0 [Warning] [MY-011068] [Server] The syntax '--ssl=off' is deprecated and will be removed in a future release. Please use --tls-version='' instead.
2024-11-17T15:07:31.757746Z 0 [Warning] [MY-011068] [Server] The syntax 'expire-logs-days' is deprecated and will be removed in a future release. Please use binlog_expire_logs_seconds instead.
2024-11-17T15:07:31.757868Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.32-26) initializing of server in progress as process 30
2024-11-17T15:07:31.759994Z 0 [ERROR] [MY-010457] [Server] --initialize specified but the data directory has files in it. Aborting.
2024-11-17T15:07:31.760021Z 0 [ERROR] [MY-013236] [Server] The designated data directory /var/lib/greatsql/ is unusable. You can remove all files that the server added to it.
2024-11-17T15:07:31.760071Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-11-17T15:07:31.760215Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.32-26)  GreatSQL (GPL), Release 26, Revision a68b3034c3d.
yejr 3 天前
zyx 发表于 2024-11-17 23:10
docker-compose.yaml
version: '3'
services:

这是您自己做的镜像吧,可能是挂载的文件目录权限设置不对导致初始化失败。

可以用我们提供的镜像 https://gitee.com/GreatSQL/GreatSQL-Docker/tree/master/GreatSQL

以及docker-compose配置文件 https://gitee.com/GreatSQL/Great ... tSQL/docker-compose
zyx 3 天前
yejr 发表于 2024-11-18 08:52
这是您自己做的镜像吧,可能是挂载的文件目录权限设置不对导致初始化失败。

可以用我们提供的镜像 https ...

不是自己做的,使用的阿里云的镜像
yejr 3 天前
zyx 发表于 2024-11-18 09:01
不是自己做的,使用的阿里云的镜像

这个不是我们提供的镜像,可以联系作者问问看。

我们提供的ACR镜像地址是 registry.cn-beijing.aliyuncs.com/greatsql/greatsql:8.0.32-26
zyx 3 天前
yejr 发表于 2024-11-18 09:48
这个不是我们提供的镜像,可以联系作者问问看。

我们提供的ACR镜像地址是 registry.cn-beijing.aliyuncs ...

我用的就是这个,只不过我改了个名字
yejr 3 天前
zyx 发表于 2024-11-18 09:59
我用的就是这个,只不过我改了个名字

先试试我们提供的docker compose yaml配置模板。

在GreatSQL镜像中,my.cnf是动态生成的,我看你是自己外部挂载的,有可能是这个原因影响的。比如默认的 datadir 是指向 /data/GreatSQL 而不是 /var/lib/greatsql,这就需要确保在容器中有权限读写这个目录。
12下一页
zyx

2

主题

0

博客

13

贡献

新手上路

Rank: 1

积分
23

合作电话:010-64087828

社区邮箱:greatsql@greatdb.com

社区公众号
社区小助手
QQ群
GMT+8, 2024-11-21 17:42 , Processed in 0.027405 second(s), 22 queries , Redis On.
快速回复 返回顶部 返回列表