Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

POLR is really hard to install on alpine (I got it working)- or How to manually create an admin ID #610

Open
symgryph opened this issue Sep 20, 2021 · 3 comments

Comments

@symgryph
Copy link

Howto Install POLR on alpine with Caddy

This isn't a complete doc, but mainly you need to follow directions, except they FAIL. After that, follow manual setup with relevant drirections.

Finally, to add an admin user to the database, you need something like THIS:

INSERT INTO users VALUES(1,'admin','hashtedpw','admin@polr.me','127.0.0.1','recoverysecret','admin','1',NULL,0,'60','2021-09-20 06:41:11','2021-09-20 06:41:11',NULL);

this will NOT work as typed in. to get the hashed password:

php -r "echo password_hash('YOURADMINPASSWORDINTHECLER', PASSWORD_BCRYPT, ['cost' => 8]) . PHP_EOL;"

to get a recovery key:

at /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 100 | head -n 1

To get the valid date:

date '+%Y-%m-%d %H:%M:%S'

Hope this helps someone else.

Thomas

@akhiljalagam
Copy link

Howto Install POLR on alpine with Caddy

This isn't a complete doc, but mainly you need to follow directions, except they FAIL. After that, follow manual setup with relevant drirections.

Finally, to add an admin user to the database, you need something like THIS:

INSERT INTO users VALUES(1,'admin','hashtedpw','admin@polr.me','127.0.0.1','recoverysecret','admin','1',NULL,0,'60','2021-09-20 06:41:11','2021-09-20 06:41:11',NULL);

this will NOT work as typed in. to get the hashed password:

php -r "echo password_hash('YOURADMINPASSWORDINTHECLER', PASSWORD_BCRYPT, ['cost' => 8]) . PHP_EOL;"

to get a recovery key:

at /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 100 | head -n 1

To get the valid date:

date '+%Y-%m-%d %H:%M:%S'

Hope this helps someone else.

Thomas

update at /dev/urandom to cat /dev/urandom

@alexkowel
Copy link

Thanks, this helped a lot!

@tkaefer
Copy link

tkaefer commented Jan 3, 2022

You could use my Dockerfile for polr, as it is using alpine as the base: https://github.com/tkaefer/polr/blob/master/Dockerfile

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants