Learning the Phoenix framework with Elixir and the book I'm reading assumes we've done this part and skips over it, but this covered exactly what I needed in a little over 2 minutes. Thanks!
@fromzeroedu4 жыл бұрын
Thanks!
@MrZyman2 жыл бұрын
Wow! This is pure gold!
@shengelenge3 жыл бұрын
So simple and easy. Thanks!
@БельчонокОрешек-ы2н24 күн бұрын
Thanks!👌
@TravelUnwindMotivate Жыл бұрын
THANK YOU!
@anandogs5 жыл бұрын
Thanks for this video. It's easier to use $ brew services start postgresql to start postgres server and similarly $ brew services stop postgresql to stop it. Any reason why you chose the more complicated (pg_ctl....) command?
@fromzeroedu5 жыл бұрын
Because using `brew services start x` will make it run automatically every time I power on my computer, and I want to be able to start and stop on command.
@25kwame5 жыл бұрын
yes it works ! Many thanks guy.
@fromzeroedu4 жыл бұрын
You're welcome!
@yuqiwang42466 жыл бұрын
This is so goooooooooood !
@fromzeroedu6 жыл бұрын
Thanks Yuqi!
@NahidAhmedMansuri4 жыл бұрын
after posgresql is installed successfully on my mac, i get pg_ctl: could not open PID file "/usr/local/var/postgres/postmaster.pid": Permission denied
@fromzeroedu4 жыл бұрын
You must've installed it as a super user. What do you get when you do `ls -al /usr/local/var`? If you see root as the owner of the postgres directory, you must change the ownership to your own user using chown.
@NahidAhmedMansuri4 жыл бұрын
@@fromzeroedu i could not run the command successfully. i get 'ls: illegal option --/'. I did install postgresql on su admin. How do i change ownership to my own?
@fromzeroedu4 жыл бұрын
@@NahidAhmedMansuri Do a `sudo chown -R {yourusername} /usr/local/var/postgres`
@adriangaliano52906 жыл бұрын
Hello, do you know what I must to do if tell me Password: ?
@xuliu71195 жыл бұрын
I think I got the same problem, have you figured it out?