Stuck in the listener entry step in DUPLICATE OF RAC databases

I am trying to duplicate with RMAN a new RAC db from production RAC db.
I am done with the following steps:
1). backup prod database with rman
2). copy init file over and modity entries not to reflect rac paramters...
3). create a password file for new db
now I got stuck on step 4) Create a static listener entry for your new database and reload the listener as appropriate.
This step is necessary, because an RMAN duplicate uses an auxiliary database that is in no mount and therefore will not automatically register itself with the listener(s) as specified by local_listener, remote_listener and or the default, 1521.
For example:
(SID_DESC =
(GLOBAL_DBNAME = rman.colestock.test)
(ORACLE_HOME = /u03/app/oracle/product/db/10.2)
(SID_NAME = rman2)
The above is instruciton I got.
However I got very confused here:
First, on the RAC server, I added sid entry at the bottom of listener.ora. and the tnsnames entry looks like this:
abc =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxx76)(PORT = 1528))
(ADDRESS = (PROTOCOL = TCP)(HOST =xxxxxx 77)(PORT = 1528))
(CONNECT_DATA =
(SERVICE_NAME = abc_service)
How do I add a sid entry in the tnsnames.ora file? Since I supposed to create a single db first, not rac, do I have to put service_name or sid name there?
ANother confusion is how to reload the listener? Since this is a RAC server, two nodes has two listenrs: abc_listener1, abc_listener2. Do I have to stop and start listner by svrctl stop the dynamic listener?
Please if you can, provide detailed steps here how to create static listener in tnsnames entry and listener entry on a RAC environment and then reload the listener.
I have to finish up the duplication this weekend. So any help will be greatly appreciated.
Thank you in advance.

user569151 wrote:
I am trying to duplicate with RMAN a new RAC db from production RAC db.
I am done with the following steps:
1). backup prod database with rman
2). copy init file over and modity entries not to reflect rac paramters...
3). create a password file for new db
now I got stuck on step 4) Create a static listener entry for your new database and reload the listener as appropriate.
This step is necessary, because an RMAN duplicate uses an auxiliary database that is in no mount and therefore will not automatically register itself with the listener(s) as specified by local_listener, remote_listener and or the default, 1521.
For example:
(SID_DESC =
(GLOBAL_DBNAME = rman.colestock.test)
(ORACLE_HOME = /u03/app/oracle/product/db/10.2)
(SID_NAME = rman2)
The above is instruciton I got.
However I got very confused here:
First, on the RAC server, I added sid entry at the bottom of listener.ora. and the tnsnames entry looks like this:
abc =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxx76)(PORT = 1528))
(ADDRESS = (PROTOCOL = TCP)(HOST =xxxxxx 77)(PORT = 1528))
(CONNECT_DATA =
(SERVICE_NAME = abc_service)
How do I add a sid entry in the tnsnames.ora file? Since I supposed to create a single db first, not rac, do I have to put service_name or sid name there?
ANother confusion is how to reload the listener? Since this is a RAC server, two nodes has two listenrs: abc_listener1, abc_listener2. Do I have to stop and start listner by svrctl stop the dynamic listener?
Please if you can, provide detailed steps here how to create static listener in tnsnames entry and tnsnames.ora does not contain any information about listener.
listener entry on a RAC environment and then reload the listener.http://www.lmgtfy.com/?q=oracle+local_listener

Similar Messages

  • Workflow stuck at the very first step

    Hi,
    The workflow is started and its stuck at the first step
    this is the very first workflow created in the client
    are there any standard background jobs that should be started for the workflow to proceed ?
    thank you

    hi,
    as venugopal suggested, check whether the event was triggered and then check whether the WF has actually started or not. you can check this using transaction SWEL or SWI1.
    if the event was triggered but WF hasnt started then you might not have activated the event linkage. this can be done in the "basic data" of the WF in the "start events" tab.
    Since you have mentioned that "The workflow is started and its stuck at the first step", probably the WF has started.
    can you specify the error message that you are getting?
    what is the fisrt step in your WF?
    give some details.

  • IDVD 7.2.1 is turning my 16:9 DV .mov videos into the 4:3 format.  I believe all the settings are correct. I am stuck at the very last step.  Anyone heard of this?  Thanks

    I have all the settings correct, the few that there are.  I have searched for help in documentation and tutorials but have found nothing about this?  When I slide the DV 16:9 videos into the menu and then play them, they are 4:3. I am stuck at the last step. Has anyone heard of this?  Thanks

    I don't have the need to make many DVDs.  I was doing this for someone who's grandfather, a D-Day veteran was featured in one of the videos for the website of the newspaper where I work.  It turns out that the DVD looks right on the widescreen TV, but not on my monitors. I could not find an answer to something that apparently was not a problem in the first place. I learned a lot from the various discussions and will be reading more of them, more often in the future.

  • Another RMAN duplicate problem - RAC database to single instance

    Hi,
    I have a problem with the RMAN duplicate procedure and was hoping someone can help.
    I would like to create a duplicate of our production RAC database on a separate, stand-alone, database server on another site. This duplicate will be used for intensive querying by another business unit who I don't want to have access to our production database.
    My procedure goes like this:
    1. Create a disk (not ASM) based backup of the datafiles and any archived redo logs:
    "run {
    allocate channel d1 type disk;
    backup format '/u02/stage/df_t%t_s%s_p%p' database plus archivelog delete input;
    release channel d1;
    2. Tar and scp these files to the same location on the stand-alone database server.
    3. In the meantime, work has been happening on the production database and further archived redo logs have been generated. I don't really care about these logs for the purposes of the duplicate however, I just want to duplicate to the point of the recent backup. To do this, I run the following SQL to determine the sequence number that I should be duplicating up to:
    "select max(sequence#), thread# from v$archived_log where deleted='YES' group by thread#;"
    4. Duplicate the production database to the stand-alone database (all the SQL Net stuff is working).
    "run {
    set until sequence (value returned by above SQL statement);
    duplicate target database to XXX;
    However, my problem arises because I don't know how to handle the fact that there are two threads. I understand that each thread relates to one of the RAC instances, I just don't know which one to specify for the duplicate. We have a database service which the client application connects through, and that service runs on on or other of the instances. Should I just care about the logs from the instance where the service is currently running?
    Am I even approaching this is the correct way?
    I look forward to any help that people may be able to offer.
    Regards,
    Phil

    Hi Werner,
    Thanks again for your help, there is still something wrong though. "list backup of archivelog all;" shows:
    BS Key Size Device Type Elapsed Time Completion Time
    3784 202.34M DISK 00:00:08 28-OCT-09
    BP Key: 3784 Status: AVAILABLE Compressed: NO Tag: TAG20091028T111718
    Piece Name: /u02/stage/df_t701435838_s3820_p1
    List of Archived Logs in backup set 3784
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 9746 569095777 28-OCT-09 569150229 28-OCT-09
    1 9747 569150229 28-OCT-09 569187892 28-OCT-09
    1 9748 569187892 28-OCT-09 569231956 28-OCT-09
    1 9749 569231956 28-OCT-09 569259816 28-OCT-09
    2 7931 569095774 28-OCT-09 569187902 28-OCT-09
    2 7932 569187902 28-OCT-09 569259814 28-OCT-09
    BS Key Size Device Type Elapsed Time Completion Time
    3787 1.04M DISK 00:00:02 28-OCT-09
    BP Key: 3787 Status: AVAILABLE Compressed: NO Tag: TAG20091028T112222
    Piece Name: /u02/stage/df_t701436142_s3823_p1
    List of Archived Logs in backup set 3787
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 9750 569259816 28-OCT-09 569261110 28-OCT-09
    2 7933 569259814 28-OCT-09 569261108 28-OCT-09
    You can see that the highest sequence number is 9750 of thread 1, and that the Low and Next SCNs are 569259816 and 56926111. However, when I look at the output of the RMAN duplicate command:
    contents of Memory Script:
    set until scn 569505448;
    recover
    clone database
    delete archivelog
    executing Memory Script
    executing command: SET until clause
    Starting recover at 28-OCT-09
    allocated channel: ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: sid=39 devtype=DISK
    starting media recovery
    Oracle Error:
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 4 needs more recovery to be consistent
    ORA-01110: data file 4: '/u02/sca-standby/data/users.260.623418479'
    RMAN-03002: failure of Duplicate Db command at 10/28/2009 16:12:55
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06053: unable to perform media recovery because of missing log
    RMAN-06025: no backup of log thread 2 seq 7936 lowscn 569411744 found to restore
    RMAN-06025: no backup of log thread 2 seq 7935 lowscn 569321987 found to restore
    RMAN-06025: no backup of log thread 2 seq 7934 lowscn 569261108 found to restore
    RMAN-06025: no backup of log thread 1 seq 9758 lowscn 569471890 found to restore
    RMAN-06025: no backup of log thread 1 seq 9757 lowscn 569440076 found to restore
    RMAN-06025: no backup of log thread 1 seq 9756 lowscn 569411439 found to restore
    RMAN-06025: no backup of log thread 1 seq 9755 lowscn 569378529 found to restore
    RMAN-06025: no backup of log thread 1 seq 9754 lowscn 569358970 found to restore
    RMAN-06025: no backup of log thread 1 seq 9753 lowscn 569321882 found to restore
    RMAN-06025: no backup of log thread 1 seq 9752 lowscn 569284238 found to restore
    RMAN-06025: no backup of log thread 1 seq 9751 lowscn 569261110 found to restore
    you can see that something is setting the recovery SCN to 569505448 which higher even then any of the archived logs mentioned above. If I select current_scn from the production database, this gives me 569528258 which is closer to the value which RMAN is expecting to recover to than any of the archived redo logs.
    Can you think what might be causing RMAN to try to recover to this value? and why does it appear to be ignoring the SET UNTIL SEQUENCE command?
    Cheers,
    Phil

  • Steps to restore a RAC database

    Hi All,,
    Can someone provide the steps to restore a 4 node RAC database to another 4 node RAC?
    Database version:11.2.0.2
    OS: AIX 6.1

    user13364377 wrote:
    Hi All,,
    Can someone provide the steps to restore a 4 node RAC database to another 4 node RAC?
    Database version:11.2.0.2
    OS: AIX 6.1
    consider to actually Read The Fine Manual yourself
    Contents

  • TS1398 I cannot start to use my new ipad mini as it is stuck at the very first step after restoring my old backup. It says to choose a wifi, I do and then it says 'Unable to connect' There is no options for a password and I cannot access any other screen!

    I have tried going past the first set up stage, still with no wifi. I have then tried restoring the ipad mini, still no wifi available. Both my ipone and Apple Mac have wifi full bars. Please help. I only picked up my new ipad today. I am thinking it may be faulty.
    Lele

    It may be faulty but you should try to activate it first in order to be sure.
    Why don't you activate it using iTunes on the Mac and then troubleshoot the WiFi connection. Connect the Mini to the Mac with the cable and iTunes should startup and take you through activation. If you do not autosync and iTunes des not start up on it's own, then launch it yourself.

  • Unable to identify from where the listener run

    Hi,
    In my env we have 2 oracle binaries&4 dbs. one listener is configured for all databases. I have modified the listener (Delete all entries) and start the listener.
    Few minutes it is showing that no services added to the listener. After 3 minutes, automatically all database services added and went to ready state. I can't able to identify from where the services added.
    Incase if i added any entries in the listener.ora file, that services went to unknown state. Then what could be issues?
    OS-solaris
    NO CLUSTER/RAC.
    oracle 10g.
    I am new to this env. so i cant able to find from where the listener file read ,from where the services running as ready?
    Note:- if i check lsnrctl status,it shows the perfect listener file what i edit.
    Please help me.
    Thanks in advance.

    LOG FROM listener.log
    TNSLSNR for Solaris: Version 10.2.0.5.0 - Production on 13-FEB-2013 17:14:29
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    System parameter file is /app/oracle/product/10.2.0/db_2/network/admin/listener.ora
    Log messages written to /app/oracle/product/10.2.0/db_2/network/log/listener1.log
    Trace information written to /app/oracle/product/10.2.0/db_2/network/trace/listener1.trc
    Trace level is currently 0
    Started with pid=19832
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=test.world.az)(PORT=1521)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:14:30 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER1)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:14:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:14:40 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:14:46 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:14:57 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:15:13 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:15:16 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    13-FEB-2013 17:15:23 * service_register * test_db1 * 0
    13-FEB-2013 17:15:23 * service_register * test_db2 * 0
    13-FEB-2013 17:15:23 * service_register * test_db * 0
    13-FEB-2013 17:15:23 * service_register * test * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:15:36 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0
    13-FEB-2013 17:17:44 * service_update * test * 0
    WARNING: Subscription for node down event still pending
    13-FEB-2013 17:18:43 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=test)(USER=oracle))(COMMAND=status)(ARGUMENTS=64)(SERVICE=LISTENER)(VERSION=169870592)) * status * 0

  • HT201210 I wanted to update my iPad 2 from 4.3 to the latest update but I got stuck in the restoring step. I couldn't restore the iPad

    I wanted to update my iPad 2 from 4.3 to the latest update but I got stuck in the restoring step. I couldn't restore the iPad.
    The error message"The iPad cannot be restored at this time because the iPad software update server couldn't be contacted or is temprorily unavailable"

    Hello someone9,
    There are a few possible causes for this issue, sometimes it is related to Security Software, other times it is related to the internet connection. Let's follow the steps below:
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    - Install the latest version of iTunes.
    - Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    - Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    - Try to restore from another known-good computer and network.
    - If the errors persist on another computer, the device may need service.
    If the above does not resolve the issue, you can also check out this article:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    http://support.apple.com/kb/TS1814
    Thanks,
    Matt M.

  • I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    I am trying to copy more or less 30G from my MacbookPro to an external hard drive and it is stuck in the "preparing to copy" step. But that for more than one hour. What should I do to make it faster? Thanks a lot in advance!

    Thanks Shootist007, by blockd files I mean files that I have changed to blocked and when I tried to move then for the first time, I had to unblock again. I am trying to backup my pictures, my songs and other files like word documents and excel tables. First I put all of them as blocked, what caused the first problems on trying to move them. Then, I've unchecked the block option and if I try to move one by one, there is no problem. The issue is to move all together, because it gets stuck in the preparing to copy files step. Anyway, if I cannot do all by once, I'll do it one by one, event though that was not suposed to happen if we are talking about technology, right? Anyway, I thank you again for trying to help me!

  • Diff between FD10N and FBL5N for cust acts-Steps to find the mising entries

    Hi,
    My recent post on this has been answered.We have brought forwrad the customer balances again and the issue is now resolved.
    However can anyone please give the steps(with Tcodes) to find out:
    1.The date on which the customer balance was brought forward from previous year
    2.The date on which GL balances were b/f from previous year
    3.How do we find the customer entries which were posted after the balances were brought forward.
    Your response will be much appreciated.
    Thanks and Regards

    Dear,
    Customers - FD10N
    Vendors - FK10N
    GL Accounts - FS10N / FAGLB03
    Fiscal year = 2012 if April to March 2011
    After entering by giving GL / Customer / Vendor.......doub;e click on *** balance.......against Bal.Carryforward. (First line)
    Bal.Carryforward     ................................               472.00
    It will show the line items with carry forward date
    Thanks
    Edited by: nkonnipati on Feb 26, 2012 6:10 AM
    Edited by: nkonnipati on Feb 26, 2012 7:50 AM

  • I can't sync my ipod, it's stuck on the second step

    when i plug my ipod in and try to sync the music i get from cd's, my ipod gets stuck on the 2nd step of the syncing process. I always get an error message that says to reconnect or try again later because the syncing services aren't working. pleeeeeaaaaase help me.

    Try:
    "Waiting for changes to be applied": Apple Support Communities

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • Why is my syncing (ipad2) seem to be stuck on the last step?

    Why is my syncing (ipad2) seem to be stuck on the last step?

    Perform a Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...

  • My iPad gets stucked in the last step of the sync with the computer.

    When connecting the iPad to the computer the iTunes starts, reconizes my iPad and starts the sync of the iPad.
    It syncs the contacts, calendars, pictures, music, etc, but in the last step (7th; "finishing Sync") it stucks and stays for ever without finishing.
    I cannot load a previous backup because as soon as I connect the iPad to the computer the Sync process starts and no button is available.
    I've tried to load again iTunes to start from the begining but it is still saying the same, that the Sync process is finishing and is blocked there.
    Any help?
    Thanks a lot.

    Hi Demo,
    I've tried what you say but, if I'm doing it right, it doesn't work because after rebooting it goes again to syncing and stucks on the last step.
    Nevertheless let me check if I'm doing it right; When you say "Before you restore from the backup, quit iTunes, ...." you mean "Before" or "After" because I don't understand how I could reboot the iPad BEFORE I restore from the Backup if it is already restoring.
    Just let me write down the procedure to check that it is the right one:
    1- I launch iTunes (iPad not connected) and go to Edit>Preferences>Devices, and I check the box to Prevent the iPad to syncing automatically. I click OK.
    2- I quit itunes.
    3- I connect the iPad to the computer.
    4- I launch iTunes.
    5- I go to Restore from Backup
    6- Restore from Backup is finished
    7- I quit iTunes
    8- I disconnect the iPad from the PC
    9- I reboot my PC
    10- I reboot my iPad by holding down on the sleep and home buttons... iPad stars.
    11- I connect the iPad to my PC.
    12- I launch iTunes
    13- I click on sync button.
    If the procedure is right then my problem must be another one because when I do it and it starts syncing again the same problems comes back again and the syncing never stops at the last step.
    Thank you anyway for your time and support.
    Best regards,
    Francisco

  • Stuck in the "preparing to sync" step

    While trying to sync music to my iPod Touch 4th Generation, it gets stuck in the "preparing to sync" step.  The music will show up in my library as unplayable, not fully synced files, and I can no longer add or remove files to and from my iPod properly.  Can anyne offer me any assistance?

    Thanks Shootist007, by blockd files I mean files that I have changed to blocked and when I tried to move then for the first time, I had to unblock again. I am trying to backup my pictures, my songs and other files like word documents and excel tables. First I put all of them as blocked, what caused the first problems on trying to move them. Then, I've unchecked the block option and if I try to move one by one, there is no problem. The issue is to move all together, because it gets stuck in the preparing to copy files step. Anyway, if I cannot do all by once, I'll do it one by one, event though that was not suposed to happen if we are talking about technology, right? Anyway, I thank you again for trying to help me!

Maybe you are looking for

  • You do not have permission to view this directory or page.

    I made an Azure website, installed GitHub, and made a repository. In the repository I put index.html, style.css, templogo.jpg, and homeimage.jpg . I needed the css and jpg files for the index page. I created a deployment account, and pushed the repos

  • Finder causes After Effects and Premiere Pro CS5 to crash

    Basically when attempting to import files into either After Effects or Premiere Pro the Finder causes them to crash.  I'm not sure if it's the Movies folder specifically thats causing it, but I'm unable to find out for sure because the Movies folder

  • ParserExtension and Custom Renderer components

    Hi, I am trying to create a custom component of my own which will control access to UINodes based on the contents of the User's HTTPSession object. In the HTTPSession I have a list of Roles that are assigned to the user and based on these roles I wou

  • Help! Presentation scaling differently after upgrading from Director 8 to MX 2004

    I recently upgraded to Director MX 2004 from Director 8. Since the year 2000, I've been using Director basically to give souped up Powerpoint presentations to large groups and it's worked wonderfully. I haven't even been creating projectors, just ope

  • Trouble downloading flash player

    Help! I have IE 6.0 and keep getting a messaging saying the wedsite is at risk and won't let me download. Any Ideas on what settings in IE I have to change? I'm at medium risk right now on security.