cron ジョブとして (毎分) 実行されている Perl スクリプトがあります。今、私は自分のファイルで特定の計算と実行を行います。ジョブの実行中は常に、ファイル システム内の一部のフォルダーにアクセスできません。
たとえば、という名前のフォルダーがあります/opt/tinyos-2.x/apps/
。私はこのフォルダを公開しています (777 パーミッションで)。Perl スクリプトでディレクトリをこのフォルダに変更し、そこでファイルを実行しようとしました。しかし、実行されません。代わりに、次のようなエラーが表示されます。
make: *** No rule to make target `telosb'. Stop.
そのフォルダーに移動してファイルをsudoとして実行するたびに、このエラーを再現できます。
したがって、私のcronはどういうわけか「ルート」になると想定しています(上記のフォルダー所有者と同じユーザーの下に私のcronがあります)。では、このような問題はどうすればよいのでしょうか。
そのPerlスクリプトで現在実行中のユーザーを取得できれば、それが user id であることがわかるかもしれません。Perl スクリプトでユーザー ID を取得する方法を教えてください。いろいろなところを調べたところ、この解決策でユーザーID - を知ることができまし
print $ENV{"LOGNAME"}
た。これは、cron ジョブによって実行される Perl スクリプトでユーザーを知る正しい方法ですか?
これが私が持っているものです: 私はユーザー ID "abc" を持っています。
abc@mymachine:crontab -e
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
* * * * * /usr/bin/perl /var/www/web/myfolder/LoadPrograms.pl >> /var/www/web/log.txt
LoadPrograms.pl
#!/usr/bin/perl
use DBI;
use strict;
use Thread;
use File::Path;
$nullPath = "/opt/tinyos-2.x/apps/Null";
chdir($nullPath) or die "cant chnge directory to null directory\n";
my $nullProgramCommand = "make telosb install.1 bsl,/dev/ttyUSB0";
my $output.=`$nullProgramCommand`;
print $output;
ジョブが cron で実行されている場合、出力や何も起きていません。ユーザー ID の場所 /var/mail/abc でメールを受け取ります。
Content-Type: text/plain; charset=ANSI_X3.4-1968
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <HOME=/home/abc>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=abc>
make: *** No rule to make target `telosb'. Stop.
これは、私が言及した場所でコードを実行していないことを意味します: /opt/tinyos-2.x/apps/Null.
誰でもこれで私を助けることができますか?