Help Center/ CodeArts Deploy/ FAQs/ Command Execution for Deployment Actions/ Running Shell Commands/ A Message Indicating an Operation Failure Is Displayed
Updated on 2025-05-27 GMT+08:00

A Message Indicating an Operation Failure Is Displayed

Symptoms

During action deployment, an error message is displayed, indicating that the operation fails.

Cause Analysis

Some commands entered in the text box are intercepted by cloud firewalls. As a result, the deployment fails. The following figure uses the shell command as an example.

1
2
3
4
5
6
cat /etc/hosts
cat /etc/passwd
cat /etc/shadow
cat /etc/fstab
mount -l || echo hello world 
……

Solution

Solution 1: Parameterization

  1. Add the parameter Path and set its value to /etc/hosts.
  2. Reference the parameter Path in the Shell Commands text box.
    cat ${Path}
    cat /etc/passwd
    cat /etc/shadow
    cat /etc/fstab
    mount -l || echo hello world 
    ……

Solution 2: Using the Shell Script

  1. Upload the script to CodeArts Artifact.
  2. Use the action Select Deployment Source to download the script to the target host to be deployed.
  3. Deploy the action Run Shell Script.