Announcement

Collapse
No announcement yet.

remove "last message repeated"

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    remove "last message repeated"

    Hi everybody.

    I'll like to remove one repetitive error from /var/log/message. It's from a program that detect the keep alive from the load balance and the program thinks that is one not authority access. I'll try to do a modification of /etc/syslog.conf but it doesn't work.

    Any suggest?.

    Thanx in advance.

    #2
    Re: remove "last message repeated"

    How about solving the original problem? :P Depending on the way you launch the "talkative" application, however, you could suppress it's messages by forwarding them to the Digital Nirvana:

    Code:
    application > /dev/null 2>&1

    Comment


      #3
      Re: remove "last message repeated"

      Thank you for your answer!.

      I tried your advice, but It doesn't work. The message continue in the /var/log/message.

      The line that I use to execute it is:

      su - username -c '/usr/local/application/script_application 2>/dev/null &'

      I used

      application > /dev/null 2>&1

      too. But It doesn't work.

      The reason to use one specified user is the environment.

      Regards.

      Comment

      Working...
      X