web-dev-qa-db-ja.com

VagrantとMariaDB(プロビジョニング)

MariaDBをインストールするプロビジョニングファイルを作成しようとしていますが、失敗し続けます。

プロビジョニングは次のようになります。

Sudo apt-get install -y software-properties-common
Sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
Sudo add-apt-repository 'deb http://ftp.cc.uoc.gr/mirrors/mariadb/repo/10.0/ubuntu trusty main'

apt-get update -y
apt-get install -y mariadb-server

そして、私が得ているエラーは次のとおりです。

==> default: Preparing to unpack .../mariadb-server-10.0_10.0.17+maria-1~trusty_AMD64.deb ...
==> default: (B)00
[BLANK SPACES HERE]
==> default: Package configuration??????????????????????????????????????????????????????????????? Configuring mariadb-server-10.0 ?????????????????????????????????????????????????????????????????? While not mandatory, it is highly recommended that you set a password   ?????? for the MariaDB administrative "root" user.???????????? If this field is left blank, the password will not be changed.???????????? New password for the MariaDB "root" user:???????????? _______________________________________________________________________ ????????????<Ok>???
==> default: Failed to open terminal.debconf: whiptail output the above errors, giving up!
==> default: dpkg: error processing archive /var/cache/apt/archives/mariadb-server-10.0_10.0.17+maria-1~trusty_AMD64.deb (--unpack):
==> default:  subprocess new pre-installation script returned error exit status 255
==> default: Selecting previously unselected package libhtml-template-Perl.
==> default: Preparing to unpack .../libhtml-template-Perl_2.95-1_all.deb ...
==> default: Unpacking libhtml-template-Perl (2.95-1) ...
==> default: Selecting previously unselected package mariadb-server.
==> default: Preparing to unpack .../mariadb-server_10.0.17+maria-1~trusty_all.deb ...
==> default: Unpacking mariadb-server (10.0.17+maria-1~trusty) ...
==> default: Processing triggers for man-db (2.6.7.1-1) ...
==> default: Errors were encountered while processing:
==> default:  /var/cache/apt/archives/mariadb-server-10.0_10.0.17+maria-1~trusty_AMD64.deb
==> default: E
==> default: :
==> default: Sub-process /usr/bin/dpkg returned an error code (1)
==> default: Reading package lists...
==> default: Building dependency tree...
==> default: Reading state information...
==> default: You might want to run 'apt-get -f install' to correct these.
==> default: The following packages have unmet dependencies:
==> default:  mariadb-server : Depends: mariadb-server-10.0 (= 10.0.17+maria-1~trusty) but it is not installed
==> default: E
==> default: :
==> default: Unmet dependencies. Try using -f.

パスワードの入力を求める端末を開けず、失敗したようです。 MariaDBはいつでも手動でインストールできますが、プロビジョニングファイルを使用してインストールしたいと思います。何かアイデア/提案はありますか?

1
user3465843

同様の問題がありました。環境変数の設定DEBIAN_FRONTEND=noninteractive私のために働いた。

したがって、あなたの場合、(rootとして)実行する必要があります

DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server
6
Joe Lipson