MySQL 8.4 : インストール2025/01/31 |
MySQL をインストールして、データベースサーバーを構築します。 |
|
[1] | MySQL をインストールして起動します。 |
[root@www ~]#
[root@www ~]# dnf -y install mysql-server systemctl enable --now mysqld
|
[2] | Firewalld を有効にしている 且つ リモートホストからも MySQL を利用する場合はサービスの許可が必要です。MySQL は [3306/TCP] を使用します。 |
[root@www ~]# firewall-cmd --add-service=mysql success [root@www ~]# firewall-cmd --runtime-to-permanent success |
[3] | MySQL の動作確認です。 MySQL 8 では、匿名ユーザー、root のリモートログイン、テストデータベース はデフォルトで無効となっているため、[mysql_secure_installation] の実行は特に必要ではありません。 |
[root@www ~]# mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.4.2 Source distribution Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # root ユーザーのデフォルト認証方式は [auth_socket] mysql> select user,host,plugin from mysql.user; +------------------+-----------+-----------------------+ | user | host | plugin | +------------------+-----------+-----------------------+ | mysql.infoschema | localhost | caching_sha2_password | | mysql.session | localhost | caching_sha2_password | | mysql.sys | localhost | caching_sha2_password | | root | localhost | caching_sha2_password | +------------------+-----------+-----------------------+ 4 rows in set (0.00 sec) # デフォルトの文字セット mysql> show variables like "chara%"; +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8mb4 | | character_set_connection | utf8mb4 | | character_set_database | utf8mb4 | | character_set_filesystem | binary | | character_set_results | utf8mb4 | | character_set_server | utf8mb4 | | character_set_system | utf8mb3 | | character_sets_dir | /usr/share/mysql/charsets/ | +--------------------------+----------------------------+ 8 rows in set (0.00 sec) # データベース一覧 mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec) # [mysql_secure_installation] で実行されていた # パスワード品質チェックを有効にする場合は以下を実行 # * 無効化する場合は [uninstall component ***] mysql> install component 'file://component_validate_password'; Query OK, 0 rows affected (0.01 sec) mysql> show variables like 'validate_password%'; +-------------------------------------------------+--------+ | Variable_name | Value | +-------------------------------------------------+--------+ | validate_password.changed_characters_percentage | 0 | | validate_password.check_user_name | ON | | validate_password.dictionary_file | | | validate_password.length | 8 | | validate_password.mixed_case_count | 1 | | validate_password.number_count | 1 | | validate_password.policy | MEDIUM | | validate_password.special_char_count | 1 | +-------------------------------------------------+--------+ 8 rows in set (0.00 sec) # * チェックポリシーのパラメーターを変更する場合は # [/etc/my.cnf.d/mysql-server.cnf] の [mysqld] セクションで設定 # ex. validate_password.policy=LOW # 動作確認として テストデータベース作成 mysql> create database test_database; Query OK, 1 row affected (0.11 sec) # テストデータベースにテストテーブル作成 mysql> create table test_database.test_table (id int, name varchar(50), address varchar(50), primary key (id)); Query OK, 0 rows affected (0.42 sec) # テストテーブルにデータ投入 mysql> insert into test_database.test_table(id, name, address) values("001", "CentOS", "Hiroshima"); Query OK, 1 row affected (0.04 sec) # テストテーブル表示 mysql> select * from test_database.test_table; +----+--------+-----------+ | id | name | address | +----+--------+-----------+ | 1 | CentOS | Hiroshima | +----+--------+-----------+ 1 row in set (0.00 sec) # テストデータベース削除 mysql> drop database test_database; Query OK, 1 row affected (0.27 sec) mysql> exit Bye |
Sponsored Link |
|