Details
-
Feature
-
Status: Released (View Workflow)
-
Major
-
Resolution: Fixed
-
None
Description
Current Situation
The file scheduler.pid is accessible exclusively for the account that runs the JobScheduler daemon.
Desired Behavior
The scheduler.pid file should be world readable
Workaround
- You could run a job after JobScheduler startup that modifies the file permissions like this:
<?xml version="1.0" encoding="ISO-8859-1"?> <job title="set pid-file world readable"> <script language="shell"> <![CDATA[ chmod a+r $SCHEDULER_DATA/logs/scheduler.pid ]]> </script> <run_time once="yes" /> </job>