1. Make Backup Script Having following Task: a. T hat will make File Name (unique - by taking current system time) b. Then Export Database with Log having system generated File Name as Above c. Then Zip These DMP and LOG file with Password d. Remove DMP & LOG, to release Space. e. Move ZIP file to Remote Location (NAS Drive/Backup Directory having FTP Enabled) ------------------------------------------------------------------------------------------------------------------------------ #BackupScript.sh . /home/oracle/scripts/setEnv.sh filename=$( date +%d%m%Y_%H%M) BACKUP_DIR="/u02/backup" expdp user/pa...
Since the prevailing system was configured with RAID 10, so it is necessary to Add new Hard Drives as Even i.e. you have to add hard drives (Physical) in even numbers means you have to add either 2 or 4 or 6 or 8 or 10 so on. Once added, you have to reconfigure RAID by adding these hard drive , note if you does not select hard drive in even number, then it will not proceed.
Since Creating a Clone for the purpose of Testing or Development, we have to perform many different task like changing the host names especially in WordPress. Hence in this tutorial I will show how to skips old techniques of changing host URLs in the site. Instead of replacing the URL - Site/Host Address from the cloned environment, we will create our Local Machine as the Virtual Host i.e. it will behave as the same site as of production. So dont need to change the URL/Address from the enviroment. Following are the steps using Xampp Step 1) C:\WINDOWS\system32\drivers\etc\ Open the "hosts" file : 127.0 . 0.1 localhost 127.0 . 0.1 test.com 127.0 . 0.1 example.com Step 2) xampp\apache\conf\extra\httpd-vhosts.conf <VirtualHost *: 80 > DocumentRoot C:/xampp/htdocs/test/ ServerName www.test.com </VirtualHost> <VirtualHost *: 80 > DocumentRoot C:/xampp/htdocs/example/ ServerName www.example.com </VirtualHost> ...
Comments
Post a Comment