How to start collector inventory from scratch

Hi there,
I would like to completely redo collector inventory from scratch by deleting all current devices in collector DB and re-injecting a new list.
How should I proceed?
Thanks,
Nic

Hi Nic,
 If you mean restart the discovery process, you would do that by unmanaging all devices by going to "Management:->"Unmanage Devices" and the doing discovery. Hope that answers the question
Thanks
-Sanjeev

Similar Messages

  • Hi Friends... I'm trying to delete a back-up file on mu TC but I get the message "The operation could not be completed because the item "bands" is in use. I'd like to start the Back from scratch, could help me out with deleting the current file?

    Hi Friends...
    I’m trying to delete a back-up file on mu TC but I get the message “The operation could not be completed because the item “bands” is in use. I’d like to start the Back from scratch, could help me out with deleting the current file?

    Sorry, I am very confused. I asked the following question....
    Is this the only backup file on your Mac, or do you have other backup files and data on the Time Capsule disk?
    The answer that you gave was....
    This is the only one
    Now you are saying that....
    But I have lots of other files on Time Capsule! The back up file is only one of them.
    Can you clarify, please?

  • Hello, sombody knows how to start MS Excel from LabView (version 8.2)? Thanks

    Hello, sombody knows how to start MS Excel from LabView (version 8.2)? Thank you in advance.
    Regards Robert

    In the example finder  ">Help>Find Examples >>search for Excel", you'll find a sample program called "ActiveX Event Callback for Excel".
    It opens the Excel Application..  You can build on this to open/create new worksheet(s), etc.
    RayR
    Message Edited by JoeLabView on 06-20-2007 08:21 AM
    Attachments:
    OpenExcel.PNG ‏34 KB

  • My daughter is locked out of her ipad...has been for months. we want to start using it now and are trying to disable it and start all over from scratch. what should we do?

    my daughter is locked out of her ipad. has been for months. we want to disable it and start all over from scratch.what do we do?

    Will the iPad power up by holding down on the power button until the Apple logo appears on the screen? If it does, try restoring using recovery mode.
    Recovery mode - Support - Apple

  • Start SEM BPS from scratch

    Hi Friends,
    If you have SAP BW stuff (Infocubes) in place and you are required to start planning in SEM BPS from scratch, then how and where exactly do we need to start. Both SEM and BW are on the same machine. Any information, on all types of things to be taken care of, will be appreciated.
    Versions: SAP BW 3.0B, SEM 3.1B
    I hope that i made sense.
    Regards.

    Hi Gopi,
    maybe the teched lesson on planning with BW-BPS are a good starting point (also if you do not have the latest release): https://www.sdn.sap.com/sdn/events.sdn?page=teched04_sessions.htm
    A list of overview documents can be found here in the BI area: https://www.sdn.sap.com/sdn/developerareas/bi.sdn?page=bw_bps.htm
    Enjoy,
    Tobias

  • How to start TreeCellEditor apart from default behaviors

    Hi,
    I'm trying to find the way to start TreeCellEditor apart from default behaviors which are triple mouse click, click-pause-click and F2 (in Windows).
    The only way I found for starting editor in tree is JTree.startEditingAtPath. However the problem is I designed to separate the action(model) from the tree (view). So In my action class, it knows only TreeModel but not JTree.
    How could I set my action class to tell the JTree to start editor? Is there any approach to do so but do not break my design?
    Thanks in advance.

    I had to do a custom JTree to get my editor to work the way you wanted.
    I needed mine to allow a double mouse click. Then when in edit mode have the text default to a 'select all'.
    All of the 'Rollup' items are custom objects but this should give you an idea of what to do.
    class CustomUI extends BasicTreeUI
        protected boolean startEditing(TreePath path, MouseEvent event) {
            // default to standard behavior
            boolean result = super.startEditing(path, event);
            // start editing this node?
            if (result) {
                // start peeling the object to get a handle to the editor
                RollupTree rollupTree = (RollupTree) event.getSource();
                RollupTreeEditor editor = (RollupTreeEditor) rollupTree.getCellEditor();
                // set Icon if node a trader
                RollupNode node = (RollupNode) rollupTree.getSelectionPath().getLastPathComponent();
                if (node.isTrader()) {
                    editor.setEditorIcon(IconLoader.getIcon("Trader.png"));
                JTextField textField = editor.getEditor();
                // they want to default so that the edit text
                // is in selected mode when they first start to edit the field
                textField.selectAll();
            return result;
        }I also did a custom default editor which looks like:
    class RollupTreeEditor extends DefaultTreeCellEditor
        public RollupTreeEditor(final JTree tree, final RollupTreeCellRenderer renderer) {
            super(tree, renderer);
         * Allow people to toggle the icon when in edit mode
         * @param editor Icon
        public void setEditorIcon(Icon editor) {
            editingIcon = editor;
         * If the <code>realEditor</code> returns true to this
         * message, <code>prepareForEditing</code>
         * is messaged and true is returned.
         * @param event EventObject
         * @return boolean
        public boolean isCellEditable(EventObject event) {
            if (event instanceof MouseEvent) {
                // double click for edit
                if (((MouseEvent) event).getClickCount() == 2) {
                    return true;
            return false;
        public DefaultTextField getEditor() {
            return (DefaultTextField)this.editingComponent;
    }Then in my custom JTree I set these up like...
            // turn on tooltips
            ToolTipManager.sharedInstance().registerComponent(this);
            // used by two setters so create reference
            RollupTreeCellRenderer renderer = new RollupTreeCellRenderer();
            // customizing the icons for the tree
            // setting the folder icons
            // renderer.setOpenIcon(IconLoader.getIcon("Open.gif"));
            // renderer.setClosedIcon(IconLoader.getIcon("Folder.gif"));
            renderer.setLeafIcon(null); // drop the icon
            // add renderer to highlight Inventory nodes with Red or Blue text
            setCellRenderer(renderer);
            // set the editor
            setCellEditor(new RollupTreeEditor(this, renderer));
            // set UI to over ride editing event method
            setUI(new CustomUI());A nice touch is to add a mouse listener so if the user clicks out of the editor it cancels the edit mode. So here is the simple call:
            tree.addMouseListener(new MouseAdapter()
                public void mouseClicked(MouseEvent e) {
                    // get handle to tree
                    RollupTree tree = (RollupTree) e.getSource();
                    // exit editor if in edit mode
                    tree.getCellEditor().stopCellEditing();
                public void mouseReleased(MouseEvent e) {
                    if (e.isPopupTrigger()) {
                        menu.show(e.getComponent(), e.getX(), e.getY());
            });Does this help answer your question?

  • How to start WAD report from MSS with Hierarchy ?

    Hello to all.
    I have a WAD Report that the parameters for it are: Org  unit - as the root, and a year/month.
    The report receive an org unit and display data for it and for all org units under it in the Org. structure.
    I start the report from the MSS.
    In R/3 in table T77MWBBWS I created an entry for that report with Reference char. = "ORG_STRU" instead of "0orgunit".
    The report ignores the Org unit that I choose from the MSS selection screen, and starts with the Root Org unit of my Org structure.
    What to do in order to start the report with the Org unit that i select and to get results for all the org. units under it ?
    Thanks, Pazit Atar.

    I am also facing same problem.
    I want to know how the org unit which is selected on MSS screen is passed to backend R/3 report (which is using PNP logical db)
    PLEASE HELP.

  • How to protect my iphone from scratched

    How to protect my iphone from scratched

    Do not remove it from the box...
    But if you must, and you want no scratches, you will need something like the Otter Box Defender or the LifeProof case.
    But they all make the phone much bigger.  I use the Otterbox, I like the extra bulk and protection.
    Google is your friend, this has been discussed a Zillion times.

  • How to start a selection from an exact time of the clip?

    Hello,
    I'm a new user of iMovie '08 and I'd like to know how to start the selection of a part of a clip from an exact point.
    Let me explain (I'm not english, so I hope everyone understands) :
    Let's say I have one clip that lasts 1h20' ok? I remember that at 9'20'' there's a scene I want to catch. And It's very important to be at 9'20'' because there's a peculiar frame I want.
    Let's also say that my problem is not about a single point, but a lot of them. I wrote down (as an example) these parts I want.
    9'20''
    15'10''
    36'00''
    ok?
    How do I place myself in that part of the clip? I don't want to look at the scene since I don't remember it well (I wrote down the minutes since I short in memory).
    I hope this is possible. Thank you very much for your help

    QuickTime Player Pro (a $30 upgrade of QuickTime Player, available from Apple) lets you do exactly what you want to do. It lets you select a chunk of any movie using one of three time formats (one is min:sec:frames). You can Copy that chunk and Paste it into a new movie. In other words, it lets you extract just the frames you want that go in a new movie that you save as a standalone movie.
    To use the new movie you would drop it in the iMovie Events folder. (Or more likely, create a new folder in the iMovie Events folder where you drop all your chunk movies.)
    When you next launch iMovie it will generate thumbails for each of your chunk movies. Now you can use them in iMovie 7 like any other import.
    If you have iMovie 6 you can also do it there, for it shows you the min:sec:frames of your one long clip. To use any chunk elsewhere, you would use iMovie 6 to split the clip, then use the Share selected clip only checkbox in the export dialog window to export each chunk to a Full Quality DV movie.
    Karl

  • How to develop portal application from scratch

    Hi,
    I am on the process of evaluating sun one portal server in windows environment.
    currently i am planning to develop some sample portal application from scratch.
    can someone help me how to go about in this with some reference materials/links.
    Thanks and Regards,
    Senthil

    portal application means
    1- portlets (portlet logic + portlet view)
    or
    2- channel + provider (original Sun portal components)
    have a look at
    http://docs.sun.com/app/docs/doc/819-1370
    additionally you can develop JSR168 portlets in combination with JSF straight with Sun Creater 2
    which is currently available as a free beta version
    cheers
    /ulf

  • How to start a browser from within a java program?

    I want to make a help file for my java program and want to run the browser from the menu of my program.
    How can I start my browser from my program?
    A small code will be helpful.
    Thanks.
    Niteen

    This should work on Windows without having to know where the browser is located. See http://www.javaworld.com/javaworld/javatips/jw-javatip66.html for more details
      public static void viewHtml(URL url, boolean fixHtmlExtension){
          String cmd = "rundll32 url.dll,FileProtocolHandler " + url.toExternalForm();
          if (fixHtmlExtension){
            //There is a bug in rundll32. For http requests, it doesn't like .html or .htm extensions,
            //but replacing the 'm' with '%6D' works. 
            //This fix is not needed for file requests.
            if (cmd.endsWith(".htm")){
              cmd = cmd.substring(0,cmd.length()-1) + "%6D";
            else if (cmd.endsWith(".html")){
              cmd = cmd.substring(0,cmd.length()-2) + "%6Dl";
          Process process = Runtime.getRuntime().exec(cmd);
          try{
            process.waitFor();
          catch(InterruptedException e){

  • Starting backups over from scratch

    I made the mistake of deleting backups to make room on my external disk. Now I tried to erase all the backups and start fresh, but it still does not work. Is there a way to redo all the backups from scratch without zeroing out the disk?

    I deleted the entire backups file and relaunched the drive, its backing up from scratch now. But now its saying I only have 90 of 150 GB open on the external drive. I only have some old word files and such, maybe 1-2 GB at most. My new backups is only 35 GB, so whats with the extra 30 GB being taken up?

  • How to start managed server from admin server both running

    I have an admin server on one machine and created a managed server on different
    machine, I am not able to start managed server from either machine. When I used
    the admin server machine to start the managed server remotely I got this message
    Connecting to http://fkeita:7001...
    <Jul 17, 2002 11:11:06 AM EDT> <Notice> <Security> <090082> <Security initializi
    ng using realm myrealm.>
    <Jul 17, 2002 11:11:06 AM EDT> <Notice> <WebLogicServer> <000328> <Starting WebL
    ogic Managed Server "managedserver3" for domain "admindomain">
    <Jul 17, 2002 11:11:28 AM EDT> <Emergency> <WebLogicServer> <000350> <Unable to
    create a server socket on Channel Default for: BFINKELMAN/90.0.0.25, port: 8002.
    java.net.BindException: Cannot assign requested address: JVM_Bind Perhaps the
    a
    ddress BFINKELMAN/90.0.0.25 is incorrect or another process is using port 8002.>
    <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <Security> <090085> <Server failed
    to
    bind to any port such that it is not reachable from the console.>
    <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <WebLogicServer> <000342> <Unable to
    initialize the server: Fatal initialization exception>
    When I tried to connect managed server from its machine to admin server (running
    on separate machine ) I got this error
    Starting WebLogic Server...
    Connecting to http://fkeita:7001...
    <Jul 17, 2002 11:15:18 AM EDT> <Notice> <Security> <090082> <Security initializi
    ng using realm myrealm.>
    <Jul 17, 2002 11:15:18 AM EDT> <Critical> <WebLogicServer> <000364> <Server fail
    ed during initialization. Exception:java.lang.SecurityException: Authentication
    for user system denied
    java.lang.SecurityException: Authentication for user system denied
    at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
    SecurityServiceManager.java:978)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:1116)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
    at weblogic.Server.main(Server.java:31)
    >
    <Jul 17, 2002 11:15:18 AM EDT> <Emergency> <WebLogicServer> <000342> <Unable to
    initialize the server: Fatal initialization exception
    Throwable: java.lang.SecurityException: Authentication for user system denied
    java.lang.SecurityException: Authentication for user system denied
    at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
    SecurityServiceManager.java:978)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:1116)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
    at weblogic.Server.main(Server.java:31)
    >
    The WebLogic Server did not start up properly.
    Exception raised:
    java.lang.SecurityException: Authentication for user system denied
    at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
    SecurityServiceManager.java:978)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:1116)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
    at weblogic.Server.main(Server.java:31)
    Reason: Fatal initialization exception
    Throwable: java.lang.SecurityException: Authentication for user system denied
    java.lang.SecurityException: Authentication for user system denied
    at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
    SecurityServiceManager.java:978)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:1116)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
    at weblogic.Server.main(Server.java:31)
    Thanks.

    "fkeita" <[email protected]> wrote in message
    news:[email protected]...
    >
    I have an admin server on one machine and created a managed server ondifferent
    machine, I am not able to start managed server from either machine. When Iused
    the admin server machine to start the managed server remotely I got thismessage
    >
    Connecting to http://fkeita:7001...
    <Jul 17, 2002 11:11:06 AM EDT> <Notice> <Security> <090082> <Securityinitializi
    ng using realm myrealm.>
    <Jul 17, 2002 11:11:06 AM EDT> <Notice> <WebLogicServer> <000328><Starting WebL
    ogic Managed Server "managedserver3" for domain "admindomain">
    <Jul 17, 2002 11:11:28 AM EDT> <Emergency> <WebLogicServer> <000350><Unable to
    create a server socket on Channel Default for: BFINKELMAN/90.0.0.25, port:8002.
    java.net.BindException: Cannot assign requested address: JVM_Bind Perhapsthe
    a
    ddress BFINKELMAN/90.0.0.25 is incorrect or another process is using port8002.>
    >
    Try running netstat to see whether another process is actually running at
    the given address/port.
    Also check using ifconfig/ipconfig or directly checking /etc/hosts file of
    the box to see whether the ips addreses are correct.
    <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <Security> <090085> <Serverfailed
    to
    bind to any port such that it is not reachable from the console.>
    <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <WebLogicServer> <000342><Unable to
    initialize the server: Fatal initialization exception>
    When I tried to connect managed server from its machine to admin server(running
    on separate machine ) I got this error
    Starting WebLogic Server...
    Connecting to http://fkeita:7001...
    <Jul 17, 2002 11:15:18 AM EDT> <Notice> <Security> <090082> <Securityinitializi
    ng using realm myrealm.>
    <Jul 17, 2002 11:15:18 AM EDT> <Critical> <WebLogicServer> <000364><Server fail
    ed during initialization. Exception:java.lang.SecurityException:Authentication
    for user system denied
    java.lang.SecurityException: Authentication for user system denied
    atweblogic.security.service.SecurityServiceManager.doBootAuthorization(
    SecurityServiceManager.java:978)
    atweblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:1116)
    at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
    at weblogic.Server.main(Server.java:31)
    >Seems to be some issue with security credentials.
    Try running the manageed server directly (as sort of admin) by not passing
    the admin server url and bringing it just like an admin server.
    See if this works. If it works, then soemthing wrong in the way the admin
    server is receiving the request/security credentials from managed server.
    Also make sure both managed and admin servers are on the same patch/service
    pack level.
    -Sabha

  • How to start managed server from admin server both running on separate machines

              I have an admin server on one machine and created a managed server on different
              machine, I am not able to start managed server from either machine. When I used
              the admin server machine to start the managed server remotely I got this message
              Connecting to http://fkeita:7001...
              <Jul 17, 2002 11:11:06 AM EDT> <Notice> <Security> <090082> <Security initializi
              ng using realm myrealm.>
              <Jul 17, 2002 11:11:06 AM EDT> <Notice> <WebLogicServer> <000328> <Starting WebL
              ogic Managed Server "managedserver3" for domain "admindomain">
              <Jul 17, 2002 11:11:28 AM EDT> <Emergency> <WebLogicServer> <000350> <Unable to
              create a server socket on Channel Default for: BFINKELMAN/90.0.0.25, port: 8002.
              java.net.BindException: Cannot assign requested address: JVM_Bind Perhaps the
              a
              ddress BFINKELMAN/90.0.0.25 is incorrect or another process is using port 8002.>
              <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <Security> <090085> <Server failed
              to
              bind to any port such that it is not reachable from the console.>
              <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <WebLogicServer> <000342> <Unable to
              initialize the server: Fatal initialization exception>
              When I tried to connect managed server from its machine to admin server (running
              on separate machine ) I got this error
              Starting WebLogic Server...
              Connecting to http://fkeita:7001...
              <Jul 17, 2002 11:15:18 AM EDT> <Notice> <Security> <090082> <Security initializi
              ng using realm myrealm.>
              <Jul 17, 2002 11:15:18 AM EDT> <Critical> <WebLogicServer> <000364> <Server fail
              ed during initialization. Exception:java.lang.SecurityException: Authentication
              for user system denied
              java.lang.SecurityException: Authentication for user system denied
              at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              SecurityServiceManager.java:978)
              at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              erviceManager.java:1116)
              at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              at weblogic.Server.main(Server.java:31)
              >
              <Jul 17, 2002 11:15:18 AM EDT> <Emergency> <WebLogicServer> <000342> <Unable to
              initialize the server: Fatal initialization exception
              Throwable: java.lang.SecurityException: Authentication for user system denied
              java.lang.SecurityException: Authentication for user system denied
              at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              SecurityServiceManager.java:978)
              at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              erviceManager.java:1116)
              at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              at weblogic.Server.main(Server.java:31)
              >
              The WebLogic Server did not start up properly.
              Exception raised:
              java.lang.SecurityException: Authentication for user system denied
              at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              SecurityServiceManager.java:978)
              at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              erviceManager.java:1116)
              at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              at weblogic.Server.main(Server.java:31)
              Reason: Fatal initialization exception
              Throwable: java.lang.SecurityException: Authentication for user system denied
              java.lang.SecurityException: Authentication for user system denied
              at weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              SecurityServiceManager.java:978)
              at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              erviceManager.java:1116)
              at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              at weblogic.Server.main(Server.java:31)
              Thanks.
              

              I used startmanagedweblogic managedserver1 http://fkeita:7001 to try to start managed
              server, but it did not work, and got error messages. Error messages are posted
              on my first posting.
              "pankaj" <[email protected]> wrote:
              >Use the startManagedWeblogic.cmd / .sh script to start your
              >Managed/Clustered servers
              >
              >
              >"fkeita" <[email protected]> wrote in message
              >news:[email protected]...
              >>
              >> I have an admin server on one machine and created a managed server
              >on
              >different
              >> machine, I am not able to start managed server from either machine.
              >When I
              >used
              >> the admin server machine to start the managed server remotely I got
              >this
              >message
              >>
              >> Connecting to http://fkeita:7001...
              >> <Jul 17, 2002 11:11:06 AM EDT> <Notice> <Security> <090082> <Security
              >initializi
              >> ng using realm myrealm.>
              >> <Jul 17, 2002 11:11:06 AM EDT> <Notice> <WebLogicServer> <000328>
              ><Starting WebL
              >> ogic Managed Server "managedserver3" for domain "admindomain">
              >> <Jul 17, 2002 11:11:28 AM EDT> <Emergency> <WebLogicServer> <000350>
              ><Unable to
              >> create a server socket on Channel Default for: BFINKELMAN/90.0.0.25,
              >port:
              >8002.
              >> java.net.BindException: Cannot assign requested address: JVM_Bind
              >Perhaps
              >the
              >> a
              >> ddress BFINKELMAN/90.0.0.25 is incorrect or another process is using
              >port
              >8002.>
              >>
              >> <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <Security> <090085> <Server
              >failed
              >> to
              >> bind to any port such that it is not reachable from the console.>
              >> <Jul 17, 2002 11:11:29 AM EDT> <Emergency> <WebLogicServer> <000342>
              ><Unable to
              >> initialize the server: Fatal initialization exception>
              >>
              >> When I tried to connect managed server from its machine to admin server
              >(running
              >> on separate machine ) I got this error
              >>
              >> Starting WebLogic Server...
              >> Connecting to http://fkeita:7001...
              >> <Jul 17, 2002 11:15:18 AM EDT> <Notice> <Security> <090082> <Security
              >initializi
              >> ng using realm myrealm.>
              >> <Jul 17, 2002 11:15:18 AM EDT> <Critical> <WebLogicServer> <000364>
              ><Server fail
              >> ed during initialization. Exception:java.lang.SecurityException:
              >Authentication
              >> for user system denied
              >> java.lang.SecurityException: Authentication for user system denied
              >> at
              >weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              >> SecurityServiceManager.java:978)
              >> at
              >weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              >> erviceManager.java:1116)
              >> at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              >> at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              >> at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              >> at weblogic.Server.main(Server.java:31)
              >> >
              >> <Jul 17, 2002 11:15:18 AM EDT> <Emergency> <WebLogicServer> <000342>
              ><Unable to
              >> initialize the server: Fatal initialization exception
              >> Throwable: java.lang.SecurityException: Authentication for user system
              >denied
              >> java.lang.SecurityException: Authentication for user system denied
              >> at
              >weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              >> SecurityServiceManager.java:978)
              >> at
              >weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              >> erviceManager.java:1116)
              >> at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              >> at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              >> at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              >> at weblogic.Server.main(Server.java:31)
              >> >
              >>
              >***************************************************************************
              >> The WebLogic Server did not start up properly.
              >> Exception raised:
              >> java.lang.SecurityException: Authentication for user system denied
              >> at
              >weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              >> SecurityServiceManager.java:978)
              >> at
              >weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              >> erviceManager.java:1116)
              >> at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              >> at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              >> at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              >> at weblogic.Server.main(Server.java:31)
              >> Reason: Fatal initialization exception
              >> Throwable: java.lang.SecurityException: Authentication for user system
              >denied
              >> java.lang.SecurityException: Authentication for user system denied
              >> at
              >weblogic.security.service.SecurityServiceManager.doBootAuthorization(
              >> SecurityServiceManager.java:978)
              >> at
              >weblogic.security.service.SecurityServiceManager.initialize(SecurityS
              >> erviceManager.java:1116)
              >> at weblogic.t3.srvr.T3Srvr.initialize1(T3Srvr.java:703)
              >> at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:588)
              >> at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:276)
              >> at weblogic.Server.main(Server.java:31)
              >>
              >> Thanks.
              >
              >
              

  • How to start sql server from cmd

    
     i am starting sql server from command prompt but i get error message as under :
    2014-04-04 23:41:55.90 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:55.90 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).
    2014-04-04 23:41:56.21 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:56.21 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).
    2014-04-04 23:41:56.50 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:56.50 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).
    2014-04-04 23:41:56.80 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:56.80 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).
    2014-04-04 23:41:57.10 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:57.10 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).
    2014-04-04 23:41:57.41 Server      Error: 17058, Severity: 16, State: 1.
    2014-04-04 23:41:57.41 Server      initerrlog: Could not open error log file ''.
     Operating system error = 3(failed to retrieve text for this error. Reason: 1510
    5).

    Hi,
    I agree with Erland. You need to verify and specify the correct path for the error log in Startup parameters.
    For example: -eC:\Program Files\Microsoft SQL Server\MSSQL.n\MSSQL\LOG\ERRORLOG
    To configure startup options
    1.In SQL Server Configuration Manager, click SQL Server Services.
    2.In the right pane, right-click SQL Server (<instance_name>), and then click Properties.
    3.On the Startup Parameters tab, in the Specify a startup parameter box, type the parameter, and then click Add.
    For example, to start in single-user mode, type -m in the Specify a startup parameter box and then click Add. (When you restart SQL Server in single-user mode, stop the SQL Server Agent. Otherwise, SQL Server Agent might connect first and prevent you from
    connecting as a second user.)
    4. Click OK.
    5.Restart the Database Engine.
    For more information, please see:
    Configure Server Startup Options (SQL Server Configuration Manager)
    http://technet.microsoft.com/en-us/library/ms345416.aspx
    Database Engine Service Startup Options
    http://technet.microsoft.com/en-us/library/ms190737.aspx
    Thanks.
    Tracy Cai
    TechNet Community Support

Maybe you are looking for