SlideShare a Scribd company logo
Drush to
simplify
Drupalers work
Sivaji J.G,
KnackForge Soft Solutions Pvt. Ltd.
About Speaker

•
•
•
•
•
•
•
•

Started Drupal evangelism as trainee in 2008
Integrated Drupal and gnokii for accessing bus routes
information via SMS
GSoC Alumnus 2009
Co-maintainer of quiz module
Contributor to Drupal Core and Contrib modules in drupal.org
Technical reviewer of Drupal books
Featured Speaker / Trainer of Drupal Chennai workshops
Technical Director / Drupal project manager at KnackForge
Agenda

•
•
•
•

What is Drush?
Requirements and Installation
How it works?
Drush commands
What is Drush?

•
•

•
•
•

•

Command line utility to administer Drupal sites
Typically used as “drush [options] <command>
[argument1] [argument2]”
Commonly used for cache clear, managing modules /
themes / features, cron, etc.
Supports Drupal 6.x and above
Works best on Unix like OS and partially supported
for Windows
Maintained in GitHub /drush-ops/drush
Requirements and Installation

•
•

From PEAR
o

https://github.com/drush-ops/drush#install---pear

Manual Installation
o

https://github.com/drush-ops/drush#install---manual
How it works
Drush Commands

•
•
•
•
•
•
•
•
•

pm-download
site-install
user-password
variable-get / set
cache-clear
core-cron
core-status
php-script
updatedb

•
•
•
•
•
•
•
•
•

watchdog-show
pm-list
pm-enable
pm-disable
pm-uninstall
sql-drop
sql-query
sql-sync
sql-connect
$ drush pm-download (dl)

•
•

•
•
•
•

Download any projects from drupal.org
Project could Drupal core, modules, themes or
profiles.
Handles project dependency
Sticks to recommended versions by default
Automatically figure out which project version you
want based
Integrates with version control system (git, svn
$ drush pm-download (dl)
Usage
$ drush dl
Project drupal (7.23) downloaded to
/home/sivaji/Public/drupal-7.23. [success]
Project drupal contains: [success]
- 3 profiles: standard, testing, minimal
- 4 themes: bartik, garland, stark, seven
- 47 modules: image, openid, simpletest,...
$ drush pm-download (dl)
$ drush dl views
Project views (7.x-3.7) downloaded to
/home/sivaji/Public/drupal-7.23/sites/all/modules/views.
[success]

$ drush dl zen
$ drush dl features-7.x-2.x-dev
$ drush site-install (si)
Installs Drupal with specified install profile
Usage
$ drush si standard --site-name="Drush
Test"
--db-url=<mysql://root:pass@127.0.0.1/db
More default values

•
•
•

o

--account-mail, --account-name, --db-prefix, --locale,
--site-mail, [form name].[parameter name]
$ drush site-install (si)
$ drush si standard --site-name="Drupal Camp" --dburl=mysql://root@127.0.0.1/learning_drush
You are about to create a sites/default/files directory and create a
sites/default/settings.php file and CREATE the 'learning_drush' database.
Do you want to continue? (y/n): y
Starting Drupal installation. This takes a few seconds ...
[ok]
Installation complete. User name: admin User password: AGn744iDVd
$ drush user-password (upwd)
(Re)Set the password for the user account with the
specified name
Usage:
Changing the auto generated password AGn744iDVd to
Admin!@# for admin user.
$ drush upwd admin --password=Admin!@#
$ drush variable-get / variable-set
(vget/vset)
Get a list of some or all site variables and
values.
Usage
$ drush variable-get site_name
site_name: "Drupal Camp"
$ drush variable-set site_name "Drupal Camp
Delhi"
$ drush cache-clear (cc)
Clear a specific cache, or all drupal caches
Usage,
$ drush cc all
$ drush cc menu
$ drush cache-clear (cc)
$ drush cc
Enter a number to choose which cache to clear.
[0] : Cancel
[1] : all
[2] : drush
[3] : theme-registry
[4] : menu

[5] : css-js
[6] : block
[7] : module-list
[8] : theme-list

[9] : registry
[10] : token
[11] : views
More slides to come

More Related Content

PPTX
Drupal Theming For Beginners – Danté SELF 2010
PDF
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
PPTX
Dcp'14 drush
ODP
Drush A beginners guide to a advanced tool.
PDF
Dennis Povshedny.Mediamosa intro.DrupalCamp Kyiv 2011
PPTX
Drupalcampatl d7
PPT
How a Content Delivery Network Can Help Speed Up Your Website
PPT
Drush. Why should it be used?
Drupal Theming For Beginners – Danté SELF 2010
Sergei Stryukov.Drush.Why it should be used.DrupalCamp Kyiv 2011
Dcp'14 drush
Drush A beginners guide to a advanced tool.
Dennis Povshedny.Mediamosa intro.DrupalCamp Kyiv 2011
Drupalcampatl d7
How a Content Delivery Network Can Help Speed Up Your Website
Drush. Why should it be used?

What's hot (13)

PDF
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
PPTX
Dc kyiv2010 jun_08
PDF
大規模サイトにおけるユーザーレベルのキャッシュ活用によるパフォーマンスチューニング
PDF
Drush workshop
PPT
SynapseIndia drupal presentation on drupal
PDF
Drupal 8 Theme System: The Backend of Frontend
KEY
Drupal on your laptop
PDF
Common Pitfalls for your Drupal Site, and How to Avoid Them
PDF
Fast Paced Drupal 8: Accelerating Development with Composer, Drupal Console a...
PDF
Ts drupal6 module development v0.2
PPTX
PPTX
PDF
2011 - DDU - Intro to Drush
Anna Fedoruk.Theworkflow.DrupalCamp Kyiv 2011
Dc kyiv2010 jun_08
大規模サイトにおけるユーザーレベルのキャッシュ活用によるパフォーマンスチューニング
Drush workshop
SynapseIndia drupal presentation on drupal
Drupal 8 Theme System: The Backend of Frontend
Drupal on your laptop
Common Pitfalls for your Drupal Site, and How to Avoid Them
Fast Paced Drupal 8: Accelerating Development with Composer, Drupal Console a...
Ts drupal6 module development v0.2
2011 - DDU - Intro to Drush
Ad

Similar to Drush to simplify Drupalers work - Sivaji (20)

PPT
Drush and drupal. администрирование. Волчек Михаил
PPT
Drush and drupal. администрирование волчек михаил
KEY
Intro to Drush
PPT
Drush&drupal. administration
PDF
A Drush Primer - DrupalCamp Chattanooga 2013
PPTX
Drush for drupal website builder
PDF
Speed up Drupal development with Drush
PDF
Beginning Drush
PDF
Improving your Drupal 8 development workflow DrupalCampLA
PPT
Intro to Drush
PDF
Welcome aboard the team
PPT
Boost your theming skills
PPT
Boost your theming skills - Artem Shymko
ZIP
Building a Drupal Distribution using Features, Drush Make, Installation Profi...
ODP
Lightning Fast Drupal Theming (Drupal 7)
PDF
drush_multi @ DrupalDevDays 2010
PDF
Face your fears: Drush and Aegir
KEY
Depolying Drupal with Git, Drush Make and Capistrano
PDF
Doing Drupal security right from Drupalcon London
Drush and drupal. администрирование. Волчек Михаил
Drush and drupal. администрирование волчек михаил
Intro to Drush
Drush&drupal. administration
A Drush Primer - DrupalCamp Chattanooga 2013
Drush for drupal website builder
Speed up Drupal development with Drush
Beginning Drush
Improving your Drupal 8 development workflow DrupalCampLA
Intro to Drush
Welcome aboard the team
Boost your theming skills
Boost your theming skills - Artem Shymko
Building a Drupal Distribution using Features, Drush Make, Installation Profi...
Lightning Fast Drupal Theming (Drupal 7)
drush_multi @ DrupalDevDays 2010
Face your fears: Drush and Aegir
Depolying Drupal with Git, Drush Make and Capistrano
Doing Drupal security right from Drupalcon London
Ad

More from Drupal Camp Delhi (14)

PPTX
Content Migration to Drupal 8
PDF
Drupal Camp Delhi 2015
PDF
Campusdiaries Showcase - Raj Chourasia
PDF
Generics & Specifics of QA on Web - Sweta Shahi
PDF
Memcache and Drupal - Vaibhav Jain
PDF
How NOT to build Drupal Sites - Sai Tanay
PDF
Amplify user engagement with Game Mechanics - Vidhatanand
PDF
Future proof your drupal skills - Piyuesh Kumar
PDF
Basic Responsive Theming - Somedutta Ghosh
PDF
What is there in Drupal Community & their do's and don't's - Sivaji
PPTX
Multi lingual implementations – drupal design approaches for different scenar...
PPTX
Integration of Drupal websites and Android applications - Girish Gupta
PPTX
Graphics Designing (Character, Posters, Advertisements, Brochure, Interface B...
PDF
Drupal Camp Delhi 2013 - Event Brochure
Content Migration to Drupal 8
Drupal Camp Delhi 2015
Campusdiaries Showcase - Raj Chourasia
Generics & Specifics of QA on Web - Sweta Shahi
Memcache and Drupal - Vaibhav Jain
How NOT to build Drupal Sites - Sai Tanay
Amplify user engagement with Game Mechanics - Vidhatanand
Future proof your drupal skills - Piyuesh Kumar
Basic Responsive Theming - Somedutta Ghosh
What is there in Drupal Community & their do's and don't's - Sivaji
Multi lingual implementations – drupal design approaches for different scenar...
Integration of Drupal websites and Android applications - Girish Gupta
Graphics Designing (Character, Posters, Advertisements, Brochure, Interface B...
Drupal Camp Delhi 2013 - Event Brochure

Recently uploaded (20)

PPTX
Cloud computing and distributed systems.
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
A Presentation on Artificial Intelligence
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Encapsulation theory and applications.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Machine learning based COVID-19 study performance prediction
PPTX
Big Data Technologies - Introduction.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
cuic standard and advanced reporting.pdf
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPT
Teaching material agriculture food technology
PDF
Network Security Unit 5.pdf for BCA BBA.
Cloud computing and distributed systems.
Dropbox Q2 2025 Financial Results & Investor Presentation
Per capita expenditure prediction using model stacking based on satellite ima...
A Presentation on Artificial Intelligence
20250228 LYD VKU AI Blended-Learning.pptx
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Encapsulation theory and applications.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Review of recent advances in non-invasive hemoglobin estimation
The Rise and Fall of 3GPP – Time for a Sabbatical?
Machine learning based COVID-19 study performance prediction
Big Data Technologies - Introduction.pptx
Encapsulation_ Review paper, used for researhc scholars
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Reach Out and Touch Someone: Haptics and Empathic Computing
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
cuic standard and advanced reporting.pdf
Understanding_Digital_Forensics_Presentation.pptx
Teaching material agriculture food technology
Network Security Unit 5.pdf for BCA BBA.

Drush to simplify Drupalers work - Sivaji

  • 1. Drush to simplify Drupalers work Sivaji J.G, KnackForge Soft Solutions Pvt. Ltd.
  • 2. About Speaker • • • • • • • • Started Drupal evangelism as trainee in 2008 Integrated Drupal and gnokii for accessing bus routes information via SMS GSoC Alumnus 2009 Co-maintainer of quiz module Contributor to Drupal Core and Contrib modules in drupal.org Technical reviewer of Drupal books Featured Speaker / Trainer of Drupal Chennai workshops Technical Director / Drupal project manager at KnackForge
  • 3. Agenda • • • • What is Drush? Requirements and Installation How it works? Drush commands
  • 4. What is Drush? • • • • • • Command line utility to administer Drupal sites Typically used as “drush [options] <command> [argument1] [argument2]” Commonly used for cache clear, managing modules / themes / features, cron, etc. Supports Drupal 6.x and above Works best on Unix like OS and partially supported for Windows Maintained in GitHub /drush-ops/drush
  • 5. Requirements and Installation • • From PEAR o https://github.com/drush-ops/drush#install---pear Manual Installation o https://github.com/drush-ops/drush#install---manual
  • 7. Drush Commands • • • • • • • • • pm-download site-install user-password variable-get / set cache-clear core-cron core-status php-script updatedb • • • • • • • • • watchdog-show pm-list pm-enable pm-disable pm-uninstall sql-drop sql-query sql-sync sql-connect
  • 8. $ drush pm-download (dl) • • • • • • Download any projects from drupal.org Project could Drupal core, modules, themes or profiles. Handles project dependency Sticks to recommended versions by default Automatically figure out which project version you want based Integrates with version control system (git, svn
  • 9. $ drush pm-download (dl) Usage $ drush dl Project drupal (7.23) downloaded to /home/sivaji/Public/drupal-7.23. [success] Project drupal contains: [success] - 3 profiles: standard, testing, minimal - 4 themes: bartik, garland, stark, seven - 47 modules: image, openid, simpletest,...
  • 10. $ drush pm-download (dl) $ drush dl views Project views (7.x-3.7) downloaded to /home/sivaji/Public/drupal-7.23/sites/all/modules/views. [success] $ drush dl zen $ drush dl features-7.x-2.x-dev
  • 11. $ drush site-install (si) Installs Drupal with specified install profile Usage $ drush si standard --site-name="Drush Test" --db-url=<mysql://root:pass@127.0.0.1/db More default values • • • o --account-mail, --account-name, --db-prefix, --locale, --site-mail, [form name].[parameter name]
  • 12. $ drush site-install (si) $ drush si standard --site-name="Drupal Camp" --dburl=mysql://root@127.0.0.1/learning_drush You are about to create a sites/default/files directory and create a sites/default/settings.php file and CREATE the 'learning_drush' database. Do you want to continue? (y/n): y Starting Drupal installation. This takes a few seconds ... [ok] Installation complete. User name: admin User password: AGn744iDVd
  • 13. $ drush user-password (upwd) (Re)Set the password for the user account with the specified name Usage: Changing the auto generated password AGn744iDVd to Admin!@# for admin user. $ drush upwd admin --password=Admin!@#
  • 14. $ drush variable-get / variable-set (vget/vset) Get a list of some or all site variables and values. Usage $ drush variable-get site_name site_name: "Drupal Camp" $ drush variable-set site_name "Drupal Camp Delhi"
  • 15. $ drush cache-clear (cc) Clear a specific cache, or all drupal caches Usage, $ drush cc all $ drush cc menu
  • 16. $ drush cache-clear (cc) $ drush cc Enter a number to choose which cache to clear. [0] : Cancel [1] : all [2] : drush [3] : theme-registry [4] : menu [5] : css-js [6] : block [7] : module-list [8] : theme-list [9] : registry [10] : token [11] : views