LoginSignup
0
0

More than 5 years have passed since last update.

Ansible(AWX)で"load_config() got an unexpected keyword argument 'config_dict'"の対処法

Last updated at Posted at 2018-03-27

概要

Ansible AWX(local Docker版)構築する際に以下のようなエラーでハマったので、その対処法を残したいと思います

"Error connecting: load_config() got an unexpected keyword argument 'config_dict'"

原因

いろいろと調べたが dockerを3.0.0にダウングレードしたらいけたよとか書いてあったが、試しても改善できなかった

バージョンの問題ではなく、dockerよりも先にdocker-pyを導入したことによるエラー
詳しい原因は理解できていない(インストール時にコンパイルするのかな?)

> pip install docker-py docker

対処法

dockerをdocker-pyよりも先に導入!

> pip install docker docker-py
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0