この記事では、Centos7 mysql での MariaDB の再起動に関する関連情報を主に紹介します。記事内の紹介は非常に詳細であり、必要な方は以下を参照してください。
はじめに
MariaDB データベース管理システムは MySQL のブランチであり、主にオープン ソース コミュニティによって保守され、GPL に基づいてライセンスされています。このブランチを開発した理由の 1 つは、Oracle が MySQL を買収した後、ソースとしての MySQL を閉鎖する潜在的なリスクがあったため、コミュニティはこのリスクを回避するためにブランチ アプローチを採用したことです。 [3]MariaDB は、API やコマンドラインを含めて MySQL と完全な互換性を持ち、MySQL を簡単に置き換えることを目指しています。ストレージ エンジンに関しては、XtraDB (Aria という名前) は、バージョン 10.0.9 から MySQL の InnoDB を置き換えるために使用されます# yum install mysql -y # mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111) 试着去启动mysql服务,仍然不行 # systemctl start mysql Failed to issue method call: Unit mysql.service failed to load: No such file or directory. # systemctl start mysql.service Failed to issue method call: Unit mysql.service failed to load: No such file or directory # systemctl enable mysql.service Failed to issue method call: Access denied
正しい手順は以下で説明されています
# yum install mariadb-server -y systemctl stop mariadb.service # systemctl start mariadb.service # systemctl enable mariadb.service # mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 10 Server version: 5.5.44-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]>それを完了してください!
mysql root パスワードの設定方法えー
概要
以上がCentos7 で MySQL が MariaDB を再起動する詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。