Veritas Velocity™ User's Guide
- Getting to know Velocity
- Setting up Velocity
- How to set up the Velocity Storage Server
- How to set up the Velocity Client
- Setting up the Velocity on-premises management server
- Upgrading Velocity
- Velocity Storage Server
- Users and roles
- Oracle database ingestion using Velocity
- How to use copy preparation to mask or sanitize sensitive data
- Oracle database ingestion using NetBackup CoPilot
- Microsoft SQL Server database ingestion using Velocity
- Database sources and copies
- About scheduling ingestions for a database source
- Retention periods for database sources and copies
- Sandboxes
- Database recovery
- Alerts and logs
- Managing the Velocity physical appliance
- Configuring network address settings on the Velocity physical appliance
- About WAN optimization on the Velocity physical appliance
- About the Veritas Remote Management Console on the Velocity physical appliance
- About Velocity physical appliance storage
- About users on the Velocity physical appliance
- About Velocity physical appliance checkpoints
- About factory reset on the Velocity physical appliance
- Configuring network address settings on the Velocity physical appliance
- Monitoring the Velocity physical appliance
- Velocity physical appliance security
- About Velocity physical appliance user account privileges
- About the Velocity physical appliance intrusion detection system
- About Velocity physical appliance operating system security
- Recommended IPMI settings on the Velocity physical appliance
- Best practices
- Troubleshooting
- Glossary
- Context-sensitive topics
- Section I. Velocity shell menu commands
- Introduction
- Appendix A. Main > Manage > Storage
- Appendix B. Main > Manage > Cloud
- Appendix C. Main > Manage > Software
- Appendix D. Main > Monitor
- Appendix E. Main > Network
- Appendix F. Main > Settings
- Appendix G. Main > Support
Configuring the Velocity Client for Solaris
The Velocity Client is a service that facilitates automated data ingestion and sandbox preparation. You must install the Velocity Client on any host servers that you intend to use for either creating sandboxes or ingesting data. Then you must register each host server with Velocity before you can ingest databases or create sandboxes.
Warning:
Before you begin, check whether the primary FQDN or IP address of the host server is on the same network path as the Velocity Storage Server. If it is not, you must use the -i flag with the appropriate FQDN or IP address when you register the host server using the "velocity_registration" command. This is a common scenario in multi-NIC configurations.
You can install and register the Velocity Client using the Velocity launch pad. The launch pad contains directions that walk you through the configuration process. If you prefer, you can manually type the configuration commands in a terminal window to configure the Client.
When the Velocity Client is successfully registered, it appears in the Velocity Cloud Console. To view any registered instances of the Velocity Client, click
in the left pane.Note:
When you uninstall an instance of the Velocity Client, it must be able to connect to the Velocity Storage Server because the process also deregisters the Velocity Client.
You can also delete a client if an error was made in the initial registration and you want set it up again with valid information.
Note:
If you configure the Velocity Storage Server so that it is multihomed, these commands may not provide the correct IP address. You may need to change the IP address to the same IP address that matches the network that the Velocity Client is on.
To configure the Velocity Client for Solaris using the Velocity launch pad
- On the Velocity Cloud Console, click Launch Pad.
- On the Configure the Velocity Client tile, click Configure, and then click Next.
- Select Solaris for Oracle Databases, and then click Next.
- Complete the directions that display, and then click Done.
Note:
Verify that the message "The host server was successfully registered with the Velocity Storage Server" appears. If it does not, click Show the commands and copy the following portion of the command to the terminal:
//opt/veritas/velocity/bin/velocity_registration initialize -s https://<IP address> -u <user> -p <password>
To configure the Velocity Client for Solaris manually
- Log on to your Solaris host server as the
root
user and open a terminal window. - Type the following command to create a new local folder where the packages export path from the Velocity Storage Server will be mounted:
mkdir -p /mnt/<foldername>
- Type the following command to mount the packages export path from the Velocity Storage Server to the local folder created in the previous step:
mount -o vers=3 <storage host/IP>:/opt/veritas/velocity/packages /mnt/<foldername>
- Type the following command to install the installation package on the host server:
pkgadd -d /mnt/<foldername>/velocity-client-*-solaris VRTSvelc
- Type the following commands to unmount the packages export path and remove the local folder:
umount /mnt/<foldername>
rm -rf /mnt/<foldername>
- From the Velocity Cloud Console, in the left pane, click Velocity Storage Server.
- Click Generate Server Credentials.
- Make a note of the User name and Password that display.
- On the host Solaris server, use one of the following commands to register the host with Velocity:
If you use the computer's hostname to identify the host server on the network:
Type the following command:
/opt/veritas/velocity/bin/velocity_registration initialize -s https://<Storage FQDN/IP address>:8443 -u <user> -p <password>
Note:
If you configure the Velocity Storage Server so that it is multihomed, these commands may not provide the correct IP address. You may need to change the IP address to the same IP address that matches the network that the Velocity Client is on.
Where <Storage FQDN/IP address> is the FQDN or IP address of the Velocity Storage Server. Replace <user> with the user name and <password> with the password from the Generate Server Credentials dialog in the previous step.
If the primary FQDN or IP address of the Solaris host server is not on the same network path as the Velocity Storage Server:
Type the following command:
/opt/veritas/velocity/bin/velocity_registration initialize -i <Solaris FQDN/IP address> -s https://<Storage FQDN/IP address>:8443 -u <user> -p <password>
Note:
If you configure the Velocity Storage Server so that it is multihomed, these commands may not provide the correct IP address. You may need to change the IP address to the same IP address that matches the network that the Velocity Client is on.
Where <Storage FQDN/IP address> is the appropriate FQDN or IP address of the Velocity Storage Server. Replace <user> with the user name and <password> with the password from the Generate Server Credentials dialog in the previous step.
The -i flag lets you specify the FQDN or IP address that is associated with the interface and represents the network path to the Velocity Storage Server. Using the -i flag ensures that Velocity uses the correct network path when it communicates with the Velocity Storage Server.
More Information