J'ai rencontré l'erreur suivante lors de l'installation de mysql 5.6 (serveur de communauté mysql 5.6.19) sur un serveur de test (centos linux version 7.2.1511) En effet, la base de données par défaut de centos 7 n'est plus mysql, mais mariadb. La bibliothèque lib lors de l'installation de MySQL est en conflit avec la bibliothèque et le package mariadb, comme indiqué dans les détails suivants (un grand nombre de journaux sont omis)
[root@azrlnx06 tmp]# rpm -ivh mysql-server-advanced-5.6.20-1.rhel5.x86_64.rpm preparing... ################################# [100%] file /usr/share/mysql/czech/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/danish/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/dutch/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/english/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/estonian/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/french/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/german/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/greek/errmsg.sys from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 ........................................................................................................................................................................ file /usr/share/mysql/charsets/macroman.xml from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64 file /usr/share/mysql/charsets/swe7.xml from install of mysql-server-advanced-5.6.20-1.rhel5.x86_64 conflicts with file from package mariadb-libs-1:5.5.50-1.el7_2.x86_64
Vérifiez s'il existe des composants liés à mariadb, puis supprimez les composants liés à mariadb. Comme indiqué ci-dessous :
[root@azrlnx06 mysql]# more /etc/redhat-release centos linux release 7.2.1511 (core) [root@azrlnx06 mysql]# rpm -qa |grep mariadb mariadb-libs-5.5.50-1.el7_2.x86_64 [root@azrlnx06 mysql]# rpm -e mariadb-libs-5.5.50-1.el7_2.x86_64 error: failed dependencies: libmysqlclient.so.18()(64bit) is needed by (installed) postfix-2:2.10.1-6.el7.x86_64 libmysqlclient.so.18(libmysqlclient_18)(64bit) is needed by (installed) postfix-2:2.10.1-6.el7.x86_64 [root@azrlnx06 mysql]# rpm -e mariadb-libs-5.5.50-1.el7_2.x86_64 --nodeps
Bien sûr, une erreur de dépendance a été rencontrée lors de la suppression du composant mariadb-libs-5.5.50-1.el7_2.x86_64, il est donc préférable d'utiliser yum pour supprimer mariadb-. composants associés. Ensuite, lors de la réinstallation de MySQL, j'ai rencontré l'erreur « Erreur : mysql-server-advanced-5.6.20-1.rhel5.x86_64 : échec de l'installation », comme indiqué ci-dessous :
[root@azrlnx06 mysql]# cd /tmp [root@azrlnx06 tmp]# ls hsperfdata_azrlnx06 jirasetup mysql-server-advanced-5.6.20-1.rhel5.x86_64.rpm [root@azrlnx06 tmp]# rpm -ivh mysql-server-advanced-5.6.20-1.rhel5.x86_64.rpm preparing... ################################# [100%] updating / installing... 1:mysql-server-advanced-5.6.20-1.rh################################# [100%] error: unpacking of archive failed on file /usr/bin/innochecksum;582535c8: cpio: read failed - no such file or directory error: mysql-server-advanced-5.6.20-1.rhel5.x86_64: install failed [root@azrlnx06 tmp]# clip_image001
était un peu déconcerté par cette erreur après la désinstallation de MySQL. Composants liés à MySQL, j'ai réinstallé MySQL et constaté que les modules liés à Perl étaient manquants. Comme indiqué ci-dessous :
[root@azrlnx06 jirasetup]# rpm -ivh mysql-server-advanced-5.6.20-1.rhel5.x86_64.rpm preparing... ################################# [100%] updating / installing... 1:mysql-server-advanced-5.6.20-1.rh################################# [100%] fatal error: please install the following perl modules before executing /usr/bin/mysql_install_db: data::dumper [root@azrlnx06 jirasetup]#
Utiliser yum pour installer les packages liés à Perl Perl-devel (Remarque : lors de l'installation de MySQL ici, aucune information détaillée relative à l'installation n'est affichée, car les modules liés à Perl ne sont pas installés et ils sont manquants ici. Après installation de perl-data-dumper)
[root@azrlnx06 jirasetup]# yum install -y perl perl-devel
Après avoir installé les composants liés à Perl, réinstallez MySQL, comme indiqué ci-dessous, mais aucune information détaillée relative à l'installation n'est affichée (car perl-data-dumper n'est pas installé), démarrez. Rapport d'erreur mysql
root@azrlnx06 jirasetup]# rpm -ivh mysql-server-advanced-5.6.20-1.rhel5.x86_64.rpm preparing... ################################# [100%] updating / installing... 1:mysql-server-advanced-5.6.20-1.rh################################# [100%] [root@azrlnx06 jirasetup]# rpm -ivh mysql-client-advanced-5.6.20-1.rhel5.x86_64.rpm preparing... ################################# [100%] updating / installing... 1:mysql-client-advanced-5.6.20-1.rh################################# [100%] [root@azrlnx06 ~]# service mysql start starting mysql............. error! the server quit without updating pid file (/var/lib/mysql/azrlnx06.pid). [root@azrlnx06 ~]#
Recherchez le journal des erreurs mysql, puis vérifiez le journal des erreurs /var/lib/mysql/azrlnx06.err et trouvez le message d'erreur suivant :
[root@azrlnx06 mysql]# find / -name *.err /var/lib/mysql/azrlnx06.err /var/log/azure/microsoft.ostcextensions.linuxdiagnostic/2.3.9011/mdsd.err /var/log/azure/microsoft.ostcextensions.linuxdiagnostic/2.3.9013/mdsd.err /var/log/mdsd/mdsd.err [root@azrlnx06 mysql]# more /var/lib/mysql/azrlnx06.err 161111 03:28:25 mysqld_safe starting mysqld daemon with databases from /var/lib/mysql 2016-11-11 03:28:25 0 [warning] timestamp with implicit default value is deprecated. please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2016-11-11 03:28:25 2144 [note] plugin 'federated' is disabled. /usr/sbin/mysqld: table 'mysql.plugin' doesn't exist 2016-11-11 03:28:25 2144 [error] can't open the mysql.plugin table. please run mysql_upgrade to create it. 2016-11-11 03:28:25 2144 [note] innodb: using atomics to ref count buffer pool pages 2016-11-11 03:28:25 2144 [note] innodb: the innodb memory heap is disabled 2016-11-11 03:28:25 2144 [note] innodb: mutexes and rw_locks use gcc atomic builtins 2016-11-11 03:28:25 2144 [note] innodb: memory barrier is not used 2016-11-11 03:28:25 2144 [note] innodb: compressed tables use zlib 1.2.3 2016-11-11 03:28:25 2144 [note] innodb: using linux native aio 2016-11-11 03:28:25 2144 [note] innodb: using cpu crc32 instructions 2016-11-11 03:28:25 2144 [note] innodb: initializing buffer pool, size = 128.0m 2016-11-11 03:28:25 2144 [note] innodb: completed initialization of buffer pool 2016-11-11 03:28:25 2144 [note] innodb: the first specified data file ./ibdata1 did not exist: a new database to be created! 2016-11-11 03:28:25 2144 [note] innodb: setting file ./ibdata1 size to 12 mb 2016-11-11 03:28:25 2144 [note] innodb: database physically writes the file full: wait... 2016-11-11 03:28:26 2144 [note] innodb: setting log file ./ib_logfile101 size to 48 mb 2016-11-11 03:28:31 2144 [note] innodb: setting log file ./ib_logfile1 size to 48 mb 2016-11-11 03:28:37 2144 [note] innodb: renaming log file ./ib_logfile101 to ./ib_logfile0 2016-11-11 03:28:37 2144 [warning] innodb: new log files created, lsn=45781 2016-11-11 03:28:37 2144 [note] innodb: doublewrite buffer not found: creating new 2016-11-11 03:28:37 2144 [note] innodb: doublewrite buffer created 2016-11-11 03:28:37 2144 [note] innodb: 128 rollback segment(s) are active. 2016-11-11 03:28:37 2144 [warning] innodb: creating foreign key constraint system tables. 2016-11-11 03:28:37 2144 [note] innodb: foreign key constraint system tables created 2016-11-11 03:28:37 2144 [note] innodb: creating tablespace and datafile system tables. 2016-11-11 03:28:38 2144 [note] innodb: tablespace and datafile system tables created. 2016-11-11 03:28:38 2144 [note] innodb: waiting for purge to start 2016-11-11 03:28:38 2144 [note] innodb: 5.6.20 started; log sequence number 0 2016-11-11 03:28:38 2144 [warning] no existing uuid has been found, so we assume that this is the first time that this server has been started. generating a new uuid: ef3b0cd5-a7be-11e6-98b3-000d3a8062fe. 2016-11-11 03:28:38 2144 [note] rsa private key file not found: /var/lib/mysql//private_key.pem. some authentication plugins will not work. 2016-11-11 03:28:38 2144 [note] rsa public key file not found: /var/lib/mysql//public_key.pem. some authentication plugins will not work. 2016-11-11 03:28:38 2144 [note] server hostname (bind-address): '*'; port: 3306 2016-11-11 03:28:38 2144 [note] ipv6 is available. 2016-11-11 03:28:38 2144 [note] - '::' resolves to '::'; 2016-11-11 03:28:38 2144 [note] server socket created on ip: '::'. 2016-11-11 03:28:38 2144 [error] fatal error: can't open and lock privilege tables: table 'mysql.user' doesn't exist 161111 03:28:38 mysqld_safe mysqld from pid file /var/lib/mysql/azrlnx06.pid ended clip_image002
Recherché des informations pertinentes, il devrait s'agir du Le module perl-data-dumper n'est pas installé, ce qui entraîne l'échec de l'initialisation de la base de données pendant le processus d'installation. Ainsi, lors du démarrage du service mysql, les tables système pertinentes n'ont pas pu être trouvées. Pour plus de détails, veuillez vous référer au document officiel mysql-server rpm n'installe pas perl-data-dumper en tant que dépendance
description :
mysql-server nécessite perl-data-dumper pour fonctionner. dumper n'est pas répertorié par le RPM du serveur mysql en tant que dépendance, donc si un serveur Linux n'a pas installé perl-data-dumper, install-mysql-db échouera et en raison de l'absence de la base de données initiale, le service mysql pourrait. ne démarre pas.
comment répéter :
sur un serveur Linux, assurez-vous qu'aucun dumper de données Perl n'est installé. Installez mysql-server en utilisant yum, il devrait y avoir un message d'erreur indiquant que la base de données n'a pas pu être créée.
correctif suggéré :
ajouter perl-data-dumper en tant que dépendance du package rpm
Solution :
1 : Installez le module perl-data-dumper.
[root@azrlnx06 mysql]# yum install -y perl-data-dumper
2 : Initialisez la base de données
[root@azrlnx06 mysql]# sudo mysql_install_db --user=mysql --basedir=/usr/ --ldata=/var/lib/mysql/ clip_image003
[root@azrlnx06 mysql]# service mysql start starting mysql. success! [root@azrlnx06 mysql]# /usr//bin/mysqladmin -u root password 'qwe!23' warning: using a password on the command line interface can be insecure.
Bien sûr, vous pouvez également désinstaller MySQL puis le réinstaller, et vous verrez les informations détaillées affichées pendant le processus d'installation.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!