Cisco UCSM Error: Applying moref properties. Remote-Invocation-Error.

If your Cisco UCS Manager shows an error like this with code “F1001201”, it is probably that there are some configurations left from the initial UCSM deployment or imported config.

To check if there are any pending actions like this:

SSH into the UCS Manager
# scope system
# show pending-import
# show pending-import fsm status expand detail

If there is any pending, clear them
# delete pending-import
# commit-buffer

Install&Update portainer

I bought a Raspberry Pi 4 recently. I wanted to install Portainer to manage my containers on it. I used unless-stopped restart policy. The default one mentioned in the original documents, always, make it start again when stop command is given.

docker run --name portainer --restart=unless-stopped -d -p 8000:8000 -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

To update, I use below commands.

sudo docker pull portainer/portainer
sudo docker stop portainer
sudo docker rm portainer

docker run --name portainer --restart=unless-stopped -d -p 8000:8000 -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer

Portainer Installation