Advertisement
zamotivator

Untitled

Feb 8th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. ➜ erl
  2. Erlang/OTP 17 [erts-6.3] [source] [64-bit] [smp:2:2] [async-threads:10] [hipe] [kernel-poll:false]
  3.  
  4. Eshell V6.3 (abort with ^G)
  5. 1> application:start(ssl).
  6. {error,{not_started,crypto}}
  7. 2> application:start(crypto).
  8. ok
  9. 3> application:start(ssl).
  10. {error,{not_started,public_key}}
  11. 4> application:start(public_key).
  12. {error,{not_started,asn1}}
  13. 5> application:start(asn1).
  14. ok
  15. 6> application:start(public_key).
  16. ok
  17. 7> application:start(ssl).
  18. ok
  19. 8>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement