由于证书错误,无法为fabric-ca服务器设置mysql数据库

问题描述 投票:0回答:1

我正在尝试通过以下链接使用mysql数据库设置Hyperledger fabric-ca:http://fabric-ca.readthedocs.io/en/latest/users-guide.html

按照链接中的内容,我尝试使用mysql作为DB来设置fabric-ca-server,并在fabric-ca-server-config.yaml中为相同的名称指定以下配置

db:
  type: mysql
  datasource: root:rootpw@tcp(localhost:3306)/ca?parseTime=true&tls=custom
  tls:
      enabled: true
      certfiles:
        - server-cert.pem
      client:
        certfile: client-cert.pem
        keyfile: client-key.pem

我已经使用docker容器通过以下方式启动mysql数据库:

docker run --name=mysql --env="MYSQL_ROOT_PASSWORD=mypassword" -p 3306:3306 -p 33060:33060 mysql

在我的容器启动后,将生成这些日志:

[System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.17) starting as process 1
[Warning] [MY-010068] [Server] CA certificate ca.pem is self signed.
[Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory.
[System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.17'  socket: '/var/run/mysqld/mysqld.sock'  port: 3306  MySQL Community Server - GPL.
[System] [MY-011323] [Server] X Plugin ready for connections. Socket: '/var/run/mysqld/mysqlx.sock' bind-address: '::' port: 33060

并且当我启动fabric-ca-server时,将产生这些日志:

[INFO] Configuration file location: /home/trinayan/Documents/biltinetwork/newca/fabric-ca-server-config.yaml
[INFO] Starting server in home directory: /home/trinayan/Documents/biltinetwork/newca
[WARNING] Unknown provider type: ; metrics disabled
[INFO] Server Version: 1.4.2
[INFO] Server Levels: &{Identity:2 Affiliation:1 Certificate:1 Credential:1 RAInfo:1 Nonce:1}
[WARNING] &{69 The specified CA certificate file /home/trinayan/Documents/biltinetwork/newca/ca-cert.pem does not exist}
[INFO] generating key: &{A:ecdsa S:256}
[INFO] encoded CSR
[INFO] signed certificate with serial number 646347233835345802692423971159804543235939577965
[INFO] The CA key and certificate were generated for CA 
[INFO] The key was stored by BCCSP provider 'SW'
[INFO] The certificate is at: /home/trinayan/Documents/biltinetwork/newca/ca-cert.pem
[ERROR] Error occurred initializing database: Failed to connect to MySQL database: x509: certificate is valid for MySQL_Server_8.0.17_Auto_Generated_Server_Certificate, not localhost
[INFO] Home directory for default CA: /home/trinayan/Documents/biltinetwork/newca
[INFO] Operation Server Listening on [::]:36189
[INFO] Listening on http://0.0.0.0:7054

我不知道为什么会出现此错误:

[ERROR] Error occurred initializing database: Failed to connect to MySQL database: x509: certificate is valid for MySQL_Server_8.0.17_Auto_Generated_Server_Certificate, not localhost

因为这与ssl证书有关,所以任何人都可以帮助我。

mysql ssl-certificate hyperledger-fabric hyperledger hyperledger-fabric-ca
1个回答
0
投票

由于错误,我假设您正在尝试通过TLS连接到MySQL。看起来MySQL自动生成了具有通用名或SAN为MySQL_Server_8.0.17_Auto_Generated_Server_Certificate的服务器证书。您可能在配置中尝试连接到与localhost不匹配的MySQL_Server_8.0.17_Auto_Generated_Server_Certificate

所以您有几个选择:

  • 跟随https://dev.mysql.com/doc/refman/8.0/en/creating-ssl-rsa-files-using-mysql.html并使用带有公共名称或SAN设置为localhost]的openssl生成证书。

  • 在运行CA和MySQL的主机服务器上创建一个主机条目,该条目将“ MySQL_Server_8.0.17_Auto_Generated_Server_Certificate”映射到127.0.0l,并在fabric-ca-server配置文件中将“ localhost”替换为“ MySQL_Server_8.0.17_Auto_Generated_Server_Certificate” 。

  • 不要使用TLS并查看情况是否正常

  • 我会选择第一个选项。

© www.soinside.com 2019 - 2024. All rights reserved.