Troubleshooting Dynamic Analysis

If you encounter errors when performing dynamic analysis in HCL AppScan 360° on a single VM environment:

Edit the Docker service file on Red Hat Linux Enterprise

  1. From a command prompt:
    sudo nano /usr/lib/systemd/system/docker.service
  2. Append to the line that begins with ExecStart:
     --default-ulimit nofile=262144:262144
  3. Reload the system daemon and restart Docker:
    sudo systemctl daemon-reload
    sudo systemctl restart docker

Edit the Docker daemon configuration file on Ubuntu Kylin

  1. From a command prompt:
    sudo nano /etc/docker/daemon.json
  2. Add to or update the default-ulimits section as follows:
    { "default-ulimits": { "nofile": { "Name: "nofile", "Soft": 262144, "Hard": 262144 } } }
  3. Save the file and restart Docker:
    sudo systemctl restart docker