Jump to content

executing script on system startup


Guest mrgenius
 Share

Recommended Posts

Guest mrgenius

Hi All!

 

I have a script syslog2mysql.sh which i want to execute on system startup. How to do it?? i tried putting it in /etc/init.d/ but its not working!

 

Following are the contents of script

 

#!/bin/bash

 

if [ ! -e /tmp/mysql.pipe ]

then

          mkfifo /tmp/mysql.pipe

  fi

  while [ -e /tmp/mysql.pipe ]

  do

              mysql -u syslog --password=xxxxx syslog < /tmp/mysql.pipe >/dev/null

      done

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...