ACSE 3.3: user infomation back to default and duplicate user

Hi everyone,
I need your help !
I have ACS Solution Engine (ACSE) 3.3.
I have encountered the following symptom.
1:
User "ktaka" and "kina" have already existed/registered in ACSE local database.
I tried to change the password for both "ktaka" and "kina" by selecting each user then click "add/edit" button.
But all parameters (Supplementary User Information) for both users were emptied, that is, all parameters got back to factory default.
Have anyone met this symptom ?
Is it the bug ?
I researched Cisco Bug database, but I could not find any related defect.
2:
And then, I re-entered the appropriate parameters into empty field/information for both users and clicked/executed" submit" button.
3:
I executed the research begin the character "k" to confirm whether above 2: operation was successfully done.
But the result of research, two "ktaka" and two "kina" were found, that is, there are duplicated users in ACSE local database.
Have anyone met this symptom ?
Is it the bug ?
I researched Cisco Bug database, but I could not find any related defect.
Your information would be greatly appreciated.
Shinichi

To fix it use the dbcompact command via the serial console.
Here is the link for steps for running dbcompact.
http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_server_for_solution_engine/3.3/installation/guide/appliance/cliap.html#wp1204893
Regards,
~JG
Do rate helpful posts

Similar Messages

  • Power Options Settings keep resetting back to default and system goes to sleep.

    Hi I have Windows Server 2012 Standard R2 installed on one of my servers, in which there is an issue with the power settings. In power options it keeps selecting the Balanced plan by default. Even if I manually change the power plan it still keeps resetting
    back to the default Balanced plan which in turn puts the System to sleep after 4 hours. Please let me know if there is a way to resolve this issue. I have even tried using powercfg -SETACTIVE from command prompt by giving the appropriate Power Scheme
    GUID. But it didn't work either. Anyone please help me with this issue. Thanks in advance.

    Again, this is something outside the bounds of Windows Server.  Windows Server does not do that.  I looked at default installations of both physical and virtual servers and there is nothing there to cause a sleep or power off.
    In fact, the only real power setting I see in the Balanced power plan is to turn off the display after x amount of time.
    Do you have power savings enabled on your NIC card?  Is there some setting in VMware? 
    . : | : . : | : . tim

  • The tilt on my ipad 2 has stopped working, already reset back to default and loaded 6.1, still not working

    Has anyone any ideas other than the Apple shop to fix the tilt issue, reset back to factory default, still not working, changed the locking position, and more or less given up. Seen lost of notices around Temple Run and how this seems to happen after installing that particular app.

    You have indicated you did a restore with no affect. You don't mention specifically if it is not working with multiple applications or not. I have had one or two apps that quit recognizing the tilt. If it is just one or two apps, delete and re-download/install those apps. If it is with all apps, then you are indeed looking at a trip to Apple to get it fixed. Or you can contact them through one of the options here: http://www.apple.com/support/contact/

  • I enlarged my screen, now I can get it back to normal size. I want to run Firefox, however I want it back to default and I don't know how to do that. Please help.

    I uninstalled and reinstalled, that didn't help. Please I want my bottom toolbar back.

    Settings>General>Accessibility>Zoom>OFF

  • IMac stopped recognizing my Internet connection (ethernet) after announcing an IP address conflict (all of a sudden, after 6 years). How can I get the whole network settings part back to default and start over?

    I had no trouble getting on line until last week when a message came on that
    IP address 192.168.0.139
    was in use by
    04:0c:ce:54:c1:e5 
    DHCP Server 192.168.0.1
    Since that time, no matter if I plug it into one router or the other  (I use a router in my office to share the one ethernet cable that comes down the hall) it claims that the ethernet is working and it knows that it is connected to the Internet,but it cannot access the Internet. IT seems to be stuck in a cycle of navel-gazing, constantly focused on its own ethernet IP address.
    All I know how to do is operate the thing; we have no IT person here. A visitor set up our network for us a few years ago. Only the iMac has this problem; my PC laptops go online just fine. But all my work is on the iMac.

    First thing to try is renewing the DHCP lease.
    System Preferences > Network.
    Do you have a green dot next to Ethernet? If so, with ethernet selected in the left pane;
    Check the location is set to 'automatic'
    Check 'configure IPv4' is set to DHCP
    Click the 'Advanced' button
    Check that DHCP is selected in that window for IPv4
    Turn off IPv6 (gives a conflict on some routers)
    Click the button 'renew DHCP lease'
    That should persuade the router to give you a different IP.

  • Cursor does not change back to default after resize

    Hi all,
    I have a modal decorated JDialog, in normal situation, i put the cursor on the border, the curosr will change to resize cursor, so i drag it and the dialog is resized, after resized, the cursor should change back to default cursor when i enter the dialog again, but i found that somotimes after several resizes, the cursor fail to change back to default and remain as the resize cursor.

    Hi
    I think there is nothing so strange to cause the problem so I did not put it before, but if someone can help me I will be thankful.
    public class TestFrame extends JPanel
         private static TestFrame testFrame;
         private JFrame frame;
         public static void main(String args[])
              JDialog.setDefaultLookAndFeelDecorated(true);
              testFrame = new TestFrame();
              testFrame.mainImplementation();
         private void mainImplementation()
              JButton jButton = new JButton("Show dialog");
              jButton.addActionListener(new ButtonActionListener());
              add(jButton);
              frame = new JFrame();
              frame.setContentPane(this);
              frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              WindowListener l = new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
              frame.addWindowListener(l);
              frame.setBounds(0, 0, 500, 500);
              frame.setTitle("Test");
              frame.show();
         class ButtonActionListener implements ActionListener
              public void actionPerformed(ActionEvent e)
                   MyDialog jDialog = new MyDialog(frame);
                   jDialog.setVisible(true);
         class MyDialog extends JDialog
              public MyDialog(Frame owner)
                   super(owner);
                   setModal(true);
                   getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
                   JLabel label1 = new JLabel("Label1");
                   JTextField textField1 = new JTextField();
                   textField1.setEnabled(false);
                   textField1.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JLabel label2 = new JLabel("Label2");
                   JTextField textField2 = new JTextField();
                   textField2.setEnabled(false);
                   textField2.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JLabel label3 = new JLabel("Label3");
                   JTextField textField3 = new JTextField();
                   textField3.setEnabled(false);
                   textField3.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JPanel panel = new JPanel(new GridLayout(3, 2));
                   panel.add(label1);
                   panel.add(textField1);
                   panel.add(label2);
                   panel.add(textField2);
                   panel.add(label3);
                   panel.add(textField3);
                   getContentPane().add(panel);
                   pack();
    }

  • Firefox should allow users to maintain their zoom setting when switching to a different page, instead of going back to default every time.

    Page text appears very small on laptop while utilizing full resolution on a dell XPS laptop. Zoomed-in a notch or two it looks good. Readable without squinting. But browse to a different page, and its tiny all over again. Firefox, being the best browser on the web, should think about allowing users to maintain their zoom value when going to a different page, instead of going back to default. Just an idea... I know there's alot of laptops out there and if it's hard for me to read with good eyes, I'm sure it's hard for others.

    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • User preferences reverted back to default - mail gone

    Preferences seem to have gone back to default. I have only 1 user account on my mac. All bookmarks, mail account details, appearence etc have all reverted. The only thing that I have done today that was out of the ordinary was 'organising my fonts' according to Suitcase website - ie deleting/moving unwanted system fonts from various folders. I'm sure I haven't deleted any significant system folders as all my trashed files are still in bin. Any ideas?

    OK you can stand down - problem over! Had a chat with those nice people from Customer Care - turned out I had accidentally moved my User Library folder into somewhere else. Hence the OS created a whole new Libray folder with default preference...Duh!
    Best way to find out if you have done this is run a search on one of the files within Library and it will show up in 2 places - just replace the newly created folder with the moved one.

  • Customize toolbar on Safari doesnt stick reopen and back to default!

    I upgraded to safari 4 final on MAc Leopard. all updates but when I customize the toolbar it stays there fine till I exit safari and re open it. The icons appear for a split second then go back to default.
    I tried rebooting but the customized tool bar wont stay there.

    Hi
    Might be a corrupted preference file. In the Finder, go to Your User Account>Library>Preferences folder. Move to the trash the com.apple.safari.plist file. Then, restart Safari. Preferences have now returned to default values. Reset any custom preferences and tool icons on the toolbar.
    Let me know if the toolbar settings now stick.

  • Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers

    Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers
    We have 4 Windows Server 2008 R2 print servers, all of which has the same printer queues installed on them that are utilized by a 3rd party printing program that does a round-robin load balancing scheme.  
    All printers are a combination of HP and Xerox all running some variation of the HP UPD and the Xerox UPD.  Some use the PCL 5 and some use the PCL 6 version determined by age of printer and need.  
    There are typically two printer queues for each physical printer.  
    Example:
    LOCATION_ROOM
    LOCATION_ROOM_TRAY2
    The regular queue is ok being left with default setting,
    The _TRAY2 queues are set to print to "labels" or "pre-printed" paper type or a specific tray.
    From time to time, these _TRAY2 queues will revert back to a factory default state and lose the setting to print to a specific paper type or tray.  Sometimes it happens to the _TRAY2 queue on all 4 servers, sometimes just 1 server, etc.  No rhyme
    or reason.
    Disabled Bi-directional options on both the HP and Xerox UPDs per another article on the internet that said bi-directional could cause the printer to send back settings to the driver and cause this issue.  Even with this option off, we continue to see
    printer _TRAY2 queue settings revert back to factory default and lose their specific paper and tray settings.  We have ruled out the possibility that users or other technicians are the ones making these changes so we suspect it is some interaction between
    the servers, printer drivers and printers themselves causing the issue.  
    Any insight would be greatly appreciated.

    I'd start by using one of the print drivers included in Windows for a few of the printers and confirm it's the universal driver that is causing the issue.
    HP installs some other processes and services on the machine which communicate with the HP devices. 
    PML and something else.  You might want to shut those down and see if these processes are the ones modifying the settings.
    Run process monitor to truly identify which processes is causing the modifications. 
    Alan Morris formerly with Windows Printing Team

  • Change Mailbox Behavior - Can it be changed back to default?

    I mistakenly changed the setting and want to change it back to default, i.e. keep sent box on the server rather than on my iPhone. Is it possible? If not, does not mean the messages in my sent box will stay on my server AS WELL AS on my iPhone? Thanks.
    I was a blackberry user and find I can not set the mail account as my blackberry. I want my iPhone to just check new emails when I am by my desktop. I do not want it to sync with my mail system which take too much space. Can anybody here help me?

    # Click the orange Firefox button or, if the application menu is enabled, click '''Tools''' followed by '''Options'''
    # Click on the '''Content''' icon/category
    # Next to where it says ''Block popup windows ''click the '''Exceptions''' button
    # Select the site for which you wish to revoke the exception then click the '''Remove Site''' button

  • Album info DATED BUT goes back to default

    Dear Sony amd Sony Users,
    I have been updating my Walkman album information for a couple of times already and my patience is thinning out. Yes, I do use the Download Music Info and it is great for some selected songs. But those songs that are saved through Bluetooth needs to be updated individually. It worked fine for a period of time but recently those Songs received through bluetooth are going back to default. The album cover, album title and album artists are gone. I have to update it individually again. I have been doing it for a couple of times already alread.
    How can I save those album information PERMANENTLY? Please help. Thank you
    On the verge of losing it,
    Sirius.

    The way I do it is to transfer those files to a Pc and use a free program called mp3tag and change the embedded info then transfer them back
    For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.   Richard P. Feynman

  • How to: Resetting install location back to "Default Location..." (Windows 8)

    I recently upgraded my PC and added an SSD as my primary drive. Like most people, I also have a secondary drive for most apps and files. In the Creative Cloud App manager, I changed the Installation location to a directory on my secondary drive. The problem was, Some applications I wanted on my SSD for performance reasons and there was no way to change back to the setting "Default location..." Because CC installs both a 32 bit and 64 bit version of some applications, I wanted to make sure that it put them in the correct "Program Files" or "Program Files (x86)" folders. After some poking about in the config files I finally found out how to do it.
    (NOTE: The path below is for Windows 8 and possibly Windows 7, for other OS's it will likely be in a similiar path)
    Close the Adobe Creative Cloud app (File > Quit)
    Open this file in notepad: C:\Users\ExampleUser\AppData\Local\Adobe\OOBE\com.adobe.accc.apps.....prefs
    Search through the text untill you find the install location that you set. Mine was "E:\Program Files\"
    Delete only that path (leave the &lt;) and then save the file.
    Relaunch the Adobe Creative Cloud app
    Then check the Install Location in Preferences. It should now be set back to "Default Location..."

    For Mac OS X (Yosemite) I found you need to do the following:
    1. Quit the Creative Cloud Application in the title bar.
    2. Open Activity Monitor, find the Process named "Adobe Desktop Service". Click the stop sign icon with an "x" in it and select Quit to stop this process.
    3. Edit the file ~/Library/Application Support/Adobe/OOBE/com.adobe.accc.apps.....prefs
       a. Same as in the Windows case, find the line with "installLocation" and delete everything containing a file path between the following "&gt;" and "&lt;"
    4. Restart Adobe Creative Cloud from /Applications/Adobe Creative Cloud/Adobe Creative Cloud

  • After uninstall, reinstall, and reset, I cannot get Firefox back to defaults. How can I?

    I successfully uninstalled Firefox. Then I reinstalled it. All the presets and addons were STILL there. Then I tried a reset. That only cleared my homepage, but all the addons and plugins are there. I want this to be back to default. How can i do that?

    ''Gnospen [[#answer-692497|said]]''
    <blockquote>
    How do you want it to be and why?
    </blockquote>
    I guess I'll have to repeat myself for the third time. I want firefox to be back to the default.
    ''Gnospen [[#answer-692497|said]]''
    <blockquote>
    remember we are just users not employees at mozilla so take out you frustration some other way.
    </blockquote>
    I completely understand your are not an employee. I'm not angry because the program doesn't work. I'm upset because contributors don't take the time to read my post before making suggestions that I've already tried.
    To reiterate, I want Firefox to be back to defaults. Obviously there is a malware/spyware/virus problem. How do i get back to the defaults? I found and read all the Mozilla support posts about "resetting," and as I said, that does not work. So... (understanding my situation) how do I get back to the firefox defaults?

  • Macbook air settings back to default?

    I opened my Macbook Air today and it had completely gone back to default settings. My e-mail wasnt set up anymore, Microsoft Word, Powerpoint, etc were no longer installed, and I lost all my saved documents. The laptop had died 2 or 3 days ago so could that be why? Has this happened to anyone and if so what caused it?

    Do you have other user accounts on this Mac?
    I have not heard of Mac OS X resetting itself before, and certainly your files would not erase themselves unless you were using a guest account which does reset upon logout.

Maybe you are looking for

  • I am unable to print color photos from i photo using a Brother Printer

    I am unable to print color photos from i photo using a Brother MFC-6490CW all in one.  The photos appear to be in grayscale.  I have checked the printer settings, but for some reason I am not able to access the color management on my printer from pri

  • Zip binary data and save zip file to disk at bsp

    Hi, I try to compress (zip) binary data (for example a picture) and then give it to a html page. I use the cl_abap_gzip=>compress_binary method and it seems to work. But when I save the zip-file to harddisk over the popup at the html - page, the file

  • FCPX project turned grey. Timeline duration reads 00:00

    When I play the project from the project library, despite the timeline reading the duration is 00:00 I see all of the footage and the cuts, but I hear no audio. I tried trashing my layouts, my prefernces,repairing my disks, and copying the project bu

  • XCM configuration does not start up

    hi, I deployed a standard b2b shop and configured the shop. The shop works fine. In the next step I created a develpment track in NWDI and deployed the created shop to the same J2EE Engine. When I try to call up the XCM configuration an error page co

  • Update agent in workgroup server

    Hi, I have DPM server and two client servers to backup. all servers in workgroup. I installed the agents manually and attached the DPM server. The DPM Server see the clients, but when I'm going to DPM console "Management -> Agents" I can see "Agent s