Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从官方 Akeneo Doc 那里得到了指导。我尝试获取 API 连接列表。
php bin/console pim:oauth-server:list-clients --env=prod
每次我在终端中运行此命令时,都会引发错误。
无法打开输入文件:bin/console
我尝试了 1.7 和 2.0 版本。还是一样。我需要在某个文件夹中打开终端才能运行吗?
Akeneo 服务器在 docker 上。
首先我找到我的容器的 ID(对我来说,它是 Akeneo)
docker container ls
我在 docker 上的 Akeneo Id 是
“0de07xxxxxxx”
我 exac 我的容器我的这个命令
docker exec -it "0de07xxxxxxx" bash
我通过 find 命令找到我的路径文件夹。
find / -name app
现在我可以运行 php 命令来获取 api 连接列表。是的,我确实需要在akeneo 文件夹中打开终端来运行php 命令行。