ja:documentation:pandorafms:technical_annexes:19_mysql_8

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
ja:documentation:pandorafms:technical_annexes:19_mysql_8 [2024/12/28 07:37] – [CentOS 7] junichija:documentation:pandorafms:technical_annexes:19_mysql_8 [2025/02/20 06:50] (現在) – [Rocky Linux 8/AlmaLinux 8/RHEL 8] junichi
行 41: 行 41:
   * データバックアップ手順を実行します。詳細は、[[:ja:documentation:07_technical_annexes:07_backup_and_restore_procedures|バックアップおよびリストア手順]] を参照してください。   * データバックアップ手順を実行します。詳細は、[[:ja:documentation:07_technical_annexes:07_backup_and_restore_procedures|バックアップおよびリストア手順]] を参照してください。
  
 +<wrap #ks2 />
  
 ===== Rocky Linux 8/AlmaLinux 8/RHEL 8 ===== ===== Rocky Linux 8/AlmaLinux 8/RHEL 8 =====
行 49: 行 50:
  
 <code bash> <code bash>
-/etc/init.d/pandora_server stop +systemctl stop pandora_server 
-/etc/init.d/pandora_agent_daemon stop+systemctl stop pandora_agent_daemon
  
 </code> </code>
行 242: 行 243:
  
 </code> </code>
 +
 +  * The necessary permissions (//grants//) must be added again; //if you are not logged in// to ''mysql'' as user **root** (replace ''<\_password\_>'' with the corresponding password) run:
 +
 +  * 必要な権限 (//grants//) を再度追加する必要があります。ユーザ **root** として ''mysql'' にログインしていない場合は (''<\_password\_>'' を対応するパスワードに置き換えます)、次を実行します。
 +
 +<code bash>
 +mysql -uroot -p < password >
 +
 +</code>
 +
 +  * **Once logged in as root execute the following commands**:
 +  * Deactivate the password validation plugin (**optional**).
 +
 +  * **root としてログインしたら、次のコマンドを実行します**:
 +  * パスワード検証プラグインを無効にします (**オプション**)。
 +
 +<code sql>
 +UNINSTALL COMPONENT 'file://component_validate_password';
 +
 +</code>
 +
 +  * Create the login user **if it does not exist**:
 +
 +  * **ログインユーザが存在しない場合は** 作成します。
 +
 +<code sql>
 +CREATE USER "<DBUSER>"@'%' IDENTIFIED BY "<DBPASS>";
 +
 +</code>
 +
 +<WRAP center round tip 90%>
 +
 +If you want to restrict the IP address of connection to the database, you must change the ''%'' to the IP address of the connection source.
 +
 +</WRAP>
 +
 +<WRAP center round tip 90%>
 +
 +データベースへの接続の IP アドレスを制限する場合は、''%'' を接続元の IP アドレスに変更する必要があります。
 +
 +</WRAP>
 +
 +  * Assign the native password for ''mysql'':
 +
 +  * ''mysql'' のネイティブ パスワードを割り当てます。
 +
 +<code sql>
 +ALTER USER "<DBUSER>"@'%' IDENTIFIED WITH mysql_native_password BY "<DBPASS>";
 +
 +</code>
 +
 +  * Grant grants on Pandora FMS database (''pandora''):
 +
 +  * Pandora FMS データベース (''pandora'') に対する権限を付与します。
 +
 +<code sql>
 +GRANT ALL PRIVILEGES ON pandora.* TO "<DBUSER>"@'%';
 +
 +</code>
 +
 +  * Save changes and exit:
 +
 +  * 変更を保存して終了します。
 +
 +<code sql>
 +flush privileges;
 +exit
 +
 +</code>
 +
 +<WRAP center round info 90%>
 +
 +To change the authentication type in MySQL 8 refer to the topic «[[:en:documentation:pandorafms:technical_annexes:46_mysql_sha|Configuring SHA authentication method in MySQL]]».
 +
 +</WRAP>
 +
 +<WRAP center round info 90%>
 +
 +MySQL 8 で認証タイプを変更するには、トピック「[[:ja:documentation:pandorafms:technical_annexes:46_mysql_sha|MySQL での SHA 認証方法の設定]]」を参照してください。
 +
 +</WRAP>
 +
 +Once you have finished working with the database, perform the following steps:
 +
 +データベースでの作業が完了したら、次の手順を実行します。
  
   * Start the PFMS server and the PFMS Software Agent:   * Start the PFMS server and the PFMS Software Agent:
行 248: 行 334:
  
 <code bash> <code bash>
-/etc/init.d/pandora_server start +systemctl start pandora_server 
-/etc/init.d/pandora_agent_daemon start+systemctl start pandora_agent_daemon
  
 </code> </code>
行 259: 行 345:
 <code bash> <code bash>
 systemctl start httpd.service systemctl start httpd.service
 +
 +</code>
 +
 +[[ja:documentation:start|Pandora FMS ドキュメント一覧に戻る]]
 +
 +===== (OBSOLETE) CentOS 7 =====
 +
 +<WRAP center round info 90%>
 +
 +CentOS 7 will soon reach its end-of-life (**EOL**). //This documentation is retained for historical purposes.//
 +
 +</WRAP>
 +
 +<WRAP center round info 90%>
 +
 +CentOS 7 はサポート終了 (**EOL**) となっています。//このドキュメントは過去の情報保持の目的で置いています。//
 +
 +</WRAP>
 +
 +  * Stop the PFMS server and the PFMS Software Agent:
 +
 +  * Pandora FMS サーバと Pandora FMS ソフトウエアエージェントを停止します。
 +
 +<code bash>
 +/etc/init.d/pandora_server stop
 +/etc/init.d/pandora_agent_daemon stop
 +
 +</code>
 +
 +  * Stop the Apache web server:
 +
 +  * Apache Web サーバを停止します。
 +
 +<code bash>
 +systemctl stop httpd.service
  
 </code> </code>
行 267: 行 388:
  
 <code bash> <code bash>
-/etc/init.d/httpd start+/etc/init.d/httpd stop
  
 </code> </code>
  
-[[ja:documentation:start|Pandora FMS ドキュメント一覧に戻る]]+  * Make a special database backup that is compatible with MySQL 8:
  
 +  * MySQL 8 に互換性がある特別なデータベースバックアップを作成します。
 +
 +<code bash>
 +mysqldump -u root -p pandora \
 +  --skip-add-drop-table \
 +  --complete-insert \
 +  --no-create-info> backup_pandora.sql
 +
 +</code>
 +
 +  * Make a backup as it is done in MySQL 5.7 (an additional insurance if you have to go back to this version):
 +
 +  * MySQL 5.7 での通常のバックアップを作成します。(このバージョンに戻す場合の追加の保険です)
 +
 +<code bash>
 +mysqldump -u root -p pandora> backup_pandora_5.7.sql
 +
 +</code>
 +
 +  * Back up the MySQL configuration file (''my.cnf''):
 +
 +  * MySQL 設定ファイル(''my.cnf'')をバックアップします。
 +
 +<code bash>
 +cp /etc/my.cnf /tmp/my.cnf.BACK
 +
 +</code>
 +
 +  * Delete the Percona 5 repositories:
 +
 +  * Percona 5 リポジトリを削除します。
 +
 +<code bash>
 +rpm -qa | grep Percona-Server | xargs rpm -e --nodeps
 +
 +</code>
 +
 +  * Install the Percona 8 repositories:
 +
 +  * Percona 8 リポジトリをインストールします。
 +
 +<code bash>
 +yum install https://repo.percona.com/yum/percona-release-latest.noarch.rpm -y
 +
 +</code>
 +
 +  * Enable the repositories from the previous step:
 +
 +  * 前述のリポジトリを有効化します。
 +
 +<code bash>
 +percona-release setup ps80
 +
 +</code>
 +
 +  * Install Percona 8
 +
 +  * Percona 8 をインストールします。
 +
 +<code bash>
 +yum install percona-server-server
 +
 +</code>
 +
 +  * Restore the file ''my.cnf'':
 +
 +  * ''my.cnf'' ファイルをリストアします。
 +
 +<code bash>
 +mv /tmp/my.cnf.BACK /etc/my.cnf
 +
 +</code>
 +
 +  * Modify the ''my.cnf''  file to dispense with ''query_cache_*'':
 +
 +  * ''query_cache_*'' を無効化するように ''my.cnf'' ファイルを修正します。
 +
 +<code bash>
 +sed -i -e "s/^query_cache_type.*/#query_cache_type/g" /etc/my.cnf
 +sed -i -e "s/^query_cache_size.*/#query_cache_size/g" /etc/my.cnf
 +sed -i -e "s/^query_cache_min_res_unit.*/#query_cache_min_res_unit/g" /etc/my.cnf
 +sed -i -e "s/^query_cache_limit.*/#query_cache_limit/g" /etc/my.cnf
 +
 +</code>
 +
 +  * If **you do not have an HA environment**, disable the binary logs with the following command in the ''[mysqld]''  section:
 +
 +  * **HA 環境が無い場合**は、''[[mysqld]]'' セクションの次のコマンドでバイナリログを無効化します。
 +
 +<code>
 +skip-log-bin
 +
 +</code>
 +
 +<WRAP center round tip 90%>
 +
 +See also "[[en:documentation:pandorafms:complex_environments_and_optimization:08_optimization##ks1_8_1|Optimization and troubleshooting]]" for checking the ''my.cnf'' file.
 +
 +</WRAP>
 +
 +<WRAP center round tip 90%>
 +
 +''my.cnf'' ファイルのチェックには、"[[:ja:documentation:pandorafms:complex_environments_and_optimization:08_optimization#mycnf_設定の確認|最適化と問題解決]]" も参照してください。
 +
 +</WRAP>
 +
 +  * Start the MySQL service:
 +
 +  * MySQL サービスを起動します。
 +
 +<code bash>
 +systemctl start mysql
 +
 +</code>
 +
 +or:
 +
 +または、
 +
 +<code bash>
 +service mysqld start
 +
 +</code>
 +
 +  * Verify the version installed with:
 +
 +  * インストールされたバージョンを確認します。
 +
 +<code bash>
 +mysql --version
 +
 +</code>
 +
 +You will get an answer similar to the following:
 +
 +次のような出力を確認できます。
 +
 +<code>
 +mysql  Ver 8.0.28-19 for Linux on x86_64 (Percona Server (GPL), Release 19, Revision 31e88966cd3)
 +
 +</code>
 +
 +  * Now use MySQL's own command line and:
 +      * Delete the ''pandora''  database.
 +      * Create a new ''pandora''  database.
 +      * Open the ''pandora''  database and import the schema found in the PFMS Web Console.
 +      * Import the data that special MySQL 8 compatible backup.
 +
 +  * MySQL のコマンドラインで、
 +      * ''pandora'' データベースを削除します。
 +      * 新たな ''pandora'' データベースを作成します。
 +      * ''pandora'' データベースを開き、Pandora FMS Web コンソールにあるスキーマをインポートします。
 +      * データをインポートします。
 +      * 特別な MySQL 8 互換バックアップをインポートします。
 +
 +<code bash>
 +mysql -u root -p pandora
 +
 +</code>
 +
 +<code sql>
 +drop database pandora;
 +create database pandora;
 +use pandora;
 +source /var/www/html/pandora_console/pandoradb.sql;
 +source backup_pandora.sql;
 +
 +</code>
 +
 +  * The necessary permissions (grants) must be added again; //if you are not logged in//  to ''mysql''  as **root**  user (replace with the corresponding password) run:
 +
 +  * 必要なアクセス許可を再度追加する必要があります。 ''mysql'' に//ログインしていない場合// は、 **root** ユーザ(パスワードは対応するものを利用)として以下を実行します:
 +
 +<code bash>
 +mysql -u root -p < password >
 +
 +</code>
 +
 +  * **Once logged in as root execute the following commands:**
 +  * Deactivate the password validation plugin (optional).
 +
 +  * **root としてログインしてら次のコマンドを実行します。**
 +  * パスワード検証プラグインを無効にします(オプション)。
 +
 +<code>
 +UNINSTALL COMPONENT 'file://component_validate_password';
 +
 +</code>
 +
 +  * Create the login user if it does not exist:
 +
 +  * ログインユーザが存在しない場合は作成します。
 +
 +<code sql>
 +CREATE USER "<DBUSER>"@'%' IDENTIFIED BY "<DBPASS>";
 +
 +</code>
 +
 +<WRAP center round tip 90%>
 +
 +If you want to restrict the IP address of connection to the database, you must change the ''%''  to the IP address of the connection source.
 +
 +</WRAP>
 +
 +<WRAP center round tip 90%>
 +
 +データベースへの接続 IP アドレスを制限したい場合は、''%'' を接続元の IP アドレスに変更する必要があります。
 +
 +</WRAP>
 +
 +  * Assign the native password for ''mysql'':
 +
 +  * ''mysql'' にネイティブパスワードを設定します。
 +
 +<code sql>
 +ALTER USER "<DBUSER>"@'%' IDENTIFIED WITH mysql_native_password BY "<DBPASS>";
 +
 +</code>
 +
 +  * Grant grants on Pandora FMS database (''pandora''):
 +
 +  * Pandora FMS データベース(''pandora'')に対して grant を行います。
 +
 +<codes sql>
 +GRANT ALL PRIVILEGES ON pandora.* TO "<DBUSER>"@'%';
 +
 +</code>
 +
 +  * Save the changes and exit:
 +
 +  * 変更を保存して抜けます。
 +
 +<code sql>
 +flush privileges;
 +exit
 +
 +</code>
 +
 +Once you have finished working with the database, perform the following steps:
 +
 +データベースの対応が完了したら、次のステップを実行します。
 +
 +  * Start the PFMS server and the PFMS Software Agent:
 +
 +  * Pandora FMS サーバおよび Pandora FMS ソフトウエアエージェントを起動します。
 +
 +<code bash>
 +/etc/init.d/pandora_server start
 +/etc/init.d/pandora_agent_daemon start
 +
 +</code>
 +
 +  * Start the Apache web server:
 +
 +  * Apache Web サーバを起動します。
 +
 +<code bash>
 +systemctl start httpd.service
 +
 +</code>
 +
 +Either:
 +
 +または、
 +
 +<code bash>
 +/etc/init.d/httpd start
 +
 +</code>
  
  • ja/documentation/pandorafms/technical_annexes/19_mysql_8.1735371439.txt.gz
  • 最終更新: 2024/12/28 07:37
  • by junichi