Advertisement
Guest User

Untitled

a guest
May 15th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. sudo -i -u wsgi
  2. /usr/lib/postgresql/9.5/bin/psql -U postgres
  3. # create database "kjvrgv_prod";
  4. \q
  5.  
  6. ws-alembic -c kjvrvg/conf/production.ini -x packages=all upgrade head
  7. ws-create-user kjvrvg/conf/production.ini michael@maz.local michael --admin
  8.  
  9.  
  10. #### login michael@maz.local fails ####
  11.  
  12.  
  13. ws-db-shell kjvrvg/conf/production.ini
  14.  
  15. wsgi@localhost:kjvrvg_prod> select * from users;
  16. +------+--------------------------------------+-------------------+-------------------+-----------------------
  17. | id | uuid | username | email | password
  18. |------+--------------------------------------+-------------------+-------------------+-----------------------
  19. | 1 | 40546734-5d53-4b4d-86eb-92aa8d4ba9ad | michael@maz.local | michael@maz.local | $argon2i$v=19$m=512,t=
  20. +------+--------------------------------------+-------------------+-------------------+-----------------------
  21. SELECT 1
  22.  
  23.  
  24. #### go through sign-up process, activate with link from email michaelkhanna@gmail.com ####
  25.  
  26.  
  27. wsgi@localhost:kjvrvg_prod> select * from users;
  28.  
  29. +------+--------------------------------------+-------------------+-------------------+-----------------------
  30. | id | uuid | username | email | password
  31. |------+--------------------------------------+-------------------+-------------------+-----------------------
  32. | 1 | 40546734-5d53-4b4d-86eb-92aa8d4ba9ad | michael@maz.local | michael@maz.local | $argon2i$v=19$m=512,t=
  33. +------+--------------------------------------+-------------------+-------------------+-----------------------
  34. SELECT 1
  35.  
  36. where is michaelkhanna@gmail.com ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement