saggit
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.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
speeddragon
You can put that code
cd path/to/myapp; /usr/local/bin/mix hello.greetinginside 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.saggit
Thanks for your reply, I tried and got the same result, Just wonder if I got something wrong.
NobbZ
Does cron send you any logs? If not please activate the feature to send you the logs of each run to your local address for the debugging period at least(*).
Also, how are you editing your crontab? If you do not use
crontab -e(*) Cron won’t know about the changes and nothing will be run of course.Have you made sure that the project folder and all folders above and below and the files are actually readable/accessible by the user that owns the crontab in question?
(*): Can’t look up details or exact command as I’m on mobile right now.
saggit
Hi Nobbz, Thanks for your reply,
tail -f /var/log/cron.loggive me correct execute log say every 5 minutes without error message so that mean the path are correct and command run without error. I have to do more check. But thanks.NobbZ
As far as I remember Cron log will only contain that a job has started, it will not contain it’s results. Please try writing into a file, use the wrapper script from before and change it to be like this:
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:
And run with the following line on crontab:
The output of crontab.log was showing this:
Using the full path of
mixdidn’t solve it. (/usr/local/bin/mix phx.server)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:So, if you output the $PATH, you will see that only have 2 directories (or less than you expected):
/usr/bin:/binYou can check where is your binaries, with the command
which, likewhich elixir. You will need in your path at least formix,elixiranderl.In the final script, you should export PATH concatenating the missing path, in my case was
/usr/local/bin/.After that you should be able to run any command with
mix, you don’t need the full path.saggit
It works perfect, thanks for your help,
Really wonderful community.
saggit
Thanks Nobbz,