CUIS 7.5: ERROR: No Archiver database size is supported on this system

Dear all,
I try the configuration tool on CUIS for Archiver but I encounter with an error and exit the configuration.
Please help me on this.
Thanh
[1-20-2011 15:29:00] INFO:    Verifying Archiver pre-requisites.
[1-20-2011 15:29:00] INFO:    Microsoft SQL Server is present.
[1-20-2011 15:29:00] INFO:    The system has enough fixed drives to support at least one Archiver size.
[1-20-2011 15:29:00] INFO:    The Archiver requirements have successfully passed verification.
[1-20-2011 15:29:00] INFO:    One or more CUIS components are available for configuration.
[1-20-2011 15:29:00] INFO:    CUIS verification complete.
[1-20-2011 15:29:03] INFO:    User selection: Cisco Archiver
[1-20-2011 15:29:03] INFO:    Displaying screen: Archiver - Product Selection
[1-20-2011 15:29:06] INFO:    User selected: Cisco Unified Contact Center Enterprise 7.5(1)
[1-20-2011 15:29:06] INFO:    Displaying screen: Archiver - User Verification
[1-20-2011 15:29:27] INFO:    The user has selected to use the default instance.
[1-20-2011 15:29:27] INFO:    Internal name for instance MSSQLSERVER: MSSQL.1
[1-20-2011 15:29:27] INFO:    TCP/IP connectivity is enabled for the SQL Server instance: MSSQLSERVER
[1-20-2011 15:29:28] INFO:    The connection to the local SQL Server as an administrator was successful.
[1-20-2011 15:29:28] INFO:    Microsoft SQL Server Agent is present.
[1-20-2011 15:29:28] INFO:    The SQL Server default instance is valid.
[1-20-2011 15:29:28] INFO:    User selection: Domain user
[1-20-2011 15:29:28] INFO:    Domain entered: HCMCPT
[1-20-2011 15:29:28] INFO:    The domain user login was successful.
[1-20-2011 15:29:28] INFO:    Standard username: ArchiverUser
[1-20-2011 15:29:28] INFO:    The database security login is already present: HCMCPT\ArchiverUser
[1-20-2011 15:29:28] INFO:    The common Archiver database is not present.
[1-20-2011 15:29:28] INFO:    The Archiver product-specific data is not present.
[1-20-2011 15:29:28] WARNING: Small database size selection is disabled.
[1-20-2011 15:29:28] WARNING: Large database size selection is disabled.
[1-20-2011 15:29:28] ERROR:   No Archiver database size is supported on this system.
[1-20-2011 15:29:38] INFO:    Displaying screen: Archiver - Database Size

I follow the workarround of the bug but it did not help. I still encounter with the same error.
Do I need to upgrade to later version before run the config tool?
Regards,
Thanh

Similar Messages

  • Win 7 boot from VHD "License Error: Booting from VHD is not supported on this system"

    I am trying to set up my TP 500 model 2242-CTO to boot from a virtual hard drive, per the instructions at
    http://blogs.technet.com/keithcombs/archive/2009/0​5/22/dual-boot-from-vhd-using-windows-7-and-window​...
    I get all the way thru the Win 7 setup, but just as the login screen is presented, I get the subject message.  That's the end of story, can't go further.
    I just updated the BIOS and hard drive firmware to the latest versions on the Lenovo site as of today (3.09), and the hard drive firmware said no update needed.
    Anybody know what will work?  Just academic now, as I will go ahead an reinstall win 7 normally....
    Thanks !

    Not true, mine is win7 pro and works, I think the problem is that lenovo makes a custimized boot for their utility

  • Can't load App Store on my macBook Pro.  Error is; You cannont open the application "App Store" because it is not supported on this system.  How can I upgrade App Store or download new version?

    Can't load App Store on my macBook Pro.  Error is; You cannont open the application "App Store" because it is not supported on this system.  How can I upgrade App Store or download new version?

    Problem now resolved as I upgraded to Snow Leopard 10.6.  Seems App Store doesn't like anything previous to 10.6.

  • Error: HTTP method GET is not supported by this URL

    Hey,
    I am attempting to overload the doGet method with a Wrapper class I created for HttpServletReponse that extends it of course and I receive this error: "HTTP method GET is not supported by this URL". I figure you can't change the method as I have but I am curious if there is anyway I can go about to accomplish what I am trying to do. Basically I just need to extend the HttpServletResponse so that it contains a few more variables and such.
    public class test extends HttpServlet {
        public void doGet(HttpServletRequest request,  XmlServletResponseWrapper response) throws ServletException, IOException{
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("</head>");
            out.println("<body>test</body>");
            out.println("</html>");
       

    public void doGet(HttpServletRequest request, XmlServletResponseWrapper response)
    is not the same method as
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    The servlet container is going to call the later method and since you did not overwrite it to provide an implementation it sees the GET request as not being supported.
    what you are looking to do is something like this:
    public void doGet(HttpServletRequest request,  HttpServletResponse response) throws ServletException, IOException{
            XmlServletResponseWrapper myResponse = (XmlServletResponseWrapper ) response;
            myResponse .setContentType("text/html");
            PrintWriter out = myResponse .getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("</head>");
            out.println("<body>test</body>");
            out.println("</html>");
       

  • New preview function for iPad–error message "Multiple page sizes not supported"

    When I try to use the new preview function with my iPad I get the error message "Multiple page sizes within a layout are not supported". I have a page that is 768 x  1296. I would really like to preview this folio before publishing. Any suggestions?

    If you're trying to create an article that scrolls vertically, you can create a 768x1296 article in a 1024x768 folio, but you need to select a Smooth Scrolling option when you create or import the article, or in the Article Properties dialog box.

  • Export 500gb database size to a 100gb file system space in oracle 10g

    Hi All,
    Please let me the know the procedure to export 500gb database to a 100gb file system space. Please let me know the procedure.

    user533548 wrote:
    Hi Linda,
    The database version is 10g and OS is linux. Can we use filesize parameter for the export. Please advice on this.FILESIZE will limit the size of a file in case you specify multiple dumpfiles. You could also could specify multiple dump directory (in different FS) when given multiple dumpfiles.
    For instance :
    dumpfile=dump_dir1:file1,dump_dir2:file2,dump_dir3:file3...Nicolas.

  • I run mac os 10.4.11 and firefox 7 will not open, and I get an error message saying firefox is not supported on this version of mac os. is there a different version I can download? Am I missing something?

    firefox used to work no problem, I updated firefox a few month ago, now firefox will not open and I get the error message as above

    As of Firefox 4.0 and newer one needs both OSX 10.5+ and a Intel Mac.
    The last version to work on a Intel Mac using OSX 10.4.* is Firefox 3.6.*
    http://www.mozilla.org/en-US/firefox/all-older.html
    http://www.mozilla.org/en-US/firefox/7.0/system-requirements/
    http://www.mozilla.org/en-US/firefox/4.0/system-requirements/
    http://www.mozilla.org/en-US/firefox/3.6/system-requirements/

  • I just tried to play a video podcast on iTunes and received and error message saying QuickTime is not supported by this version of iTunes?

    I have the latest version of iTunes installed on my iMac. Everything on the iMac is up to date. I am perplexed by iTunes not supporting QuickTime. Has anyone else experienced this?

    Try relaunching iTunes in 32-bit mode first, as per the instructions in the following document:
    iTunes for Mac: Older media files may require iTunes to reopen in 32-bit mode

  • When I download the Firefox update 4, I get an error message that it is "not supported in this architecture"

    I have a Mac with 10.5.8 I have just updated this account on the Mac after letting it alone for a year. Now I can not download and run the latest version of Firefox.'''F'''

    Firefox 4 requires at least OS X 10.5 and an Intel Mac. There is a third party version of Firefox 4 that runs on OS X 10.4/10.5 and PPC Macs, for details see http://www.floodgap.com/software/tenfourfox
    If you prefer, you can get the latest version of Firefox 3.6 from http://www.mozilla.com/en-US/firefox/all-older.html

  • I keep getting the error message that "charging is not supported with this accessory" when I plug my ipod touch in to my macbook.

    Neither the macbook nor ipod touch are new, and I'm using the cable provided with the ipod touch as normal and so was just hoping someone could explain what might be causing this? thanks!

    Hi,
    Thanks for your suggestions, tried all those but no luck until I tried another cable. Also found another thread on here with a similar complaint that suggested cleaning the cable/ipod connection which I've now done which seems to have done the trick-thanks again!

  • Raid Utility Error Message "raid utility is not supported on this computer"

    I am not doing anything that I know of, but Raid Utility keeps opening up on its own, and a message pops up multiple times a day telling me "raid utility is not supported on this computer"
    Anyone have any idea how to fix this?

    Network startup is if you want to start your macbook using a network drive.
    Keep your startup settings at your current drive.
    Raid utility doesn't apply to you since you only have one hard drive installed, unless you installed another hard drive in your optical bay.
    Fibre Channel is another type of hard drive connection via network connection.
    You can't access things you don't have installed in your macbook.  Those are there in case you decide to have a network drive start up options, a raid configuration of a fibre channel network drive.

  • I turned on my iMac, mounted Firefox and was told it would no longer work - Download and install Firefox4 (FREE) which I did, but now the error message says it's not supported on this architecture. What to do?

    Today I turned on my iMac (OSX 10.5.8 1.8GHz PowerPC G5, 1.25 GB DDR SDRAM) mounted Firefox and was prompted to Download and install Firefox4 (FREE) which I did.
    I was prompted to replace the previous Firefox with the newly downloaded and now I can't find the old version and the new version says it isn't supported on this architecture. The icon has a zero with a slash across it.
    What do I have to do?

    Firefox 4 requires at least OS X 10.5 and an Intel Mac.
    * http://www.mozilla.com/firefox/4.0/system-requirements/
    For an unofficial Firefox 4 compatible version (TenFourFox) that runs on PowerPC Macs with OS X 10.4.11 or OS X 10.5.8 you can look at:
    * http://www.floodgap.com/software/tenfourfox/
    Firefox 3.6.x (Mac OS X 10.4 and later) can be found here:
    * http://www.mozilla.com/en-US/firefox/all-older.html

  • Can't open Error '' Not Supported on This system"

    I downloaded a game i think it was made for Mac OS 7,8-9 Not Sure. My friend had it on his Mac Laptop the one made of plastic and coloured.
    Anyway, how do i open it. Under Mac OS 9?
    Thanks.

    There are a couple of emulators if your willing to make the effort:
    SheepShaver
    Mini vMac
    You'll find them at VersionTracker or MacUpdate.

  • Estimation of database size

    Hi,
    How can I estimate the database size required for a Netweaver system?
    I am installing a new system with ESS and MSS.
    And what is the rate that this database will normally grow?
    Appreciate any reply.
    Thanks,
    Tzyy Ming

    Hi Tzyy,
    you should expect around 20 GB for a newly installed system. The growth rate very much depends on the scenarios you intend to use (MSS/ESS) and the number of users. Since it is almost impossible to predict the growth rate we always make sure that we provide enough space for at least 12 month under "worst case scenario" conditions - that works for us.
    You might want to check the SAP Quicksizer (hardware estimate). It gives you an idea of what are relevant factors for your scenario: http://service.sap.com/quicksizing
    Sven

  • Oracle database size

    how can I get the maximun size allocated by DBA for the database.
    and in this size how much space is free now.

    user10648897 wrote:
    how can I get the maximun size allocated by DBA for the database.
    and in this size how much space is free now.Tried google for the same?
    http://www.google.co.in/search?hl=en&q=query+to+find+database+size+oracle&meta=
    And this forum as well?
    http://forums.oracle.com/forums/search.jspa?threadID=&q=query+to+find+database+size+&objID=f61&dateRange=last90days&numResults=15
    Cheers
    Aman....

Maybe you are looking for