更新到我的系统之后-MAC,我的凤凰应用程序编译得很好,但是每当我到达任何路线时都会抛出这个错误。
服务器:localhost:4000 (http) 请求:GET / ** (exit) 引发异常:** (UndefinedFunctionError) function :crypto.rand_bytes/1 未定义或私有。您的意思是以下之一吗:
* rand_seed/0 * rand_seed/1 (crypto) :crypto.rand_bytes(20) (plug) lib/plug/request_id.ex:59: Plug.RequestId.generate_request_id/0 (plug) lib/plug/request_id.ex:48: Plug.RequestId.get_request_id/2 (plug) lib/plug/request_id.ex:42: Plug.RequestId.call/2 (olars) lib/olars/endpoint.ex:1: Olars.Endpoint.phoenix_pipeline/1 (olars) lib/plug/debugger.ex:93: Olars.Endpoint."call (overridable 3)"/2 (olars) lib/olars/endpoint.ex:1: Olars.Endpoint.call/2 (plug) lib/plug/adapters/cowboy/handler.ex:15: Plug.Adapters.Cowboy.Handler.upgrade/4 (cowboy) src/cowboy_protocol.erl:442: :cowboy_protocol.execute/4
我的 mix.exs
{:phoenix, "~> 1.2.0"},
{:phoenix_pubsub, "~> 1.0"},
{:phoenix_ecto, "~> 3.0"},
{:phoenix_haml, github: "chrismccord/phoenix_haml"},
{:mariaex, ">= 0.0.0"},
{:phoenix_html, "~> 2.6"},
{:phoenix_live_reload, "~> 1.0", only: :dev},
{:gettext, "~> 0.11"},
{:cowboy, "~> 1.0"},
{:arc, "~> 0.5.2"},
{:arc_ecto, "~> 0.3.2"},
{:ex_aws, "~> 0.4.10"},
{:httpoison, "~> 0.9"},
{:poison, "~> 2.0"},
{:ecto, "~> 2.0.2", override: true},
{:plug_auth, github: "smpallen99/plug_auth"},
{:comeonin, "~> 2.1.0"},
{:phoenix_calendar, "~> 0.1.2"},
{:httpotion, "~> 3.0.0", override: true},
{:timex, "~> 3.0"},
{:quantum,github: "c-rack/quantum-elixir"},
{:calendar, "~> 0.16.1"},
{:uri_query, "~> 0.1.1"},
{:scrivener, "~> 2.0"},
{:scrivener_list, "~> 1.0"},
{:number, "~> 0.5.0"},
{:xlsxir, "~> 1.4.1"},
{:new_relic, "~> 0.1.1"},
{:retry, "~> 0.7"},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false}
Elixr 版本:Elixir 1.4.5 Erlang 版本:20
让我知道你们是否需要任何其他信息。