500 error opening antMan

500 error opening antMan

This usually means the root partition is full or Docker is not using Zfs or the zpool is full.
  
First ssh to the antsle's command line?

    or
    ssh root@x.x.x.x

or if on Windows use Putty

We can check if the root '/' partition is full with

    df -h /

If it is full, we can check for large files with 

    for file in `find / -xdev -type f -size +200M` ; do ls -lh $file | awk '{printf "%s\t%s\n", $5, $9;}' ; done

If it is safe to remove the file, use the following command

    rm /path/to/file


To check docker zfs storage, see this article Fix Docker ZFS Storage



To check the zpools run

    zpool list

The CAP column show the percent full and the FREE column the free space.

If the antlets zpool is full or nearly full, I would first try to remove any unused templates. An unused
template is a template from which no antlet has been created.
You can see the list of templates with

    ll /antlets/_templates

To remove a template use

    zfs destroy -r antlets/_templates/TEMPLATENAME

Note, there is no leading '/' in the path.
This will error if an existing antlet is dependent on the template.
If you get a 'data set is busy' error, then remove the directory first then run the zfs destroy again.
example:

    rm -rf /antlets/_templates/Win2016
    zfs destroy -r antlets/_templates/Win2016


If there are any antlets you can delete, lets remove those. Here is a guide on removing antlets from the command line:



    • Related Articles

    • Cannont access antMan using 'antsle_name.local' from a browser

      Power Is the red power led on, on the front of the antsle? Ethernet connection Is your ethernet cable plugged into the correct ethernet port?:  http://docs.antsle.com/setup/#2-connect-power-and-network Is there a link light on the ethernet port and ...
    • Oversubscribing RAM Error

      This error can happen if the swap is not in place. From the edgeLinux terminal: https://docs.antsle.com/login/ Lets check if the swap partition exists. Does the command 'lsblk' show the the swap... one of the drives (sdb or sdd) should contain the ...
    • Backup fails with error: Snapshot '_antsle_backup' exists, probably from a backup in progress.

      If a backup fails with the following error: Snapshot '_antsle_backup' exists, probably from a backup in progress. If this is not the case, please delete it and try again. From the antsle's command ...
    • antHill cannot find or activate your antsle

      Here is a series of videos for trouble shooting anthill activation in our docs: https://docs.antsle.com/tshoot/#anthill-activation-cant-find-antsle Here are some of the steps from the video: Is your ethernet cable plugged into the correct ethernet ...
    • RDP stops working after Windows update

      RDP connection, as well as ssh, stopped working to a Windows 10 antlet after one of the Windows automatic updates. Use the vncConsole (click the icon next to the antlet name in antMan) to access the Windows desktop. Windows is prompting to "allow ...