Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6348793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:29:29+00:00 2026-05-24T21:29:29+00:00

I have created an application that is basically a deamon written in C. It

  • 0

I have created an application that is basically a deamon written in C. It is stopped and started using a shell script. Specifically, to stop it, kill is used to send a SIGTERM signal. The PID of the daemon is stored in a file on the disc in the format:

1234\n

A user reports that they cannot stop the daemon, the shell script returns the error:

kill: `': not a pid or valid job spec

The PID is fetched and used in the shell script as follows:

if [ -f "${PID_FILE}" ]
then
    FCPID=`head -n 1 $PID_FILE`
    kill -n SIGTERM "${FCPID}"
    RETVAL=$?
    if [ $RETVAL -eq 0 ]
    then
        rm -f ${PID_FILE}
        echo "OK"
    else
        echo "FAIL"
        exit 1
    fi
else
    echo "Wasn't running"
    exit 1
fi

It works fine on my machine (Ubuntu 10.04) and so far no one else has reported this problem. Does anyone recognise the error or is there a mistake in the shell script that could cause problems on some platforms?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T21:29:29+00:00Added an answer on May 24, 2026 at 9:29 pm

    That error occurs when you pass kill an empty arg as a PID, i.e.

    [me@home]$ kill -n SIGTERM ""
    kill: `': not a pid or valid job spec
    

    My guess is your script throws up that error when the PID_FILE exists but is empty, hence ${FCPID} ends up as an empty string.

    Check that the start script is actually writing out the PID_FILE correctly on your user’s machine.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created one application in flex that is accessing the Java webservice using
I have created a small daemon (basically a console application that hides the console
I have created an application that writes some data to the root folder of
I have created an application that runs in the taskbar. When a user clicks
I have created an application that has a toolbar, menubar and content area. I
I have created an application that uses settings.settings to store some user specific settings
I have created an application that records a series of longitude and latitude values
I have created a console application that calls a method on a webservice. I
I have created a new ActionFilter for an ASP.NET MVC application that I'm creating.
I have created a table in my Ruby on Rails application that I am

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.