ja:documentation:07_technical_annexes:19_mysql_8

差分

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

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
次のリビジョン両方とも次のリビジョン
ja:documentation:07_technical_annexes:19_mysql_8 [2023/01/31 05:44] – [CentOS 7] junichija:documentation:07_technical_annexes:19_mysql_8 [2023/11/09 07:49] – [CentOS 7] junichi
行 313: 行 313:
 </code> </code>
  
-  * Stop the Apache web server:+  * Start the Apache web server:
  
   * Apache Web サーバを起動します。   * Apache Web サーバを起動します。
行 436: 行 436:
  
 </code> </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 60%>
 +
 +See also "[[:en:documentation:05_big_environments:08_optimization#check_mycnf_settings|Optimization and troubleshooting]]" for checking the ''my.cnf''  file.
 +
 +</WRAP>
 +
 +<WRAP center round tip 60%>
 +
 +''my.cnf'' ファイルのチェックには、"[[:ja:documentation:05_big_environments:08_optimization#mycnf_設定の確認|最適化と問題解決]]" も参照してください。
 +
 +</WRAP>
  
   * Start the MySQL service:   * Start the MySQL service:
行 485: 行 506:
  
 <code> <code>
-mysql -u root -p pandora +mysql -u root -p pandora 
-> drop database pandora; + 
-create database pandora; +</code> 
-use pandora; + 
-source /var/www/html/pandora_console/pandoradb.sql; +<code> 
-source backup_pandora.sql;+drop database pandora; 
 +create database pandora; 
 +use pandora; 
 +source /var/www/html/pandora_console/pandoradb.sql; 
 +source backup_pandora.sql;
  
 </code> </code>