INSTALL.txt 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * Quickstart
  4. * Requirements and notes
  5. * Optional server requirements
  6. * Installation
  7. * Reinstall
  8. * Building and customizing your site
  9. * Multisite configuration
  10. * Multilingual configuration
  11. QUICKSTART
  12. ----------------------
  13. Prerequisites:
  14. - PHP 5.5.9 (or greater) (https://php.net).
  15. In the instructions below, replace the version x.y.z with the specific version
  16. you wish to download. Example: 8.6.0.zip. You can find the latest stable version
  17. at https://www.drupal.org/project/drupal.
  18. Download and extract the Drupal package:
  19. - curl -sS https://ftp.drupal.org/files/projects/drupal-x.y.z.zip --output drupal-x.y.z.zip
  20. - unzip drupal-x.y.z.zip
  21. - cd /path/to/drupal-x.y.z
  22. - php core/scripts/drupal quick-start
  23. Wait… installation can take a minute or two. A successful installation will
  24. result in opening the new site in your browser.
  25. Run the following command for a list of available options that you may need to
  26. configure quick-start:
  27. - php core/scripts/drupal quick-start --help
  28. Follow the instructions in the REINSTALL section below to start over.
  29. NOTE: This quick start solution uses PHP's built-in web server and is not
  30. intended for production use. Read more about how to run Drupal in a production
  31. environment below.
  32. REQUIREMENTS AND NOTES
  33. ----------------------
  34. Drupal requires:
  35. - A web server with PHP support, for example:
  36. - Apache 2.0 (or greater) (http://httpd.apache.org/).
  37. - Nginx 1.1 (or greater) (http://nginx.com/).
  38. - PHP 5.5.9 (or greater) (http://php.net/). For better security support it is
  39. recommended to update to at least 5.5.21 or 5.6.5.
  40. - One of the following databases:
  41. - MySQL 5.5.3 (or greater) (http://www.mysql.com/).
  42. - MariaDB 5.5.20 (or greater) (https://mariadb.org/). MariaDB is a fully
  43. compatible drop-in replacement for MySQL.
  44. - Percona Server 5.5.8 (or greater) (http://www.percona.com/). Percona
  45. Server is a backwards-compatible replacement for MySQL.
  46. - PostgreSQL 9.1.2 (or greater) (http://www.postgresql.org/).
  47. - SQLite 3.7.11 (or greater) (http://www.sqlite.org/).
  48. For more detailed information about Drupal requirements, including a list of
  49. PHP extensions and configurations that are required, see "System requirements"
  50. (https://www.drupal.org/requirements) in the Drupal.org online documentation.
  51. For detailed information on how to configure a test server environment using a
  52. variety of operating systems and web servers, see "Local server setup"
  53. (https://www.drupal.org/node/157602) in the Drupal.org online documentation.
  54. Note that all directories mentioned in this document are always relative to the
  55. directory of your Drupal installation, and commands are meant to be run from
  56. this directory (except for the initial commands that create that directory).
  57. OPTIONAL SERVER REQUIREMENTS
  58. ----------------------------
  59. - If you want to use Drupal's "Clean URLs" feature on an Apache web server, you
  60. will need the mod_rewrite module and the ability to use local .htaccess
  61. files. For Clean URLs support on IIS, see "Clean URLs with IIS"
  62. (https://www.drupal.org/node/3854) in the Drupal.org online documentation.
  63. - If you plan to use XML-based services such as RSS aggregation, you will need
  64. PHP's XML extension. This extension is enabled by default on most PHP
  65. installations.
  66. - To serve gzip compressed CSS and JS files on an Apache web server, you will
  67. need the mod_headers module and the ability to use local .htaccess files.
  68. - Some Drupal functionality (e.g., checking whether Drupal and contributed
  69. modules need updates, RSS aggregation, etc.) require that the web server be
  70. able to go out to the web and download information. If you want to use this
  71. functionality, you need to verify that your hosting provider or server
  72. configuration allows the web server to initiate outbound connections. Most web
  73. hosting setups allow this.
  74. - PHP 5.5.21 provides features for improved security when used with MySQL. While
  75. this is not required, it is highly encouraged to use PHP 5.5.21 or 5.6.5 and
  76. above.
  77. INSTALLATION
  78. ------------
  79. 1. Download and extract Drupal.
  80. You can obtain the latest Drupal release from https://www.drupal.org -- the
  81. files are available in .tar.gz and .zip formats and can be extracted using
  82. most compression tools.
  83. To download and extract the files, on a typical Unix/Linux command line, use
  84. the following commands (assuming you want version x.y.z of Drupal in .tar.gz
  85. format):
  86. wget https://www.drupal.org/files/projects/drupal-x.y.z.tar.gz
  87. tar -zxvf drupal-x.y.z.tar.gz
  88. This will create a new directory drupal-x.y.z/ containing all Drupal files
  89. and directories. Then, to move the contents of that directory into a
  90. directory within your web server's document root or your public HTML
  91. directory, continue with this command:
  92. mv drupal-x.y.z/* drupal-x.y.z/.htaccess drupal-x.y.z/.csslintrc drupal-x.y.z/.editorconfig drupal-x.y.z/.eslintignore drupal-x.y.z/.eslintrc.json drupal-x.y.z/.gitattributes /path/to/your/installation
  93. You can also download the latest version of Drupal using Git on the command
  94. line and set up a repository by following the instructions at
  95. https://www.drupal.org/project/drupal/git-instructions for "Setting up
  96. repository for the first time".
  97. Once you have downloaded Drupal successfully, you may install Composer
  98. globally using the instructions at
  99. https://getcomposer.org/doc/00-intro.md#globally
  100. With Composer installed, run the following command from the Drupal web root:
  101. composer install
  102. 2. Create the Drupal database.
  103. Because Drupal stores all site information in a database, the Drupal
  104. installer will attempt to create this database for you. If you create the
  105. database manually, you must grant Drupal certain database privileges (such as
  106. the ability to create tables). For details, consult INSTALL.mysql.txt,
  107. INSTALL.pgsql.txt, or INSTALL.sqlite.txt. You may also need to consult your
  108. web hosting provider for instructions specific to your web host.
  109. Take note of the username, password, database name, and hostname as you
  110. create the database. You will enter this information during the install.
  111. 3. Run the install script.
  112. To run the install script, point your browser to the base URL of your
  113. website (e.g., http://www.example.com).
  114. You will be guided through several screens to set up the database, add the
  115. site maintenance account (the first user, also known as user/1), and provide
  116. basic web site settings.
  117. During installation, several files and directories need to be created, which
  118. the install script will try to do automatically. However, on some hosting
  119. environments, manual steps are required, and the install script will tell
  120. you that it cannot proceed until you fix certain issues. This is normal and
  121. does not indicate a problem with your server.
  122. The most common steps you may need to perform are:
  123. a. Missing files directory.
  124. The install script will attempt to create a public file storage directory
  125. in the default location at sites/default/files (the location of the files
  126. directory may be changed after Drupal is installed).
  127. If auto-creation fails, you can create the directory yourself. (If you are
  128. creating a multisite installation, substitute the correct sites directory
  129. for sites/default; see the Multisite Configuration section of this file,
  130. below.) Sample commands from a Unix/Linux command line:
  131. mkdir sites/default/files
  132. chmod a+w sites/default/files
  133. Alternatively, you can make the install script work by changing
  134. permissions on the sites/default directory. The web server can then
  135. create the files directory within it for you.
  136. For example, on a Unix/Linux command line, you can you can grant everyone
  137. (including the web server) permission to write to the sites/default
  138. directory with this command:
  139. chmod a+w sites/default
  140. Then re-run install.php (e.g. by clicking "try again" at the bottom of
  141. the Requirements problem page. Once the files directory is created, you
  142. will need to grant everyone (including the web server) permission to
  143. write to it with this command:
  144. chmod a+w sites/default/files
  145. Be sure to set the permissions for the default directory back after the
  146. installation is finished! (Leave the files directory writeable.)
  147. Sample command:
  148. chmod go-w sites/default
  149. b. Missing settings file.
  150. Drupal will try to automatically create a settings.php configuration file,
  151. which is normally in the directory sites/default (to avoid problems when
  152. upgrading, Drupal is not packaged with this file). If auto-creation fails,
  153. you will need to create this file yourself, using the file
  154. sites/default/default.settings.php as a template.
  155. For example, on a Unix/Linux command line, you can make a copy of the
  156. default.settings.php file with the command:
  157. cp sites/default/default.settings.php sites/default/settings.php
  158. Next, grant write privileges to the file to everyone (including the web
  159. server) with the command:
  160. chmod a+w sites/default/settings.php
  161. Be sure to set the permissions back after the installation is finished!
  162. Sample command:
  163. chmod go-w sites/default/settings.php
  164. c. Write permissions after install.
  165. The install script will attempt to write-protect the settings.php file and
  166. the sites/default directory after saving your configuration. If this
  167. fails, you will be notified, and you can do it manually. Sample commands
  168. from a Unix/Linux command line:
  169. chmod go-w sites/default/settings.php
  170. chmod go-w sites/default
  171. 4. Verify that the site is working.
  172. When the install script finishes, you will be logged in with the site
  173. maintenance account on a "Welcome" page. If the default Drupal theme is not
  174. displaying properly and links on the page result in "Page Not Found" errors,
  175. you may be experiencing problems with clean URLs. Visit
  176. https://www.drupal.org/getting-started/clean-urls to troubleshoot.
  177. 5. Change file system storage settings (optional).
  178. The files directory created in step 3 is the default file system path used to
  179. store all uploaded files, as well as some temporary files created by
  180. Drupal. After installation, you can modify the file system path to store
  181. uploaded files in a different location.
  182. It is not necessary to modify this path, but you may wish to change it if:
  183. - Your site runs multiple Drupal installations from a single codebase (modify
  184. the file system path of each installation to a different directory so that
  185. uploads do not overlap between installations).
  186. - Your site runs on a number of web servers behind a load balancer or reverse
  187. proxy (modify the file system path on each server to point to a shared file
  188. repository).
  189. - You want to restrict access to uploaded files.
  190. To modify the file system path:
  191. a. Ensure that the new location for the path exists and is writable by the
  192. web server. For example, to create a new directory named uploads and grant
  193. write permissions, use the following commands on a Unix/Linux command
  194. line:
  195. mkdir uploads
  196. chmod a+w uploads
  197. b. Open your settings.php in a plain-text editor, and uncomment (remove the #
  198. at the start of line) this line:
  199. # $settings['file_public_path'] = 'sites/default/files';
  200. Enter the desired path and save the file.
  201. If you want to use private file storage, you need to uncomment (remove
  202. the # at the start of line) the following line in settings.php:
  203. # $settings['file_private_path'] = '';
  204. Enter the path for private files and save the file.
  205. Changing the file system path after files have been uploaded may cause
  206. unexpected problems on an existing site. If you modify the file system path
  207. on an existing site, remember to copy all files from the original location
  208. to the new location.
  209. 6. Revoke documentation file permissions (optional).
  210. Some administrators suggest making the documentation files, especially
  211. CHANGELOG.txt, non-readable so that the exact version of Drupal you are
  212. running is slightly more difficult to determine. If you wish to implement
  213. this optional security measure, from a Unix/Linux command line you can use
  214. the following command:
  215. chmod a-r core/CHANGELOG.txt
  216. Note that the example only affects CHANGELOG.txt. To completely hide all
  217. documentation files from public view, repeat this command for each of the
  218. Drupal documentation files in the installation directory, substituting the
  219. name of each file for CHANGELOG.txt in the example.
  220. For more information on setting file permissions, see "Modifying Linux,
  221. Unix, and Mac file permissions" (https://www.drupal.org/node/202483) or
  222. "Modifying Windows file permissions" (https://www.drupal.org/node/202491) in
  223. the Drupal.org online documentation.
  224. 7. Set up independent "cron" maintenance jobs.
  225. Many Drupal modules have tasks that must be run periodically, including the
  226. Search module (building and updating the index used for keyword searching),
  227. the Aggregator module (retrieving feeds from other sites), and the System
  228. module (performing routine maintenance and pruning of database tables). These
  229. tasks are known as "cron maintenance tasks", named after the Unix/Linux
  230. "cron" utility.
  231. When you install Drupal, its built-in cron feature is enabled, which
  232. automatically runs the cron tasks periodically, triggered by people visiting
  233. pages of your site. You can configure the built-in cron feature by navigating
  234. to Administration > Configuration > System > Cron.
  235. It is also possible to run the cron tasks independent of site visits; this is
  236. recommended for most sites. To do this, you will need to set up an automated
  237. process to visit the page /cron on your site, which executes the cron
  238. tasks.
  239. The URL of the cron page requires a "cron key" to protect against
  240. unauthorized access. Your site's cron key is automatically generated during
  241. installation and is specific to your site. The full URL of the page, with the
  242. cron key, is available in the "Cron maintenance tasks" section of the Status
  243. report page at Administration > Reports > Status report.
  244. As an example for how to set up this automated process, you can use the
  245. crontab utility on Unix/Linux systems. The following crontab line uses the
  246. wget command to visit the cron page, and runs each hour, on the hour:
  247. 0 * * * * wget -O - -q -t 1 http://example.com/cron/YOURKEY
  248. Replace the text "http://example.com/cron/YOURKEY" in the example with the
  249. full URL displayed under "Cron maintenance tasks" on the "Status report"
  250. page.
  251. More information about cron maintenance tasks is available at
  252. https://www.drupal.org/cron, and sample cron shell scripts can be found in
  253. the core/scripts/ directory. (Note that these scripts must be customized like
  254. the above example, to add your site-specific cron key and domain name.)
  255. REINSTALL
  256. ------------
  257. Drupal can be reinstalled without downloading and extracting the Drupal release.
  258. 1. Drop all the tables in your database.
  259. 2. Remove everything in sites/default/files.
  260. 3. Remove sites/default/settings.php.
  261. 4. Follow the Installation Instructions above starting from Step 3 (Run the
  262. install script).
  263. BUILDING AND CUSTOMIZING YOUR SITE
  264. ----------------------------------
  265. A new installation of Drupal defaults to a very basic configuration. To extend
  266. your site, you use "modules" and "themes". A module is a plugin that adds
  267. functionality to Drupal, while a theme changes the look of your site. The core
  268. of Drupal provides several optional modules and themes, and you can download
  269. more at https://www.drupal.org/project/project_module and
  270. https://www.drupal.org/project/project_theme
  271. Do not mix downloaded or custom modules and themes with Drupal's core modules
  272. and themes. Drupal's modules and themes are located in the /core/modules and
  273. /core/themes directories, while the modules and themes you add to Drupal are
  274. normally placed in the /modules and /themes directories. If you run a multisite
  275. installation, you can also place modules and themes in the site-specific
  276. directories -- see the Multisite Configuration section, below.
  277. Never edit Drupal's core modules and themes; instead, use the hooks available in
  278. the Drupal API. To modify the behavior of Drupal, develop a module as described
  279. at https://www.drupal.org/developing/modules. To modify the look of Drupal,
  280. create a subtheme as described at https://www.drupal.org/node/2165673, or a
  281. completely new theme as described at https://www.drupal.org/docs/8/theming
  282. MULTISITE CONFIGURATION
  283. -----------------------
  284. A single Drupal installation can host several Drupal-powered sites, each with
  285. its own individual configuration.
  286. For this to work you need the file sites/sites.php to exist. Make a copy of
  287. the example.sites.php file:
  288. $ cp sites/example.sites.php sites/sites.php
  289. Additional site configurations are created in subdirectories within the 'sites'
  290. directory. Each subdirectory must have a 'settings.php' file, which specifies
  291. the configuration settings. The easiest way to create additional sites is to
  292. copy file 'default.settings.php' from the 'sites/default' directory into the
  293. new site directory with file name 'settings.php' and modify as appropriate.
  294. The new directory name is constructed from the site's URL. The configuration
  295. for www.example.com could be in 'sites/example.com/settings.php' (note that
  296. 'www.' should be omitted if users can access your site at http://example.com/).
  297. $ cp sites/default/defaults.settings.php sites/example.com/settings.php
  298. Sites do not have to have a different domain. You can also use subdomains and
  299. subdirectories for Drupal sites. For example, example.com, sub.example.com, and
  300. sub.example.com/site3 can all be defined as independent Drupal sites. The setup
  301. for a configuration such as this would look like the following:
  302. sites/default/settings.php
  303. sites/example.com/settings.php
  304. sites/sub.example.com/settings.php
  305. sites/sub.example.com.site3/settings.php
  306. When searching for a site configuration (for example www.sub.example.com/site3),
  307. Drupal will search for configuration files in the following order, using the
  308. first configuration it finds:
  309. sites/www.sub.example.com.site3/settings.php
  310. sites/sub.example.com.site3/settings.php
  311. sites/example.com.site3/settings.php
  312. sites/www.sub.example.com/settings.php
  313. sites/sub.example.com/settings.php
  314. sites/example.com/settings.php
  315. sites/default/settings.php
  316. If you are installing on a non-standard port, the port number is treated as the
  317. deepest subdomain. For example: http://www.example.com:8080/ could be loaded
  318. from sites/8080.www.example.com/. The port number will be removed according to
  319. the pattern above if no port-specific configuration is found, just like a real
  320. subdomain.
  321. Each site configuration can have its own site-specific modules and themes in
  322. addition to those installed in the standard 'modules' and 'themes' directories.
  323. To use site-specific modules or themes, simply create a 'modules' or 'themes'
  324. directory within the site configuration directory. For example, if
  325. sub.example.com has a custom theme and a custom module that should not be
  326. accessible to other sites, the setup would look like this:
  327. sites/sub.example.com/
  328. settings.php
  329. themes/custom_theme
  330. modules/custom_module
  331. For more information about multiple virtual hosts or the configuration
  332. settings, consult https://www.drupal.org/documentation/install/multi-site
  333. For more information on configuring Drupal's file system path in a multisite
  334. configuration, see step 6 above.
  335. MULTILINGUAL CONFIGURATION
  336. --------------------------
  337. By default, Drupal is installed in one language, and further languages may be
  338. installed later.
  339. For detailed instructions, visit
  340. https://www.drupal.org/documentation/multilingual