-
Notifications
You must be signed in to change notification settings - Fork 292
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
installation: database password escaping #2844
Milestone
Comments
eamonnmag
added a commit
to eamonnmag/invenio
that referenced
this issue
Mar 4, 2015
This was referenced Mar 4, 2015
jirikuncar
changed the title
Database password configuration issue for installation
installation: database password escaping
Mar 4, 2015
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 20, 2015
* BETTER Uses SQLAlchemy to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 20, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 20, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 27, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 30, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Mar 31, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of execute mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Apr 2, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of executing mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]> Signed-off-by: Leonardo Rossi <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Apr 2, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of executing mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
hachreak
pushed a commit
to hachreak/invenio
that referenced
this issue
Apr 2, 2015
* BETTER Uses SQLAlchemy and SQLAlchemy-Utils to init the database instead of executing mysql in a python subshell. (closes inveniosoftware#2846) (closes inveniosoftware#2844) * NEW Adds support for PostgreSQL database initialization. Signed-off-by: Leonardo Rossi <[email protected]> Reviewed-by: Jiri Kuncar <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've been following the INSTALL.rst instructions for installation of the pu branch.
When setting the database password (CFG_DATABASE_PASS) in the configuration, either through inveniomanage or via manual editing of the cfg file, there is an inconsistency.
If the password is set as password with no quotes, this command fails:
inveniomanage database init --user=root --password=$MYSQL_ROOT --yes-i-know
Since the resulting SQL is invalid without the password wrapped in quotes.
When the password is wrapped in quotes, this command will work.
However, now the below command will fail to work
inveniomanage database create
So to get this working, you have to edit the config file again and remove the quotes, leaving u'password' in place.
The text was updated successfully, but these errors were encountered: