Home ›
Install Drupal 7 from the command line... with Drush, of courseInstall Drupal 7 from the command line... with Drush, of course
Submitted by Benjamin Melançon on March 30, 2011 - 7:08am
Searched words:
install drupal 7 command line
programatically install drupal
run drupal's installation automatically without user interaction
Given a Drupal installation (that is, drush dl drupal), Drush can fully install Drupal, even creating the database if it has permission.
drush site-install standard --account-name=admin --account-pass=[useruser_pass] --db-url=mysql://[db_user]:[db_pass]@localhost/[db_name]
Or, shorter:
drush si --db-url=mysql://[db_user]:[db_pass]@localhost/[db_name]
(The profile defaults to standard, and the account name and account pass to 'admin'.)
The site name flag is --site-name=yada
See other flags with drush help si.
A version of this which automatically sets all these values to obvious defaults will be incorporated into https://gitorious.org/agaric-scripts
More like this
- Export and re-import a database with Drush and the command line
- Five second Feature Server with drush_make my install profile | mig5.net
- Drush commands to enable Devel module and Page Render Array display
- Making Drupal nids into edit link from your command-line SQL
- Execute command-line statements from within the vi editor


Comments
Post new comment