MySQL 8.0 : インストール2024/09/03 |
MySQL をインストールして、データベースサーバーを構築します。 |
|
[1] | MySQL をインストールして起動します。 |
root@dlp:~ #
root@dlp:~ # pkg install -y mysql80-server service mysql-server enable mysql enabled in /etc/rc.conf root@dlp:~ # service mysql-server start Starting mysql. |
[2] | MySQL の初期確認です。 MySQL 8 では、匿名ユーザー、root のリモートログイン、テストデータベース はデフォルトで無効となっているため、[mysql_secure_installation] の実行は特に必要ではありません。 |
root@dlp:~ # mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.35 Source distribution Copyright (c) 2000, 2023, 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] root@localhost [(none)]> 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) # デフォルトの文字セット root@localhost [(none)]> 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/local/share/mysql/charsets/ | +--------------------------+----------------------------------+ 8 rows in set (0.00 sec) # データベース一覧 root@localhost [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 4 rows in set (0.00 sec) # [mysql_secure_installation] で実行されていた # パスワード品質チェックを有効にする場合は以下を実行 # * 無効化する場合は [uninstall component ***] root@localhost [(none)]> install component 'file://component_validate_password'; Query OK, 0 rows affected (0.01 sec) root@localhost [(none)]> 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) # * チェックポリシーのパラメーターを変更する場合は # [/usr/local/etc/mysql/my.cnf] の [mysqld] セクションで設定 # ex. validate_password.policy=LOW # 動作確認として テストデータベース作成 root@localhost [(none)]> create database test_database; Query OK, 1 row affected (0.11 sec) # テストデータベースにテストテーブル作成 root@localhost [(none)]> 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) # テストテーブルにデータ投入 root@localhost [(none)]> insert into test_database.test_table(id, name, address) values("001", "FreeBSD", "Hiroshima"); Query OK, 1 row affected (0.04 sec) # テストテーブル表示 root@localhost [(none)]> select * from test_database.test_table; +----+---------+-----------+ | id | name | address | +----+---------+-----------+ | 1 | FreeBSD | Hiroshima | +----+---------+-----------+ 1 row in set (0.00 sec) # テストデータベース削除 root@localhost [(none)]> drop database test_database; Query OK, 1 row affected (0.27 sec) root@localhost [(none)]> exit Bye |
Sponsored Link |