ONES-GA 1.2.1
Release
  • ONES GA v1.2.1
    • Open Networking Enterprise Suite (ONES)
      • ONES Application
        • ONES Telemetry Collector(s) and Visibility
        • ONES Orchestration
        • ONES Supportability
        • ONES Security
    • What's new?
    • Getting Started
      • Supported Switch Platforms and NOS
      • Scalability
      • Subscription
      • ONES Installation
        • Installation Pre-requisites
        • Download ONES Package
        • Installing ONES Application
        • Installing ONES Agents
          • ONES Telemetry Agent Installation
          • ONES Orchestration Agent Installation
      • Deploy the VM
    • ONES Web GUI Administration
      • Login Page
      • Adding Devices
      • Dashboards
      • Monitor
      • Inventory
      • Configurations
      • User Management
      • Settings
      • ONES Orchestration
        • BGP IP-CLOS
        • BGP IP-CLOS with MCLAG
        • L2 VXLAN EVPN
        • L2 VXLAN EVPN with MCLAG
        • VXLAN EVPN Asymmetric IRB
        • VXLAN EVPN Asymmetric IRB with MCLAG
        • VXLAN L3 EVPN Symmetric IRB
        • VXLAN L3 EVPN Symmetric IRB with MCLAG
    • Common Issues and Troubleshooting Steps
      • ONES Installation
        • Storage issue
      • ONES Uninstallation
        • ONES-Application
        • Telemetry Agent
        • Orchestration Agent
      • Permission Issues
        • Application Installation
      • gNMI Troubleshooting on non-SONiC Switches
    • How to contact Aviz Networks Support?
    • Backup and Recovery
Powered by GitBook
On this page
Export as PDF
  1. ONES GA v1.2.1
  2. Common Issues and Troubleshooting Steps
  3. ONES Installation

Storage issue

While installing ONES-App, the user might face storage issues in the current partition

Error processing tar file(exit status 1): write /usr/share/java/acl/acl-6.2.0.jar: no space left on device
ERROR:
command "docker load -i schemareg.tar" failed with exit code 1

User can change the Partition to install ONES-App

  • Check the free partition available to use


root@ONES:/home# df -h
Filesystem             Size  Used Avail Use% Mounted on
udev                   126G     0  126G   0% /dev
tmpfs                   26G  2.3M   26G   1% /run
/dev/mapper/vg00-root  9.3G  3.0G  5.9G  34% /
tmpfs                  126G     0  126G   0% /dev/shm
tmpfs                  5.0M     0  5.0M   0% /run/lock
tmpfs                  126G     0  126G   0% /sys/fs/cgroup
tmpfs                  126G     0  126G   0% /tmp
/dev/mapper/vg00-aviz  170G   25G  137G  15% /aviz
/dev/mapper/vg00-var   9.3G  7.8G  1.1G  88% /var

Choose /aviz partition to install the ONES-App
  • Remove the Docker containers and images

    sudo docker rm <container id>
    sudo docker image rm <image id>
  • Stop the Docker service

    sudo systemctl stop docker
  • Remove the Docker storage directory

    sudo rm -rf /var/lib/docker
  • Create a new /var/lib/docker storage directory.

    sudo mkdir /var/lib/docker
  • Use bind mount to set the new location. For example, to set the new location as /aviz/docker run the following commands:

    sudo mkdir /aviz/docker
    sudo mount --rbind /aviz/docker /var/lib/docker
  • Start the Docker service.

    sudo systemctl start docker
  • Now user can start the ONES-App Installation, and ONES will use new partitionto install all the services

    ./ones-installer.sh

PreviousONES InstallationNextONES Uninstallation