以下の環境下で、MariaDB でPostFixAdminの設定をしているのですが、作成したDBの設定ファイルが見つかりません。
PC : Mac OS
Pallarels, Ubuntu
<実行したこと>
#mysql -u root -p CREATE DATABASE postfixadmin; GRANT ALL ON postfixadmin.* TO 'postfixadmin'@'localhost' IDENTIFIED BY '*****'; FLUSH PRIVILEGES;
ここで、データベースを確認しました。
MariaDB [(none)]> SHOW DATABASES;
<結果>
+--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | postfixadmin | +--------------------+ 4 rows in set (0.002 sec)
この後、PostfixAdmin各種設定の為に
/etc/dbconfig-common/postfixadmin.confの編集を実行しました。
# vim /etc/dbconfig-common/postfixadmin.conf
<結果>
下記ファイルのdbc_dbtypeをmysqliに変更したいのですが、何もない空白のファイルが開いてしまいます。
# dbc_dbtype: type of underlying database to use # this exists primarily to let dbconfig-common know what database # type to use when a package supports multiple database types. # don't change this value unless you know for certain that this # package supports multiple database types # dbc_dbtype='mysql'
別で下記も実行しましたが同様に空白のファイルでした。
# vim /etc/postfix/config.inc.php
dbc_dbtypeをmysqliに変更するファイルを開くにはどうしたら良いでしょうか。
あなたの回答
tips
プレビュー