-
Notifications
You must be signed in to change notification settings - Fork 0
Admin FAQ
vesse edited this page Mar 15, 2013
·
2 revisions
-
How can I import the production database to my development environment?
-
Setup MariaDB to your development environment and run
$ rake db:import
-
Setup MariaDB to your development environment and run
-
Can I run QA Reports with multiple servers, e.g., two application servers + one database server?
- Yes, you can. However, your application servers need to have shared file system for
<application root>/shared
-folder. Otherwise, uploading the attachments will fail.
- Yes, you can. However, your application servers need to have shared file system for
-
Can I configure QA Reports to use LDAP as an authentication method?
- Currently QA Reports supports authentication only with QA Reports accounts. However, you can configure Apache to require HTTP Basic authentication with LDAP. With this kind of setup, only authenticated users can access the site.
-
How can I reset a user password?
- If a user has forgotten his password you need to login to your production environment, go to folder
qa-reports/current
, and runRAILS_ENV=production rails console
. To update the reset the password run the following:
- If a user has forgotten his password you need to login to your production environment, go to folder
user = User.where(:email => '[email protected]`)
user.password = 'new_password'
user.password_confirmation = 'new_password'
user.save()