gpt4 book ai didi

linux - 未找到 SSH Shell 命令(composer、npm)

转载 作者:太空宇宙 更新时间:2023-11-04 10:02:27 26 4
gpt4 key购买 nike

我的服务器是使用 whm 和 cpanel 的 a2hosting 的 linux 经销商计划。

我的项目是 PHP Laravel。

项目构建,然后使用 Copy Files Over SSH 任务,我能够将文件复制到我的服务器。

问题是,当我尝试为 composer installnpm install 添加 SSH 任务时,出现错误。它使用与文件复制任务相同的 SSH 连接和 key 。 cdls 之类的东西可以工作。

当我在本地使用相同的用户名和相同的私钥并运行 composer install 时,它和 npm install 一样有效。运行 composer 和 npm 后,网站加载正常,但我希望它是自动化的,这样我就不必手动运行这些命令。

这是我的内联脚本:

composer install

我的错误是这样的:

2019-03-11T16:34:21.4468896Z ##[section]Starting: Run Composer
2019-03-11T16:34:21.4471875Z ==============================================================================
2019-03-11T16:34:21.4472119Z Task : SSH
2019-03-11T16:34:21.4472240Z Description : Run shell commands or a script on a remote machine using SSH
2019-03-11T16:34:21.4472332Z Version : 0.148.0
2019-03-11T16:34:21.4472433Z Author : Microsoft Corporation
2019-03-11T16:34:21.4472519Z Help : [More Information](http://go.microsoft.com/fwlink/?LinkId=821892)
2019-03-11T16:34:21.4472635Z ==============================================================================
2019-03-11T16:34:21.8985848Z composer install
2019-03-11T16:34:21.9008544Z Trying to establish an SSH connection to ***@mydomain.com:7822
2019-03-11T16:34:21.9181145Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9181767Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9182133Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9182449Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9183364Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9183731Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9184084Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9184417Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9184742Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9185068Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9185405Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9185751Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:21.9186053Z (node:1296) Warning: Use Cipheriv for counter mode of aes-256-ctr
2019-03-11T16:34:22.2806417Z Successfully connected.
2019-03-11T16:34:23.0424509Z tr -d '\015' <"./sshscript_1552322" > "./sshscript_1552322._unix"
2019-03-11T16:34:23.1378047Z chmod +x "./sshscript_1552322._unix"
2019-03-11T16:34:23.2240403Z "./sshscript_1552322._unix"
2019-03-11T16:34:23.3118392Z
2019-03-11T16:34:23.3171367Z ##[error]./sshscript_1552322._unix: line 3: composer: command not found
2019-03-11T16:34:23.3180458Z
2019-03-11T16:34:23.3181101Z ##[error]Command failed with errors on remote machine.
2019-03-11T16:34:23.4532093Z ##[section]Finishing: Run Composer

最佳答案

因为您可以在通过 SSH 手动登录时执行命令,但不能通过 Azure 脚本执行相同的命令。这可能意味着您的管道脚本无法加载 ~/.bashrc 或预期的 $PATH 值,以便能够找到 composer 命令。您需要通过手动运行 echo $PATH 并通过管道脚本确保您的管道脚本包含正确的 $PATH 值,然后比较该值,或者您可以尝试将composer 二进制文件的完整路径,您可以通过执行 which composer 手动获取它,对于 npm 也是如此。

更新:正如您提到的 $PATH 有问题,您可以在您使用的 bash 脚本中手动定义它,如下所示:

export PATH=/my/missing/path:$PATH

关于linux - 未找到 SSH Shell 命令(composer、npm),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55107421/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com