Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Pre-installation software checklist

Drupal requires the following to be set-up and running prior to beginning your installation:

...

Installation Steps

These are the quick "get“get-up-and-running" running” installation steps for Drupal. A more comprehensive installation guide is available from http://drupal.org/documentation/install

...

Code Block
cp sites/default/default.settings.php sites/default/settings.php

4. Give the web server "write privileges" “write privileges” to sites/default/settings.php and the sites/default/ directory:

...

5. Create a database for Drupal. Make note of your username and password as you will need it when the Drupal install script runs.

Code Block
languagesql

mysqladmin \-u <mysqlusername> \-p create <databasename>
mysql \-u <mysqlusername> \-p

enter your password

grant all on <databasename>.\* to <db_user_name>@<server> identified by '<password>';

flush privileges;

...

9. Proceed with the initial configuration steps suggested on the "Welcome" page.

Note

If you plan on uploading large files via Islandora you may want to increase the maximum file size settings in Drupal. You can do this by creating a custom INI file in /etc/php5.d/conf.d with the following settings:

upload_max_filesize = 64M
post_max_size = 100M
memory_limit = 128M

You must then restart Apache using one of the following commands:

/etc/init.d/apache reload
OR
/etc/init.d/httpd restart

For a good introduction to Drupal and to learn how to harness its power and potential to create a site that meets your needs, access Drupal's Drupal’s extensive online documentation. Drupal's Drupal’s active open source community is another valuable source of information.