Setting up Drupal: Difference between revisions

From ULYSSIS documentation
mNo edit summary
 
(22 intermediate revisions by 3 users not shown)
Line 1: Line 1:
==Installing Drupal on our servers is definitely easy==
This page will go through a basic setup of Drupal, and it gives a few specifics for setting it up on a hosted account over at ULYSSIS.


Installing Drupal on our servers is definitely easy.
==Putting setup files in place==


You download the install components from the http://drupal.org drupal-site.
First you need to download Drupal from their website, https://www.drupal.org/download. After you've received the zip file, you will need to upload it to the server in the www directory. This can be done easily by using Cyberduck and following the steps on [[Accessing your files]].


Here you get a compressed file (.tar.gz or .zip) which you have to extract..
After uploading, you can extract the archive file on the server by using the Cyberduck "Expand Archive" feature. Simply right click the archive and click "Expand Archive".
[[File:Cyberduck expand.png|left|thumb|502x502px]]
This will give you a directory named 'drupal-x.x.x', where the x is the downloaded version of Drupal. If you followed all steps correctly, you should have the drupal directory inside your www directory on the server.


You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.
The next step will be to move all the contents from the 'drupal-x.x.x' folder to the www directory. The easiest way to do this using Cyberduck is by going into your drupal folder, and drag-and-dropping all files and directories in your www folder.


Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you to select a profile, if you do not know which to choose select the standard one.
== Setting up a database ==
Besides files, we also need a database to install Drupal on. If you haven't created a new database for the purpose of this installation, you can do this through UCC. Instructions on how to do this are available on [[Using MySQL]]. If you haven't created a database user yet, or don't know the password, you can also find more information there. You can also use PostgreSQL ([[Using PostgreSQL]]) as an alternative to MySQL, but for the ease of this guide, only MySQL will be shown here.


Afterwards click on ''Save and Continue'' which will prompt you for your langauge settings. Click on ''Save and Continue'' again when finished.
== Installing Drupal ==
follow the steps detaild in the ''Verify requirements'' page and continue.
Now we are ready to install Drupal, so we need to visit the web installer. If you're using a custom domain based on this guide: [[Adding domain names]], you can access the installer by visiting your domain. If you do not use such a domain, the installer can be found on <code>username.studentenweb.org</code> or <code>username.ulyssis.be</code> (replace <code>username</code> with your actual username). This is where you have to set up your website. The easiest way to do this, is by following the wizard.[[File:Drupaldbconfig.png|thumb|477x477px]]
Now the installer will ask you for your database configuration:


*'''Database Name: ''' if you haven't created a mysql database or user on UCC then you have to create it there. The default database is: username_username.
The setup will ask you for your MySQL database configuration (when using PostgreSQL instead, select the option on top of the page):
*''''User Name: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.
*'''Database Name/Databasenaam:''' the name of the MySQL database
*'''Password: ''' the password hat you gave during the creation of your mysql account
*'''Database Username/Gebruikersnaam:''' your username
*'''Database Host: ''' this is <code>mysql.ulyssis.org</code>
*'''Database Password/Wachtwoord:''' your MySQL database password
*'''Host/Hostnaam:''' <code>mysql.ulyssis.org (you will need to open 'advanced options' to set this)</code>
*'''Port number:''' 3306 (default)
*'''Table name prefix:''' only enter this if you have multiple installations of Drupal in your database


When you're done click on “Save and Continue” Here you can give the last few details.
So it should look something like this the screenshot to the right.


Afterwards the install will run by it own and ask you some basic questions about the site and login for drupal,there it is your Drupal installation.
In the next steps Drupal will install the website and you will need to fill in your own preferences.
 
Finally you will be prompted to with your own Drupal website. Now the installation is finished.


==Setting up multiple instances of Drupal==
==Setting up multiple instances of Drupal==


If you want to have multiple instances of a Drupal site there are two options. The multiple instances can either share drupal code or be fully seperate.
If you want to have multiple instances of a Drupal site there are two options. The multiple instances can either share Drupal code or be fully separate.
 
For a fully separate installation, you need to create a new folder in your <code>www</code> directory on your shell account. Then you need a virtual host for this folder, for this you have to send us an email asking for this. After your new virtual host has been configured, you need to do the same steps that you would do for a regular Drupal installation, i.e. the steps in the section above.


For fully seperate installs you can simply create a (sub)folder to store another copy of the drupal code in. You can then access it either from your default domain or have us attach another domain to it for you, more info about that on [[Adding domain names]]
If you wish for multiple websites to share the same code base it is easiest to use multiple domains. More information about how to set this up in your Drupal is available in the Drupal documentation: https://www.drupal.org/documentation/install/multi-site. As soon as you have made your preparations you can contact us about setting up the domain name, more info about that on [[Adding domain names]].


If you wish for multiple websites to share the same codebase it is easiest to use multiple domains. More information about how to set this up in your drupal is available in the drupal documentation: https://www.drupal.org/documentation/install/multi-site. As soon as you have made your preperations you can contact us about hooking up the domain name, more info about that on [[Adding domain names]]
[[Category:CMSs]]

Latest revision as of 10:26, 16 October 2021

This page will go through a basic setup of Drupal, and it gives a few specifics for setting it up on a hosted account over at ULYSSIS.

Putting setup files in place

First you need to download Drupal from their website, https://www.drupal.org/download. After you've received the zip file, you will need to upload it to the server in the www directory. This can be done easily by using Cyberduck and following the steps on Accessing your files.

After uploading, you can extract the archive file on the server by using the Cyberduck "Expand Archive" feature. Simply right click the archive and click "Expand Archive".

Cyberduck expand.png

This will give you a directory named 'drupal-x.x.x', where the x is the downloaded version of Drupal. If you followed all steps correctly, you should have the drupal directory inside your www directory on the server.

The next step will be to move all the contents from the 'drupal-x.x.x' folder to the www directory. The easiest way to do this using Cyberduck is by going into your drupal folder, and drag-and-dropping all files and directories in your www folder.

Setting up a database

Besides files, we also need a database to install Drupal on. If you haven't created a new database for the purpose of this installation, you can do this through UCC. Instructions on how to do this are available on Using MySQL. If you haven't created a database user yet, or don't know the password, you can also find more information there. You can also use PostgreSQL (Using PostgreSQL) as an alternative to MySQL, but for the ease of this guide, only MySQL will be shown here.

Installing Drupal

Now we are ready to install Drupal, so we need to visit the web installer. If you're using a custom domain based on this guide: Adding domain names, you can access the installer by visiting your domain. If you do not use such a domain, the installer can be found on username.studentenweb.org or username.ulyssis.be (replace username with your actual username). This is where you have to set up your website. The easiest way to do this, is by following the wizard.

Drupaldbconfig.png

The setup will ask you for your MySQL database configuration (when using PostgreSQL instead, select the option on top of the page):

  • Database Name/Databasenaam: the name of the MySQL database
  • Database Username/Gebruikersnaam: your username
  • Database Password/Wachtwoord: your MySQL database password
  • Host/Hostnaam: mysql.ulyssis.org (you will need to open 'advanced options' to set this)
  • Port number: 3306 (default)
  • Table name prefix: only enter this if you have multiple installations of Drupal in your database

So it should look something like this the screenshot to the right.

In the next steps Drupal will install the website and you will need to fill in your own preferences.

Finally you will be prompted to with your own Drupal website. Now the installation is finished.

Setting up multiple instances of Drupal

If you want to have multiple instances of a Drupal site there are two options. The multiple instances can either share Drupal code or be fully separate.

For a fully separate installation, you need to create a new folder in your www directory on your shell account. Then you need a virtual host for this folder, for this you have to send us an email asking for this. After your new virtual host has been configured, you need to do the same steps that you would do for a regular Drupal installation, i.e. the steps in the section above.

If you wish for multiple websites to share the same code base it is easiest to use multiple domains. More information about how to set this up in your Drupal is available in the Drupal documentation: https://www.drupal.org/documentation/install/multi-site. As soon as you have made your preparations you can contact us about setting up the domain name, more info about that on Adding domain names.