首页 > 数据库 >mysql8+seaweedfs-csi-driver

mysql8+seaweedfs-csi-driver

时间:2024-07-19 15:42:48浏览次数:14  
标签:07 mysql8 driver seaweedfs 28 2024 mysql 19T07 MY

 

mysql8使用seaweedfs-storage 启动异常如下:

mysql 07:28:20.10
mysql 07:28:20.11 Welcome to the Bitnami mysql container
mysql 07:28:20.11 Subscribe to project updates by watching https://github.com/bitnami/containers
mysql 07:28:20.12 Submit issues and feature requests at https://github.com/bitnami/containers/issues
mysql 07:28:20.12
mysql 07:28:20.12 INFO  ==> ** Starting MySQL setup **
mysql 07:28:20.16 INFO  ==> Validating settings in MYSQL_*/MARIADB_* env vars
mysql 07:28:20.17 INFO  ==> Initializing mysql database
mysql 07:28:20.20 WARN  ==> The mysql configuration file '/opt/bitnami/mysql/conf/my.cnf' is not writable. Configurations based on environment variables will not be applied for this file.
mysql 07:28:20.67 INFO  ==> Installing database
2024-07-19T07:28:20.716760Z 0 [Warning] [MY-010918] [Server] 'default_authentication_plugin' is deprecated and will be removed in a future release. Please use authentication_policy instead.
2024-07-19T07:28:20.716788Z 0 [System] [MY-013169] [Server] /opt/bitnami/mysql/bin/mysqld (mysqld 8.0.33) initializing of server in progress as process 29
2024-07-19T07:28:20.718190Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
2024-07-19T07:28:20.718201Z 0 [Warning] [MY-013244] [Server] --collation-server: 'utf8mb3_general_ci' is a collation of the deprecated character set UTF8MB3. Please consider using UTF8MB4 with an appropriate collation instead.
2024-07-19T07:28:20.786883Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started.
2024-07-19T07:28:22.975389Z 1 [ERROR] [MY-012592] [InnoDB] Operating system error number 17 in a file operation.
2024-07-19T07:28:22.975485Z 1 [ERROR] [MY-012596] [InnoDB] Error number 17 means 'File exists'
2024-07-19T07:28:22.975542Z 1 [ERROR] [MY-012126] [InnoDB] Cannot create file './#innodb_temp/temp_2.ibt'
2024-07-19T07:28:22.975584Z 1 [ERROR] [MY-012127] [InnoDB] The file './#innodb_temp/temp_2.ibt' already exists though the corresponding table did not exist. Have you moved InnoDB .ibd files around without using the SQL commands DISCARD TABLESPACE and IMPORT TABLESPACE, or did mysqld crash in the middle of CREATE TABLE? You can resolve the problem by removing the file './#innodb_temp/temp_2.ibt' under the 'datadir' of MySQL.
2024-07-19T07:28:22.975617Z 1 [ERROR] [MY-012929] [InnoDB] InnoDB Database creation was aborted with error Tablespace already exists. You may need to delete the ibdata1 file before trying to start up again.
2024-07-19T07:28:23.359994Z 0 [ERROR] [MY-010020] [Server] Data Dictionary initialization failed.
2024-07-19T07:28:23.360075Z 0 [ERROR] [MY-013236] [Server] The designated data directory /bitnami/mysql/data/ is unusable. You can remove all files that the server added to it.
2024-07-19T07:28:23.360097Z 0 [ERROR] [MY-010119] [Server] Aborting
2024-07-19T07:28:23.361548Z 0 [System] [MY-010910] [Server] /opt/bitnami/mysql/bin/mysqld: Shutdown complete (mysqld 8.0.33)  Source distribution.

 

标签:07,mysql8,driver,seaweedfs,28,2024,mysql,19T07,MY
From: https://www.cnblogs.com/sandyyeh/p/18311584

相关文章

  • mysql8在CentOS8上安装实践
    一、下载https://dev.mysql.com/downloads/mysql/历史版本:https://downloads.mysql.com/archives/community/二、解压tar-zxvf/opt/software/mysql-8.0.33-linux-glibc2.28-x86_64.tar.gz-C/usr/local修改mysql目录名称mv/usr/local/mysql-8.0.33-linux-glibc2......
  • CentOS9中MySQL8数据库备份--增量备份方案
    1.关于备份:MySQL中有完全备份、增量备份和差异备份三种常见的备份策略,这次使用增量备份定义:增量备份仅备份自上一次备份(无论是完全备份还是增量备份)以来发生变化的数据。特点:依赖于上一次备份,仅备份变化的部分,因此备份文件较小,但恢复时需要结合之前的备份。优点:备份文件......
  • MySQL版本的相关问题:com.mysql.cj.jdbc.Driver和com.mysql.jdbc.Driver
    原文链接:https://www.cnblogs.com/daemonFlY/p/9820541.html1.在使用mysql时,控制台日志报错如下:Loadingclass`com.mysql.jdbc.Driver'.Thisisdeprecated.Thenewdriverclassis`com.mysql.cj.jdbc.Driver'.ThedriverisautomaticallyregisteredviatheSPIand......
  • 报错\corelibrary\think\cache\driver\File.php
    这个错误通常发生在尝试使用 unserialize() 函数反序列化一个存储的缓存数据时,但提供的缓存数据无法被正确解析。在 \core\library\think\cache\driver\File.php 文件的第117行左右,框架尝试从文件中读取缓存数据并反序列化它。以下是一些可能的解决方案:检查缓存文件内容:首......
  • Mysql8.4参考手册走读(四)
    第19章复制MySQL复制支持从一个MySQL数据库服务器(称为source)复制到一个或多个MySQL数据库服务器(称为副本)。默认情况下,复制是异步的,副本不需要永久连接才能接收来自源的更新。根据配置,您可以复制所有数据库、选定的数据库,甚至是数据库中的选定表。MySQL复制的优点包括:......
  • Structure of Linux Kernel Device Driver(Part I)
    StructureofLinuxKernelDeviceDriverref.https://www.youtube.com/watch?v=XoYkHUnmpQo&list=LL&index=1&t=272sDeviceDriversDef.:设备驱动(DeviceDrivers),实际上就是硬件设备对应的抽象,用户能够通过这样的一个抽象与对应的硬件进行交互设备驱动与固件的区别:设备驱......
  • java 连接 oracle数据库时报错 Oracle JDBC驱动未找到! No suitable driver found for
    在用IDEA编写java连接Oracle时,报错:OracleJDBC驱动未找到!可这部分之前测试是好用。想来想去。哦,我把这个项目代码换过路径,问题就出在这。需要重新引用下  ojdbc6.jar架包 下面是java连接oracle的部分代码ClassNotFoundException可以捕获OracleJDBC驱动未找到的异......
  • MySQL8.0.33 主主复制高可用部署
    一、服务器规划1.1服务器详情主机名IP配置备注MySQLMasterVIP10.0.0.10虚拟IP跳转MySQL连接地址MySQLMaster0110.0.0.112H4GMySQLMaster0210.0.0.122H4G1.2修改主机名##修改各主机的主机名如:10.0.0.11服务器[root@localhost~]#hostnamectlset-hostnamemysqlmas......
  • MySQL8.0 新特性函数索引
    MySQL8.0中的函数索引(Function-BasedIndex)是一种高级索引特性,它允许数据库管理员或开发者对表中的列执行表达式计算后的结果进行索引,而不是直接对列值或列的前缀值进行索引。这种索引技术可以显著提高查询性能,特别是在需要对列值进行复杂计算或转换的查询场景中。MySQL8......
  • SeaweedFS + TiKV 部署保姆级教程
    在使用JuiceFS时,我们选择了SeaweedFS作为对象存储,以及TiKV作为元数据存储,目前在SeaweedFS上已经存储了近1.5PB的数据。关于SeaweedFS和TiKV配置的参考资料不多,本文将为社区各位用户提供我们的部署实践,并提供详细的命令示例,希望能给社区各位用户一些参考。此外,在文章......