タイトル | : WordPressセットアップでエラーが出ます |
記事No | : 7061 |
投稿日 | : 2024/06/16(Sun) 22:21 |
投稿者 | : Sudo |
WordPressセットアップで以下のようなエラーが出て先に進めない状況です。
データベースを選択できません データベースサーバーに接続することはできましたが (これはユーザー名とパスワードには問題がないということです)、 データベースは選択できませんでした。
本当に存在していますか ? ユーザー wordpress にはデータベース を使用できる権限がありますか ? 一部のシステムでは username_ のようにデータベースの接頭辞にユーザー名がつけられています。これが問題になっている可能性はありませんか ? データベースのセットアップ方法が分からない場合はホスティングサービスに連絡してください。それでもダメならWordPress サポートフォーラムでヘルプを見つけられるかもしれません。
———- [ec2-user@ip-172-31-39-137 html]$ mysql -u wordpress -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 14 Server version: 8.4.0 MySQL Community Server - GPL
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.
mysql> use wordpress; Database changed mysql> select database(); +------------+ | database() | +------------+ | wordpress | +------------+ 1 row in set (0.00 sec)
mysql> create table a ( a char(1)); Query OK, 0 rows affected (0.02 sec)
mysql> drop table a; Query OK, 0 rows affected (0.02 sec)
mysql> exit Bye [ec2-user@ip-172-31-39-137 html]$
|