saggit

saggit

Run Mix task in crontab

Hi, everybody
I was try to use crontab to schedule my simple mix task that send emails, the task works perfect by run
mix hello.greeting but does not work (scheduled, but no email sent ) if i put something like this in crontab */5 * * * * cd path/to/myapp; /usr/local/bin/mix hello.greeting

my simple task code

defmodule Mix.Tasks.Hello.Greeting do
  use Mix.Task

  alias Hwapp.Email
  alias Hwapp.Mailer

  @shortdoc "Sends a greeting to us from Hello Phoenix"

  @moduledoc """
    This is where we would put any long form documentation or doctests.
  """

  def run(_args) do
    Mix.shell.info("Greetings from the Hello Phoenix Application!")
    Mix.Task.run "app.start"
    # get all users
    "hello@localhost"
    		Email.welcome_html_email()
    		|> Mailer.deliver_now
    	end)
   end

end

Thanks for your time.

Most Liked

speeddragon

speeddragon

Finally got it working. Here is the steps done in my computer (running OSX), it might change a little bit if you use Linux.

I’ve created a script with the following code:

#!/bin/bash
cd /path/project
mix phx.server&

And run with the following line on crontab:

*/1 * * * * /tmp/test.sh >> /var/log/crontab.log 2>&1

The output of crontab.log was showing this:

/tmp/test.sh: line 2: mix: command not found

Using the full path of mix didn’t solve it. (/usr/local/bin/mix phx.server)

env: elixir: No such file or directory

Searching that on google, I found an comment from José Valim, Ability to use elixir commands that shipped as an application dependency · Issue #789 · elixir-lang/elixir · GitHub

But even using /usr/local/bin/elixir /usr/local/bin/mix phx.server & didn’t solve it, because it gave the following error:

/usr/local/bin/elixir: line 123: exec: erl: not found

So, if you output the $PATH, you will see that only have 2 directories (or less than you expected): /usr/bin:/bin

You can check where is your binaries, with the command which, like which elixir. You will need in your path at least for mix, elixir and erl.

In the final script, you should export PATH concatenating the missing path, in my case was /usr/local/bin/.

export PATH=$PATH:/usr/local/bin/

After that you should be able to run any command with mix, you don’t need the full path.

saggit

saggit

It works perfect, thanks for your help,
Really wonderful community.

speeddragon

speeddragon

You can put that code cd path/to/myapp; /usr/local/bin/mix hello.greeting inside a shell script (something.sh) give +x permission (chmod +x something.sh) and then call it on the crontab. Don’t forget to use full path instead of relative paths.

Last Post!

saggit

saggit

Thanks Nobbz,

Where Next?

Popular in Questions Top

JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
jononomo
I am trying to figure out how Mix knows whether the environment is test, dev, or prod – where is this set? Thanks.
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New
senggen
Erlang/OTP 25 [erts-13.2.2] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] 15:22:35.803 [error] gen_event {lager_file_backend...
New

Other popular topics Top

vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
joeerl
Hello again - after a longish gap I’ve decided I really must dig into Elixir and see what’s been happening here - so I have a few questio...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
TunkShif
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
274 42576 114
New
sergio
Kind of like when jquery came out, it was super necessary. Existing drag and drop libraries have a bunch of baggage to support old browse...
New