Please enter search query.
Search <book_title>...
Veritas Access Appliance Troubleshooting Guide
Last Published:
2021-05-03
Product(s):
Appliances (7.4.3)
Platform: Veritas 3340,Access Appliance OS
- Introduction
- General troubleshooting procedures
- Monitoring Access Appliance
- Common recovery procedures
- Bringing services online
- Speeding up replication
- Troubleshooting the Access Appliance cloud as a tier feature
- Troubleshooting Access Appliance installation and configuration issues
- Troubleshooting Access Appliance CIFS issues
- Troubleshooting Access Appliance GUI startup issues
Insufficient delay between two successive OpenStack commands may result in failure
If sufficient delay does not exist between two successive OpenStack commands, it may lead to failure of the operation in some cases.
For example:
# for i in {01..32}; do cinder create --image zesty-server-cloudimg- amd64 --volume-type vrts_vol_type --name zesty-vol-$i 10; done
The command may fail to create the new volumes.
To avoid this kind of failure, introduce sufficient delay between the commands by adding some sleep time.
For example:
# for i in {01..32}; do cinder create --image zesty-server-cloudimg-amd64 --volume-type vrts_vol_type --name zesty-vol-$i 10;sleep 20; done