Drupal: Difference between revisions

From Alpine Linux
(Created page with '== What is drupal? == Drupal is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-...')
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== What is drupal? ==
[http://drupal.org/ Drupal] is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.


Drupal is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.
== Install lighttpd, PHP and MySql ==
 
{{:Setting Up Lighttpd With FastCGI}}
 
Install extra packages:
{{Cmd|apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql}}
 
== Installing and configuring drupal ==
 
Create a folder named {{Path|webapps}}
 
{{Cmd|mkdir -p /usr/share/webapps/}}
 
Download the source code archive


== Set up drupal on Alpine Linux ==
{{Cmd|cd /usr/share/webapps/
wget http://ftp.drupal.org/files/projects/drupal-7.19.tar.gz}}


This document will be a quick c/p guide to setup MediaWiki on Alpine linux. What we will setup is the following:
Unpack the archive and delete the tarball afterwards


* Lighttpd with PHP
{{Cmd|tar zxvf drupal-7.19.tar.gz
* Mysql
rm drupal-7.19.tar.gz}}
* drupal
Change the folder name


== Install lighttpd, PHP and MySql ==
{{Cmd|mv drupal-7.19 drupal}}


apk add lighttpd mysql mysql-client php-mysql php-mysqli php php-sqlite php-imap php-xml php-pdo php-json php-xml php-gd php-pdo_mysql
Change the folder permissions


== Configuring Lighttpd==
{{Cmd|chown -R lighttpd /usr/share/webapps/}}


'''Edit lighttpd.conf'''
Creating settings file


  nano +46 /etc/lighttpd/lighttpd.conf
{{Cmd|cp /usr/share/webapps/drupal/sites/default/default.settings.php /usr/share/webapps/drupal/sites/default/settings.php}}


Uncomment lines:
Create a symlink to the {{Path|drupal}} folder


uncoment    include "mod_fastcgi.conf", save and exit
{{Cmd|ln -s /usr/share/webapps/drupal/ /var/www/localhost/htdocs/drupal}}


== Installing and configuring drupal ==
== Starting ==
'''Starting http service and adding to boot'''


'''Install drupal'''
{{Cmd|/etc/init.d/lighttpd start && rc-update add lighttpd default}}


Download


cd /tmp
== Config MySql ==
wget http://ftp.drupal.org/files/projects/drupal-7.0-alpha6.tar.gz


Unpack
{{Cmd|<nowiki>/usr/bin/mysql_install_db --user=mysql
/etc/init.d/mysql start && rc-update add mysql default
/usr/bin/mysqladmin -u root password 'password'</nowiki>}}


tar zxvf drupal-7.0-alpha6.tar.gz
'''Create the drupal database'''


Change Folder Name
{{Cmd|mysql -u root -p}}


mv drupal-7.0-alpha6 drupal
{{Cmd|CREATE DATABASE drupal;
mv drupal /etc/
GRANT ALL PRIVILEGES ON drupal.* TO "root";
FLUSH PRIVILEGES;
EXIT}}


Change Folder Persmissions
== Config your drupal ==


  chmod -R 777 /etc/drupal/
Browse to: http://WEBSERVER_IP_ADDRESS/drupal and Install Drupal completing the information as appropriate from the web browser.


Make Symlink to the drupal folder
Drupal Installation steps:


  ln -s /etc/drupal/ /var/www/localhost/htdocs/drupal
Note: After select each option, pres "Save and continue" button.


== Starting ==
1 - Select an installation profile
   
   
'''Starting http service and adding to boot'''
* Standard ( Install with commonly used features pre-configured.)
 
* Minimal ( Start with only a few modules enabled.)
 
2 - Choose language
 
*  English (built-in)
 
3 - Verify requirements 
 
* (Nothing to do here if all is ok)
 
4 - Set up database
Database type MySQL


  /etc/init.d/lighttpd start && rc-update add lighttpd default
* Database name ''drupal''
* Database username ''root''
* Database password ''your-mysql-password''


- 5 Configure site


== Config MySql ==
* SITE INFORMATION
:* Site name
:* Site e-mail address


/usr/bin/mysql_install_db --user=mysql
* SITE MAINTENANCE ACCOUNT
/etc/init.d/mysql start && rc-update add mysql default
:* Username
/usr/bin/mysqladmin -u root password 'password'
:* E-mail address
:* Password
:* Confirm password


'''Create the drupal database'''
* SERVER SETTINGS
:* Default country
:* Default time zone


mysql -u root -p
* UPDATE NOTIFICATIONS
:* Check for updates automatically
:* Receive e-mail notifications


CREATE DATABASE drupal;
After click on "Save and continue" you will see ''Drupal installation complete''
GRANT ALL PRIVILEGES ON drupal.* TO "root";
FLUSH PRIVILEGES;
EXIT
 
== Config your drupal ==


Browse to: http://WEBSERVER_IP_ADDRESS/drupal
Congratulations, you installed Drupal!


Install Drupal completing the information as appropriate from the web browser.
Review the messages above before visiting your '''new site'''.


Review the messages above before visiting your new site.
You have drupal cloud computing system working, to access go to http://WEBSERVER_IP_ADDRESS/drupal and enjoy!
You have drupal cloud computing system working, to access go to http://WEBSERVER_IP_ADDRESS/drupal and enjoy!

Revision as of 11:23, 22 January 2013

Drupal is a free and open source content management system (CMS) written in PHP and distributed under the GNU General Public License. It is used as a back-end system for at least 1% of all websites worldwide ranging from personal blogs to larger corporate and political sites including whitehouse.gov and data.gov.uk. It is also used for knowledge management and business collaboration.

Install lighttpd, PHP and MySql

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php82 fcgi php82-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.

Contents of /etc/lighttpd/mod_fastcgi.conf

... "bin-path" => "/usr/bin/php-cgi82" # php-cgi ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Install extra packages:

apk add mysql mysql-client php-mysql php-mysqli php-pdo_mysql

Installing and configuring drupal

Create a folder named webapps

mkdir -p /usr/share/webapps/

Download the source code archive

cd /usr/share/webapps/ wget http://ftp.drupal.org/files/projects/drupal-7.19.tar.gz

Unpack the archive and delete the tarball afterwards

tar zxvf drupal-7.19.tar.gz rm drupal-7.19.tar.gz

Change the folder name

mv drupal-7.19 drupal

Change the folder permissions

chown -R lighttpd /usr/share/webapps/

Creating settings file

cp /usr/share/webapps/drupal/sites/default/default.settings.php /usr/share/webapps/drupal/sites/default/settings.php

Create a symlink to the drupal folder

ln -s /usr/share/webapps/drupal/ /var/www/localhost/htdocs/drupal

Starting

Starting http service and adding to boot

/etc/init.d/lighttpd start && rc-update add lighttpd default


Config MySql

/usr/bin/mysql_install_db --user=mysql /etc/init.d/mysql start && rc-update add mysql default /usr/bin/mysqladmin -u root password 'password'

Create the drupal database

mysql -u root -p

CREATE DATABASE drupal; GRANT ALL PRIVILEGES ON drupal.* TO "root"; FLUSH PRIVILEGES; EXIT

Config your drupal

Browse to: http://WEBSERVER_IP_ADDRESS/drupal and Install Drupal completing the information as appropriate from the web browser.

Drupal Installation steps:

Note: After select each option, pres "Save and continue" button.

1 - Select an installation profile

  • Standard ( Install with commonly used features pre-configured.)
  • Minimal ( Start with only a few modules enabled.)

2 - Choose language

  • English (built-in)

3 - Verify requirements

  • (Nothing to do here if all is ok)

4 - Set up database Database type MySQL

  • Database name drupal
  • Database username root
  • Database password your-mysql-password

- 5 Configure site

  • SITE INFORMATION
  • Site name
  • Site e-mail address
  • SITE MAINTENANCE ACCOUNT
  • Username
  • E-mail address
  • Password
  • Confirm password
  • SERVER SETTINGS
  • Default country
  • Default time zone
  • UPDATE NOTIFICATIONS
  • Check for updates automatically
  • Receive e-mail notifications

After click on "Save and continue" you will see Drupal installation complete

Congratulations, you installed Drupal!

Review the messages above before visiting your new site.

Review the messages above before visiting your new site. You have drupal cloud computing system working, to access go to http://WEBSERVER_IP_ADDRESS/drupal and enjoy!