Cannot schedule log rotation from LMS32 GUI

All,
I've been experimenting with the log rotation feature from LMS 3.2 UI (CS > Server > Admin > LogRotation) and have noticed when I try to schedule the logrotation with any backup directory (/var/adm/CSCOpx/log for example) it indicates that I cannot schedule it for that directory structure.  I even tried /tmp which is wide open for writing from any account but it still errors out.
I am familiar with the logrot.pl -c from the CLI but I need to try this first from the UI.   Has anyone run into this before or know if this is a product issue or a mis-configuration on my part?
Regards,
Michael

Exactly what error are you getting when you try and schedule the rotation?  You should be able to use both /var/adm/CSCOpx/log and /tmp.

Similar Messages

  • Sjsws7 log rotation policy using CLI

    Is it possible to set the log rotation policy using CLI.
    We want to script the process of log rotation using CLI instead of configuring it from the console.

    Thanks for you interest in Web Server 7.
    Yes, Web Server 7 has a rich CLI and
    Log rotation like most administration tasks is configurable using the CLI.
    To schedule log rotation you need a create an "event" . The event as can be seen from the usage could be restart/reconfig/rotate-log/rotate-access-log etc.
    wadm> create-event
    Usage: create-event [--echo] [--no-prompt] [--verbose] [--no-enabled] config=name command=restart|reconfig|rotate-log|rotate-access-log|update-crl|commandline ( (--time=hh:mm [--month=1-12] [--day-of-week=sun/mon/tue/wed/thu/fri/sat] [--day-of-month=1-31]) | --interval=60-86400(seconds) )
    CLI014 config is a required option.
    I will walk thru the steps in the CLI starting from scratch..
    1. Create a config.
    2. Create an event
    3. Create an instance of the config
    4. Start the instance
    5. Deploy the config ( This is a workaround. You should not have to to do this in the upcoming Technology Preview Release 3).
    That's it.. The log should be rotated as per the parameters specified when you create the event.
    I am pasting below the actual result of following the above steps.
    In the example below the event scheduled is a rotate-log event. rotate-log rotates the error log. If you need to rotate the access logs use rotate-access-log instead.
    bash-3.00# ./wadm user admin port 18911
    Please enter admin-user-password>
    Sun Java System Web Server 7.0-Technology-Preview-2 B06/19/2006 17:16
    wadm> date
    Sat Sep 16 09:52:27 IST 2006
    wadm> create-config -- server-name servername http-port 18923 test
    CLI201 Command 'create-config' ran successfully
    wadm> create-event config=test command=rotate-log --time=09:55
    CLI201 Command 'create-event' ran successfully
    wadm> list-events config=test verbose --all
    command time interval
    rotate-log {09:55}
    wadm> create-instance --config=test wspqes032
    CLI201 Command 'create-instance' ran successfully
    wadm> start-instance --config=test
    CLI204 Successfully started the server instance.
    wadm> deploy-config test
    CLI201 Command 'deploy-config' ran successfully
    wadm> date
    Sat Sep 16 09:53:22 IST 2006
    wadm> pwd
    /space/hari/ws7/tpv2/bin
    wadm> cd ../https-test/logs
    wadm> date
    Sat Sep 16 09:53:37 IST 2006
    wadm> ls -al
    total 8
    drwxr-xr-x 2 root root 512 Sep 16 09:53 .
    drwxr-xr-x 10 root root 512 Sep 16 09:53 ..
    -rw-r--r-- 1 root root 143 Sep 16 09:53 access
    -rw-r--r-- 1 root root 683 Sep 16 09:53 errors
    wadm> date
    Sat Sep 16 09:55:18 IST 2006
    wadm> ls -al
    total 8
    drwxr-xr-x 2 root root 512 Sep 16 09:55 .
    drwxr-xr-x 10 root root 512 Sep 16 09:53 ..
    -rw-r--r-- 1 root root 143 Sep 16 09:53 access
    -rw-r--r-- 1 root root 0 Sep 16 09:55 errors
    -rw-r--r-- 1 root root 869 Sep 16 09:55 errors.200609160955
    wadm>
    In this example we have configures the log to be rotated at 09:55 am and as can be seen this has been done.
    We appreciate your valuable feedback. Please do mail us at [email protected]
    Hope that helps,
    Hari.
    Message was edited by:
    hari19

  • HT4865 I just bought this ipad and cannot log out from icloud because i dont have the password.how can i log out from icloud?need help

    I just bought this ipad and cannot log out from icloud because i dont have the password.how can i log out from icloud?need help

    You need to return it to the seller and get your money back.  You cannot reset or use the device with another AppleID installed unless you know the password for that ID.
    If the device has been jailbroken, no one on here can give you any further help...the Terms of Use prohibit us from doing so.

  • I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work)

    I keep getting an error when trying to update an app- cannot connect to store. I logged out from my account and tried to log back in and got the same error. I am doing all this from my phone since I no longer own a personal computer (only work) since I use iCloud and I tunes match

    YAY!!! Saved it in my Mac's Firefox Bookmarks for easy future access!
    Hope you are having a lovely afternoon today! I'm about ready to go bobo....I have an early meeting, and I don't want to oversleep! The nice part is that I work remotely, so I only have to wake up 15 minutes or so before the meeting.... I don't even use an alarm clock anymore (really, my iPhone alarm, which is much more pleasant), unless I have to get up at 6:30 or something....
    TMI?
    GB

  • GUI receiving log messages from JMS

    Hi,
    I have three classes: GUI, EventListener and JMSListener. What I want to do is to create a login dialog. The user enters his username and password, presses the login button and waits (as this process can take a while). While waiting, he can see log messages sent via JMS.
    I set up a TextListener (in my case a JMSListener) and a subscriber like it is described here: http://java.sun.com/products/jms/tutorial/1_3_1-fcs/doc/client.html#1027256.
    But the JMSListener never gets any message although the connection is set up correctly (this is just a guess as no exception is thrown). I think that this is a GUI problem. Because if only the JMSListener is running, it does receive messages. Is it possible that the GUI blocks somehow?
    Here is some code... First the class that holds the main method:
    package de.dtnet.client.run;
    import javax.swing.JFrame;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    import de.dtnet.client.gui.SWDemoGUI;
    import de.dtnet.client.listener.SWDemoEventlistener;
    public class SWDemoClient {
        private static SWDemoGUI swdemo = null;
         * @param args
        public static void main(String[] args) {
            swdemo = new SWDemoGUI();
            SWDemoEventlistener listener = new SWDemoEventlistener(swdemo);
            swdemo.registerEventlistener(listener);
    }The code from the GUI (only the important parts):
    package de.dtnet.client.gui;
    import de.dtnet.client.listener.SWDemoEventlistener;
    public class SWDemoGUI extends JFrame implements Serializable {
        private static final long serialVersionUID = 1L;
         * Default constructor
        public SWDemoGUI() {
            initialize();
         * Creates widget objects and puts everything together
        public void initialize() {
            // GUI with JTextPane for log messages
        public void logOK(String msg) {
            log(OK, msg);
        public void logInfo(String msg) {
            log(INFO, msg);
        public void logWarning(String msg) {
            log(WARNING, msg);
        public void logError(String msg) {
            log(ERROR, msg);
        public void log(String level, String msg) {
            StyledDocument doc = messagesTextPane.getStyledDocument();
            try {
                doc.insertString(doc.getLength(), msg + "\n", doc.getStyle(level));
            } catch (BadLocationException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            messagesTextPane.setCaretPosition(doc.getLength());
        public void registerEventlistener(SWDemoEventlistener listener) {
            loginBtn.addActionListener(listener);
            usernameTxt.addFocusListener(listener);
            passwordField.addFocusListener(listener);
    }The enventlistener:
    package de.dtnet.client.listener;
    // imports
    public class SWDemoEventlistener implements ActionListener, FocusListener {
        private SWDemoGUI gui = null;
        private String logLevel = null;
        private String logMessage = null;
        private TopicConnectionFactory conFactory = null;
        private TopicConnection connection = null;
        private TopicSession topicSession = null;
        private Topic topic = null;
        private TopicSubscriber subscriber = null;
        public SWDemoEventlistener(SWDemoGUI gui) {
            this.gui = gui;
            initJMS();
        private InitialContext getInitialContext() {
            // set the properties for the InitalContext
            Properties env = new Properties( );
            env.put("java.naming.provider.url",
                    "jnp://localhost:1099");
            env.put("java.naming.factory.initial",
                    "org.jnp.interfaces.NamingContextFactory");
            env.put("java.naming.factory.url.pkgs", "org.jnp.interfaces");
            try {
                // initalize and return the InitalContext with
                // the specified properties
                return new InitialContext(env);
            } catch (NamingException ne) {
                System.out.println("NamingException: " + ne);
            return null;
        private void initJMS() {
            try {
                // Obtain a JNDI connection
                InitialContext jndi = getInitialContext();
                Object ref = jndi.lookup("ConnectionFactory");
                // Look up a JMS connection factory
                conFactory = (TopicConnectionFactory) PortableRemoteObject.narrow(
                        ref, TopicConnectionFactory.class);
                // Create a JMS connection
                connection = conFactory.createTopicConnection();
                // Create a JMS session objects
                topicSession = connection.createTopicSession(
                        false, Session.AUTO_ACKNOWLEDGE);
                // Look up a JMS topic
                topic = (Topic) jndi.lookup("topic/testTopic");
            } catch (NamingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (JMSException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
        public void actionPerformed(ActionEvent e) {
            if (e.getSource() == gui.getLoginButton()) {
                // Do some authentication stuff etc.
                /* Now awaitening messages from JMS */
                subscribe(sessionID);
        public void subscribe(Long sessionID) {
            String selector =  "SessionID='" + sessionID.toString() + "'";
            gui.logInfo("Selector: " + selector);
            try {
                //subscriber = topicSession.createSubscriber(topic, selector, true);
                subscriber = topicSession.createSubscriber(topic);
                JMSListener listener = new JMSListener(gui);
                subscriber.setMessageListener(listener);
                connection.start();
                gui.logOK("Verbindung zu JMS erfolgreich");
            } catch (JMSException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
    }and finally the JMSListener:
    ackage de.dtnet.client.listener;
    public class JMSListener implements MessageListener {
        private SWDemoGUI gui = null;
        private String logLevel = null;
        private String logMessage = null;
        public JMSListener(SWDemoGUI gui) {
            super();
            this.gui = gui;
        public void onMessage(Message incomingMessage) {
            System.out.println("You got message!");
            try {
                MapMessage msg = (MapMessage) incomingMessage;
                logMessage = msg.getString("Message");
                logLevel = msg.getString("Level");
            } catch (JMSException e) {
                e.printStackTrace();
            Runnable logTopicMessage = new Runnable() {
                public void run() {
                    System.out.println("Now updating the GUI");
                    gui.log(logLevel, logMessage);
            SwingUtilities.invokeLater(logTopicMessage);
            System.out.println("Message fully retrieved!");
    }I spent a whole day on this and I'm really becoming desperate as I can't see where the problem is and my time is running out (this is for my diploma thesis)! Does anyone of you? Please!
    Thank you!
    -Danny

    Hello Veronica4468,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning Messages and SMS:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Cannot open survey files from email after upgrading SAP gui to 720

    Cannot open survey files attachments from email after upgrading SAP gui from 640  to 720.
    Tried uninstalling & reinstalling but still error persists,
    Error is : cannot split connection string: /h/server name/s/sapdp00 ( from SAP GUI security )
    Please advise.

    Can't say I have seen this error before but if it is pertaining to the new security module within 7.20, which are much more strict then 6.40, I would look under the SAP GUI configuration options.  Focus on Security > Security settings.
    There are pages and pages of rules which can be defined.
    A test could be to disable all of them on an isolated machine and set them to allow and see if your problem persists.  If the error is resolved, it is something in there you need to address.
    Regards,
    Zecher

  • I cannot log in from my google account from safari on iphone4

    I cannot log in from my google account from safari on my iphone 4. whenever i enter my username and password, it returns to login window again. please help!

    Hi CT,
    Thank you for your interest in my plight with the **** Safari 11.x Ever since the upgrade, this has happend. I don't have Gues User as it's singel user Latop only. Besides if some relaive want to use I have the security chain so they can'tlook at my Mail or use Safari to login automatically to some regular sites which the Security chain demand the Key first.
    I have never tried the Safe mode nor I knew about at all. Thank for this in advance. But what is difference .. may be some driver for some peripheral or plug -ins may be not loaded like Windows 7 ... the graphic is basic EGA resolution and a few othere things don't function. Right?
    What's the experience in Safe Mode for OSX Mac 10.6.8 ?
    I check my Intego FIrewall Virus Banner X6 and Little Snitch too to see if either one is the culprit ... but Nil find there too ?? I'm at a lost as to how to go about getting access to eBay Account and my Yahoo Account which I use for other webbased communication and registeration and never the Alias email of my current ISP.
    I shall do the Safe Mode thing and see what occurs ?

  • I find that after updating my ipad to ios8 banking applications to deposit funds no longer work. The camera image rotates from horizontal to vertical and cannot be corrected. Is this a new ios8 error. I tried two different bank applications for ipad.

    I find that after updating my ipad to ios8 banking applications to deposit funds no longer work. The camera image rotates from horizontal to vertical and cannot be corrected. Is this a new ios8 error. I tried two different bank applications for ipad.

    Hi, Thanks for that further bug description In Your Last Message That Describes The Problem I Am Having perfectly and is exactly the same for me.
    unfortunately that fix for my camera Powershot G6 does not work or apply as the view pictures switch is different on G6 is not usable during download as once you plug in DC/USB cable it turns off, and makes no diff and problem still exists exactly as you just described.
    thanks anyways "Selz Boy"
    it has been 17 days since apple promised to get back to me within 3-5 days hopefully with a solution, but I have still not heard from them.
    They blew me off, i guess, probably i will have to wait for new Yosemite OS update, which they pre-warned me could take as much as 6 months.
    I cannot believe apple released this new update with such major bug issues for camera downloads and that horrible "Photos" pgm which has all sorts of downgrades in features, usefulness and new bugs compared to iPhotos which I just finally got used to and was much better software.
    I am starting to lose faith in Apple and I am getting that Microsoft "FEEL" like I used to have when I was a PC user, which was why I originally switched to Apple  computers in first place.
    Oh well got my fingers crossed here.
    Thankfully the memory card reader solution  is working well, but cost me $45.

  • Cannot download/update Apps from iPhone 4. Able to log in to iTunes Store

    Here is the skinny,
    I cannot download apps or update from my iPhone. It gives me a warning "Cannot download this app. Please use the Itunes Store from the computer." I am able to connect to iTunes on the iPhone, but just cannot download anything. From my computer (Pc/Mac) I can download apps, but it's annoying that I have to sync to update my apps.
    This happens when I am on both wifi/3G. I've reseted my phone's network setting.
    I've been searching around and I do not have shipwreck or sylvian game thing.
    Thank you

    I have the same problem too, I can't download updates on my iPhone or on iTunes, I can't sign in to my Apple account after I logged out, I tried changing my Password but nothing has changed. When I turn off my iPhone and try to long on to my account in the App Store, it says "Cannot Access (acc email). Review your account information in Settings."
    What's going on? I still can't access my Apple account on iTunes.

  • Firefox will not start unless reboot has been done. If start is attempted, Firefox gets hung up, cannot close or log off from Windows.

    I can start Firefox when I have just rebooted. If I close Firefox and come back later and try to restart Firefox, it tries to start but never does. A Control/Alt/Delete shows that it is running, but it does not load the screen. I cannot turn Firefox off or log off from Windows.

    I can start Firefox when I have just rebooted. If I close Firefox and come back later and try to restart Firefox, it tries to start but never does. A Control/Alt/Delete shows that it is running, but it does not load the screen. I cannot turn Firefox off or log off from Windows.

  • Cannot log out from skype

    The past few weeks, no matter if I log out from skype, people tell me that I keep being online and I cannot understand the reason. I have changed my password twice but the problem cannot be solved. Any ideas people?

    Hi, Zaralee, and welcome to the Community,
    Please refer to this:
    http://community.skype.com/t5/Security-Privacy-Trust-and/Possible-to-sign-out-of-all-active-sessions...
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Cannot access CIFS shares from Windows 2008R2 on NSS3000

    Hi,
    I am trying to upgrade our 2008 domain to 2008R2 but with that last version we cannot access to cifs shares on the NSS3000. Access from all other clients are OK. It was 100% OK under 2008...
    Whether I use the IP or the FQDN, I got an error from Windows 2008R2. From IP, I got "No process is on the other end of pipe." and from network Gui, I got "Windows cannot access \\nas0026CB647BC6. Check the spelling of the name...blabla. Details : Error Code : 0x80070035, The network path was not found".
    On the NAS, I got this errors in the cifs logs :
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: rpc_api_pipe: Remote machine WIN2008-PDC.bluemoon.holywell.leics pipe \NETLOGON fnum 0x4002returned critical error. Error was NT_STATUS_PIPE_DISCONNECTED 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: [2011/02/24 14:12:45, 0] rpc_client/cli_pipe.c:rpc_api_pipe(790) 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: rpc_api_pipe: Remote machine WIN2008-PDC.bluemoon.holywell.leics pipe \NETLOGON fnum 0x4002returned critical error. Error was NT_STATUS_PIPE_DISCONNECTED 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: [2011/02/24 14:12:45, 0] rpc_client/cli_pipe.c:rpc_api_pipe(790) 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: rpc_api_pipe: Remote machine WIN2008-PDC.bluemoon.holywell.leics pipe \NETLOGON fnum 0x4002returned critical error. Error was NT_STATUS_PIPE_DISCONNECTED 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: [2011/02/24 14:12:45, 0] rpc_client/cli_pipe.c:rpc_api_pipe(790) 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: rpc_api_pipe: Remote machine WIN2008-PDC.bluemoon.holywell.leics pipe \NETLOGON fnum 0x4002returned critical error. Error was NT_STATUS_PIPE_DISCONNECTED 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: [2011/02/24 14:12:45, 0] rpc_client/cli_pipe.c:rpc_api_pipe(790) 
    Feb 24 14:12:45 NAS0026cb647bc6 winbindd[28457]: rpc_api_pipe: Remote machine WIN2008-PDC.bluemoon.holywell.leics pipe \NETLOGON fnum 0x4002returned critical error. Error was NT_STATUS_PIPE_DISCONNECTED 
    Feb 24 14:12:48 NAS0026cb647bc6 winbindd[28457]: [2011/02/24 14:12:48, 0] rpc_client/cli_pipe.c:rpc_api_pipe(790) 
    It is likely to be an incompatibility between Windows 2008R2 smbv2 and the NSS3000 smbd but I can't find any firmware update and I can't find the process to allow in the registry.
    I can ping it, I can connect on the web interface, I can connect on FTP but no CIFS at all.
    Firmware version running is 1.20.1. Hardware rev : V03.
    Any idea?

    Hi SpaceBass, have you looked into sharepoints or into Netinfo manager. I have been playing around with sharepoints and it does let me enter non local users into the sharing prefs- albeit manually. Only thing is , depending on the number of macs you have, it could be a long and tedious job entering it all by hand. Netinfo may have an easier way, I'll do some more digging and post back.
    Cheers.

  • Weblogic 5.1 SP 6 log rotation

    Hi all,
    I use Weblogic SP6 and, as there is a rotation with the access.log
    file, I would like to configure a log rotation for the weblogic.log
    file because it increases quickly. But, there seems to be no property
    to configure that.
    I tried to do it with system commands but this always makes with
    Weblogic server fail. Does anyone has already done that and how?
    Thanks in advance
    Fanny

    Hi there,
    I've managed to configure XSQL with Weblogic 5.1 SP6 and to run the demos from the Oracle site.
    My system configuration is :
    -Windows NT 4.0
    -Weblogic 5.1 SP 6
    -Oracle 8.1.7
    -Xalan version=2.0.1
    -Xerces version=1_3_1 (Support SAX2)
    CLASSPATH="${oradriver.lib}:${servlets.lib}:${jaxp.lib}:${xerces.lib}:${xalan.lib}:${xsql.lib}:${weblogic.home.dir}/lib/weblogic510sp${weblogic.sp.version}boot.jar:${weblogic.home. dir}/classes/boot"
    WEBLOGIC_CLASSPATH="${jaxp.lib}:${xerces.lib}:${xalan.lib}:${xsql.lib}:${weblogic.lib}:${jdom.lib}:${oreilly.lib}:${jdriver.lib}:${build.classes.dir}"
    Now when trying to integrate my XSQL framework in the big picture of the webapp - I'm getting errors.
    the error is:
    =============================================
    <WebAppServletContext-ads> looking for taglib uri
    /tlds/taglib.tld as resource /WEB-INF/tlds/taglib.tld
    in Web Application root:
    Sat Jun 16 14:30:37 PDT 2001:<E>
    <WebAppServletContext-ads> Servlet failed with
    Exception
    java.lang.NoSuchMethodError:
    javax.servlet.jsp.tagext.TagAttributeInfo: method
    <init>(Ljava/lang/String;ZZLjava/lang/String;)V not
    found
    at
    weblogic.servlet.jsp.MyAttInfo.<init>(StandardTagLib.java:34)
    at
    weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java:280)
    =========================================
    If I remove from the classpath the servlets.lib(which contains servlets.jar) I'm able to access my webapp again but I cannot process the .xsql extensions.
    -the error from Weblogic appserver is:
    cannot find XSQLServletPageProcessor
    My question is that somebody has any ideea of what other type of servlet lib will be needed or if something else in the configuration files has to be modified?
    Thanks in advance,
    dan stepanov
    null

  • LMS - log rotation based on time period

    Dear All
    can we configure log rotation to be based on time period (ex:past one year)instead of log file size.
    if it is feasable please advise who to do it?
    Regards;
    Antonio

    I am not sure if I understand it correct, but you can do this easily by defining the expected file size of the log file to rotate;
    logrot runs on a scheduled basis and checks if the log file has reached the defined file size - if not it will do nothing else the file will be backed up. The key point is the configured file size;
    I use this for the syslog file to have a backup for each month:
        schedule logrot to run every first of each month and set the file size to a low value guarantes that I ve got a file for every month;
    from the online help of logrot:
    http://:1741/help/cmf/index.html?sysad_adm_logrotate.html
    4. Specify the number of archive revisions. If you do not want to keep any archives, enter 0 (the default) for this option.
    5. Specify the maximum file size. The log will not be rotated until this size is reached. The unit is in kilobytes (KB). The default is 1024 KB or 1 MB.
    why do you want to keep all log messages of a complete year in one file - what do you want to do?

  • Cron-based log rotation problem

    In setting up Sun Web Server 6.1 2005Q4 SP5, I successfully restarted schedulerd after setting up cron-based log rotation for 12 AM for each Web instance. But still no rotated logs. I notice these messages in /app/sunone/https-admserv/logs/scheduler.error:
    Tue Mar 14 00:00:00 2006: Warning: cron has no information about finished child process 11303
    Tue Mar 14 23:00:03 2006: Warning: Process 11303 didn't finish in time, had to terminate it
    Any ideas?
    Thanks!

    This bug is addressed in SunSolve:
    Document ID:     4953147
    Title:     cron based log rotation fails when admin user is root and instance is non-root
    The workaround is to update this line in WS_ROOT/https-admserv/config/scheduler.conf:
        User <non-root user ID such as "nobody">to:
        User rootThen I restarted cron from the Server Manager to make sure the change was picked up.

Maybe you are looking for

  • Using the same apple ID

    I've recently lost my iphone and the problem is that I was using the same apple Id of my friend. Is there anything I can do to bring my videos and photos back? As I never did any back up of them

  • How do I extract photos from a video?

    I have some videos that I shot with my digital camera and brought into iphoto that I would like to make into some photos. How would I go about that? Thanks!

  • Quicktime Player Pro- Problems playing dvds!!!

    hi i've download the quicktime player pro so i can use it with my new ipod (30GB photo, video, music). I have got the key and typed that in and can now use quicktime player pro.. BUT when i go to open a file or folder and play the dvd.. it does not l

  • Flash Debugger issue

    Hi, I'm trying to use the Flash debugger but when I put breakpoints in nothing happens except I see the swf.  I can't run through the code or see any variables?! I'm coding in AS3 and I'm using CS4 professional on Windows XP professional platform.  T

  • I have 10.7.5 mac pro can I upgrade to Mountain lion?

    How to upgrade from 10.7.5 lion to Mountain lion?