Mostrando postagens com marcador oracle. Mostrar todas as postagens
Mostrando postagens com marcador oracle. Mostrar todas as postagens

Veeam RMAN plugin Windows network tuning

 

In larger environments lots of connections are made by the Plug-In backups. It is recommended to tune the network settings of the involved Windows machines in the Veeam infrastructure (Windows VBR server and Windows repository servers) according to the Microsoft guide to improve network performance:

  • Increase the available dynamic port range. The default dynamic ports range in Windows is 49152-65535 which is 16384 ports. Use the following command to increase the amount of available dynamic ports for IPv4 to 55525 without affecting ports of Veeam services:

    netsh int ipv4 set dynamicport tcp start=10010 num=55525

  • Add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\TcpTimedWaitDelay and set it to 30 to reduce the time a port keeps being blocked for reuse (default is 240 seconds)

Install Veeam plugin Oracle linux

 

Install Veeam plugin Oracle linux

rpm -Uvh --nodigest --nofiledigest VeeamPluginforOracleRMAN-12.2.0.334-1.x86_64.rpm

Mount CIFS share on oracle linux

Install CIFS

 yum install cifs-utils -y

mount -t cifs -o username=USER,password=PASSWORD,workgroup=GROUP/AD,file_mode=0777,dir_mode=0777 //PATH_TO_SHARE /MOUNT_POINT

Example:

mount -t cifs -o username=user,password=Teste123,workgroup=localdomain,file_mode=0777,dir_mode=0777 //10.30.0.181/share$ /mnt/remotefolder

Monitoring response time with curl

   curl -s -o /dev/null -w "Conecction: %{time_connect}s | Start transfer: %{time_starttransfer}s | Total time: %{time_total}s\n" ...

Mais vistos