Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Calculator

0

110
Views
How can I run a node script from bash using cron

I have this cron job running on Ubuntu

02 12 * * * quigley-user /mnt/block/alphabits/start.sh >> /mnt/block/alphabits/start.log

The cron job runs on schedule as expected.

I have this snippet in the start.sh script

while read -r ticker apiName ;
   do
      echo "$ticker $apiName"
      sudo /usr/bin/node /mnt/block/alphabits/index.js $ticker $apiName
   done < /mnt/block/alphabits/fmpList.txt

The echo line shows the expected results, however the index.js script does not run. I can't find an error but maybe I'm missing something. If I run the command that's in the cron job from the command line it executes properly

What am I missing? Thanks!

7 months ago · Juan Pablo Isaza
1 answers
Answer question

0

It is possible your node.js relative import path is missing from crontab context.

And possible other implicit environment variables configurations for node.js

Assuming your user $HOME directory is /home/user1

Suggesting:

Add the following line, into your 2nd line in your start.sh

  #!/bin/bash
  source /home/user1/.bash_profile

This line will add your users' context path and environment variables to your script.

7 months ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post job Plans Our process Sales
Legal
Terms and conditions Privacy policy
© 2023 PeakU Inc. All Rights Reserved.