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
- About general troubleshooting procedures
- Viewing the Access Appliance log files
- About event logs
- About shell-activity logs
- Setting the CIFS log level
- Setting the NetBackup client log levels and debugging options
- Retrieving and sending debugging information
- Insufficient delay between two successive OpenStack commands may result in failure
- Monitoring Access Appliance
- Common recovery procedures
- About common recovery procedures
- Restarting servers
- Bringing services online
- Recovering from a non-graceful shutdown
- Testing the network connectivity
- Troubleshooting with traceroute
- Using the traceroute command
- Collecting the metasave image of a file system
- Replacing an Ethernet interface card (online mode)
- Replacing an Ethernet interface card (offline mode)
- Replacing an Access Appliance node
- Replacing a disk
- Speeding up replication
- Uninstalling a patch release or software upgrade
- 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
- Index
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; doneThe 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