<div dir="ltr"><div><div><div><div><div><div>Hi,<br><br></div>I am running appication with Supervisor & Worker model.<br></div>Can anybody guide me through how to stop application or restart my application.<br><br></div>Below is my application file:<br><br>
    
      <code><span style="background-color:rgb(0,255,255)">-module(uclient).<br><br>-behaviour(application).<br><br>-export([start/2, stop/1]).<br><br>-record(state, {pid}).<br><br>start(normal, []) -><br>   case uclient_sup:start_link({uclient_sup}) of<br>      {ok, Pid} -> {ok, Pid};<br>      Error -> Error<br>   end.<br>   %%uclient_sup:start_link({uclient_sup}).<br><br>stop(_State) -><br>    ok.<br></span><br><br><br></code></div><code>Tried to stop application from erl command line, but getting error as below:<br><br><span style="background-color:rgb(255,0,255)">uclient:stop().<br>** exception error: undefined function uclient:stop/0</span><br><br></code></div><code>Regards,<br></code></div><code>Harsha<br></code><div><div><code><br></code></div></div></div>