]> git.mxchange.org Git - friendica.git/blob - doc/Install.md
merge Install.md into doc/Install.md, remove Install.md afterwards
[friendica.git] / doc / Install.md
1 # Friendica Installation
2
3
4 We've tried very hard to ensure that Friendica will run on commodity hosting platforms - such as those used to host Wordpress blogs and Drupal websites.
5 We offer a manual and an automatic installation.
6 But be aware that Friendica is more than a simple web application.
7 It is a complex communications system which more closely resembles an email server than a web server.
8 For reliability and performance, messages are delivered in the background and are queued for later delivery when sites are down.
9 This kind of functionality requires a bit more of the host system than the typical blog.
10 Not every PHP/MySQL hosting provider will be able to support Friendica.
11 Many will.
12 But **please** review the requirements and confirm these with your hosting provider prior to installation.
13
14 ## Support
15 If you encounter installation issues, please let us know via the [helper](http://forum.friendi.ca/profile/helpers) or the [developer](https://forum.friendi.ca/profile/developers) forum or [file an issue](https://github.com/friendica/friendica/issues).
16
17 Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future.
18 Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues.
19
20 If you do not have a Friendica account yet, you can register a temporary one at [tryfriendica.de](https://tryfriendica.de) and join the forums mentioned above from there.
21 The account will expire after 7 days, but you can ask the server admin to keep your account longer, should the problem not be resolved after that.
22
23 ## Prerequisites
24
25 * Choose a domain name or subdomain name for your server. Put some thought into this. While changing it after installation is supported, things still might break.
26 * Setup HTTPS on your host. 
27
28 ### Requirements
29
30 * Apache with mod-rewrite enabled and "Options All" so you can use a local .htaccess file
31 * PHP 7+ (PHP 7.1+ is recommended for performance and official support)
32   * PHP *command line* access with register_argc_argv set to true in the php.ini file
33   * Curl, GD, PDO, MySQLi, hash, xml, zip and OpenSSL extensions
34   * The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it)
35   * some form of email server or email gateway such that PHP mail() works
36 * MySQL 5.6+ or an equivalent alternative for MySQL (MariaDB, Percona Server etc.)
37 * ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows)
38 * installation into a top-level domain or sub-domain (without a directory/path component in the URL) is RECOMMENDED. Directory paths will not be as convenient to use and have not been thoroughly tested. This is REQUIRED if you wish to communicate with the Diaspora network.
39
40 **If your hosting provider doesn't allow Unix shell access, you might have trouble getting everything to work.**
41
42 For alternative server configurations (such as Nginx server and MariaDB database engine), refer to the [Friendica wiki](https://github.com/friendica/friendica/wiki).
43
44 ### Optional 
45
46 * PHP ImageMagick extension (php-imagick) for animated GIF support.
47 * [Composer](https://getcomposer.org/) for a git install
48
49 ## Installation procedure
50
51 ### Alternative Installation Methods
52
53 This guide will walk you through the manual installation process of Friendica.
54 If this is nothing for you, you might be interested in
55
56 * the [Friendica Docker image](https://github.com/friendica/docker) or
57 * how to [install Friendica with YunoHost](https://github.com/YunoHost-Apps/friendica_ynh).
58
59 ### Get Friendica
60
61 Unpack the Friendica files into the root of your web server document area.
62
63 If you copy the directory tree to your webserver, make sure that you also copy 
64 `.htaccess-dist` - as "dot" files are often hidden and aren't normally copied.
65
66 **OR**
67
68 Clone the [friendica/friendica GitHub repository](https://github.com/friendica/friendica) and import dependencies.
69 This makes the software much easier to update.
70
71 The Linux commands to clone the repository into a directory "mywebsite" would be
72
73     git clone https://github.com/friendica/friendica.git -b master mywebsite
74     cd mywebsite
75     bin/composer.phar install --no-dev
76
77 Make sure the folder *view/smarty3* exists and is writable by the webserver user, in this case *www-data*
78
79     mkdir view/smarty3
80     chown www-data:www-data view/smarty3
81     chmod 775 view/smarty3
82
83 Get the addons by going into your website folder.
84
85     cd mywebsite
86
87 Clone the addon repository (separately):
88
89     git clone https://github.com/friendica/friendica-addons.git -b master addon
90
91 If you want to use the development version of Friendica you can switch to the develop branch in the repository by running
92
93     git checkout develop
94     bin/composer.phar install
95     cd addon
96     git checkout develop
97
98 **Be aware that the develop branch is unstable and may break your Friendica node at any time.**
99 You should have a recent backup before updating.
100 If you encounter a bug, please let us know.
101
102 ### Create a database
103
104 Create an empty database and note the access details (hostname, username, password, database name).
105
106 Friendica needs the permission to create and delete fields and tables in its own database.
107
108 Please check the [troubleshooting](#troubleshooting) section if running on MySQ 5.7.17 or newer.
109
110 ### Option A: Run the installer
111
112 Point your web browser to the new site and follow the instructions.
113 Please note any error messages and correct these before continuing.
114
115 If you need to specify a port for the connection to the database, you can do so in the host name setting for the database.
116
117 *If* the manual installation fails for any reason, check the following:
118
119 * Does `config/local.config.php` exist? If not, edit `config/local-sample.config.php` and change the system settings.
120 * Rename to `config/local.config.php`.
121 * Is the database populated? If not, import the contents of `database.sql` with phpmyadmin or the mysql command line.
122
123 At this point visit your website again, and register your personal account.
124 Registration errors should all be recoverable automatically.
125 If you get any *critical* failure at this point, it generally indicates the database was not installed correctly.
126 You might wish to move/rename `config/local.config.php` to another name and empty (called 'dropping') the database tables, so that you can start fresh.
127
128 ### Option B: Run the automatic install script
129
130 You have the following options to automatically install Friendica:
131 -       creating a prepared config file (f.e. `prepared.config.php`)
132 -       using environment variables (f.e. `MYSQL_HOST`)
133 -       using options (f.e. `--dbhost <host>`)
134
135 You can combine environment variables and options, but be aware that options are prioritized over environment variables. 
136
137 For more information during the installation, you can use this command line option
138
139     bin/console autoinstall -v
140
141 If you wish to include all optional checks, use `-a` like this statement:
142
143     bin/console autoinstall -a
144     
145 *If* the automatic installation fails for any reason, check the following:
146
147 *       Does `config/local.config.php` already exist? If yes, the automatic installation won't start
148 *       Are the options in the `config/local.config.php` correct? If not, edit them directly.
149 *       Is the empty MySQL-database created? If not, create it.
150
151 #### B.1: Config file
152
153 You can use a prepared config file like [local-sample.config.php](config/local-sample.config.php).
154
155 Navigate to the main Friendica directory and execute the following command:
156
157     bin/console autoinstall -f <prepared.config.php>
158     
159 #### B.2: Environment variables
160
161 There are two types of environment variables.
162 -       those you can use in normal mode too (Currently just **database credentials**)
163 -       those you can only use during installation (because Friendica will normally ignore it)
164
165 You can use the options during installation too and skip some of the environment variables.
166
167 **Database credentials**
168
169 if you don't use the option `--savedb` during installation, the DB credentials will **not** be saved in the `config/local.config.php`.
170
171 -       `MYSQL_HOST` The host of the mysql/mariadb database
172 -       `MYSQL_PORT` The port of the mysql/mariadb database
173 -       `MYSQL_USERNAME` The username of the mysql database login (used for mysql)
174 -       `MYSQL_USER` The username of the mysql database login (used for mariadb)
175 -       `MYSQL_PASSWORD` The password of the mysql/mariadb database login
176 -       `MYSQL_DATABASE` The name of the mysql/mariadb database
177
178 **Friendica settings**
179
180 This variables wont be used at normal Friendica runtime.
181 Instead, they get saved into `config/local.config.php`. 
182
183 -       `FRIENDICA_URL_PATH` The URL path of Friendica (f.e. '/friendica')
184 -       `FRIENDICA_PHP_PATH` The path of the PHP binary
185 -       `FRIENDICA_ADMIN_MAIL` The admin email address of Friendica (this email will be used for admin access)
186 -       `FRIENDICA_TZ` The timezone of Friendica
187 -       `FRIENDICA_LANG` The language of Friendica
188
189 Navigate to the main Friendica directory and execute the following command:
190
191     bin/console autoinstall [--savedb]
192
193 #### B.3: Execution options
194
195 All options will be saved in the `config/local.config.php` and are overruling the associated environment variables.
196
197 -       `-H|--dbhost <host>` The host of the mysql/mariadb database (env `MYSQL_HOST`)
198 -       `-p|--dbport <port>` The port of the mysql/mariadb database (env `MYSQL_PORT`)
199 -       `-U|--dbuser <username>` The username of the mysql/mariadb database login (env `MYSQL_USER` or `MYSQL_USERNAME`)
200 -       `-P|--dbpass <password>` The password of the mysql/mariadb database login (env `MYSQL_PASSWORD`)
201 -       `-d|--dbdata <database>` The name of the mysql/mariadb database (env `MYSQL_DATABASE`)
202 -       `-u|--urlpath <url_path>` The URL path of Friendica - f.e. '/friendica' (env `FRIENDICA_URL_PATH`)
203 -       `-b|--phppath <php_path>` The path of the PHP binary (env `FRIENDICA_PHP_PATH`)
204 -       `-A|--admin <mail>` The admin email address of Friendica (env `FRIENDICA_ADMIN_MAIL`)
205 -       `-T|--tz <timezone>` The timezone of Friendica (env `FRIENDICA_TZ`)
206 -       `-L|--lang <language>` The language of Friendica (env `FRIENDICA_LANG`)
207
208 Navigate to the main Friendica directory and execute the following command:
209
210     bin/console autoinstall [options]
211
212 ### Prepare .htaccess file
213
214 Copy `.htaccess-dist` to `.htaccess` (be careful under Windows) to have working mod-rewrite again. If you have installed Friendica into a sub directory, like /friendica/ set this path in RewriteBase accordingly.
215
216 Example:
217
218     cp .htacces-dist .htaccess
219
220 *Note*: Do **not** rename the .htaccess-dist file as it is tracked by GIT and renaming will cause a dirty working directory.
221
222 ### Verify the "host-meta" page is working
223
224 Friendica should respond automatically to important addresses under the /.well-known/ rewrite path.
225 One critical URL would look like, for example, https://example.com/.well-known/host-meta
226 It must be visible to the public and must respond with an XML file that is automatically customized to your site.
227
228 If that URL is not working, it is possible that some other software is using the /.well-known/ path.
229 Other symptoms may include an error message in the Admin settings that says "host-meta is not reachable on your system.
230 This is a severe configuration issue that prevents server to server communication."
231 Another common error related to host-meta is the "Invalid profile URL."
232
233 Check for a .well-known directory that did not come with Friendica.
234 The preferred configuration is to remove the directory, however this is not always possible.
235 If there is any /.well-known/.htaccess file, it could interfere with this Friendica core requirement.
236 You should remove any RewriteRules from that file, or remove that whole file if appropriate.
237 It may be necessary to chmod the /.well-known/.htaccess file if you were not given write permissions by default.
238
239 ## Register the admin account
240
241 At this point visit your website again, and register your personal account with the same email as in the `config.admin_email` config value.
242 Registration errors should all be recoverable automatically.
243
244 If you get any *critical* failure at this point, it generally indicates the database was not installed correctly. 
245 You might wish to delete/rename `config/local.config.php` to another name and drop all the database tables so that you can start fresh.
246
247 ## Post Install Configuration
248
249 ### (REQUIRED) Background tasks
250
251 Set up a cron job or scheduled task to run the worker once every 5-10 minutes in order to perform background processing.
252 Example:
253
254     cd /base/directory; /path/to/php bin/worker.php
255
256 Change "/base/directory", and "/path/to/php" as appropriate for your situation.
257
258 #### cron job for Worker
259
260 If you are using a Linux server, run "crontab -e" and add a line like the
261 one shown, substituting for your unique paths and settings:
262
263     */10 * * * * cd /home/myname/mywebsite; /usr/bin/php bin/worker.php
264
265 You can generally find the location of PHP by executing "which php".
266 If you run into trouble with this section please contact your hosting provider for assistance.
267 Friendica will not work correctly if you cannot perform this step.
268
269 If it is not possible to set up a cron job then please activate the "frontend worker" in the administration interface.
270
271 Once you have installed Friendica and created an admin account as part of the process, you can access the admin panel of your installation and do most of the server wide configuration from there.
272
273 #### worker alternative: daemon
274 Otherwise, you’ll need to use the command line on your remote server and start the Friendica daemon (background task) using the following command:
275
276     cd /path/to/friendica; php bin/daemon.php start
277
278 Once started, you can check the daemon status using the following command:
279
280     cd /path/to/friendica; php bin/daemon.php status
281
282 After a server restart or any other failure, the daemon needs to be restarted. 
283 This could be achieved by a cronjob.
284
285 ### (RECOMMENDED) Logging & Log Rotation
286
287 At this point it is recommended that you set up logging and logrotation.
288 To do so please visit [Settings](help/Settings) and search the 'Logs' section for more information.
289
290 ### (RECOMMENDED) Set up a backup plan
291
292 Bad things will happen.
293 Let there be a hardware failure, a corrupted database or whatever you can think of.
294 So once the installation of your Friendica node is done, you should make yourself a backup plan.
295
296 The most important file is the `config/local.config.php` file.
297 As it stores all your data, you should also have a recent dump of your Friendica database at hand, should you have to recover your node.
298
299 ### (OPTIONAL) Reverse-proxying and HTTPS
300
301 Friendica looks for some well-known HTTP headers indicating a reverse-proxy
302 terminating an HTTPS connection.
303 While the standard from RFC 7239 specifies the use of the `Forwarded` header.
304
305     Forwarded: for=192.0.2.1; proto=https; by=192.0.2.2
306
307 Friendica also supports a number on non-standard headers in common use.
308
309     X-Forwarded-Proto: https
310
311     Front-End-Https: on
312
313     X-Forwarded-Ssl: on
314
315 It is however preferable to use the standard approach if configuring a new server.
316
317 ## Troubleshooting
318
319 ### "System is currently unavailable. Please try again later"
320
321 Check your database settings.
322 It usually means your database could not be opened or accessed.
323 If the database resides on the same machine, check that the database server name is "localhost".
324
325 ### 500 Internal Error
326
327 This could be the result of one of our Apache directives not being supported by your version of Apache. Examine your apache server logs.
328 You might remove the line "Options -Indexes" from the .htaccess file if you are using a Windows server as this has been known to cause problems.
329 Also check your file permissions. Your website and all contents must generally be world-readable.
330
331 It is likely that your web server reported the source of the problem in its error log files.
332 Please review these system error logs to determine what caused the problem.
333 Often this will need to be resolved with your hosting provider or (if self-hosted) your web server configuration.
334
335 ### 400 and 4xx "File not found" errors
336
337 First check your file permissions.
338 Your website and all contents must generally be world-readable.
339
340 Ensure that mod-rewite is installed and working, and that your `.htaccess` file
341 is being used. To verify the latter, create a file `test.out` containing the
342 word "test" in the top directory of Friendica, make it world readable and point
343 your web browser to
344
345         http://yoursitenamehere.com/test.out
346
347 This file should be blocked. You should get a permission denied message.
348
349 If you see the word "test" your Apache configuration is not allowing your
350 `.htaccess` file to be used (there are rules in this file to block access to any
351 file with .out at the end, as these are typically used for system logs).
352
353 Make certain the `.htaccess` file exists and is readable by everybody, then look
354 for the existence of "AllowOverride None" in the Apache server configuration for your site.
355 This will need to be changed to "AllowOverride All".
356
357 If you do not see the word "test", your `.htaccess` is working, but it is likely
358 that mod-rewrite is not installed in your web server or is not working.
359
360 On most Linux flavors:
361
362         % a2enmod rewrite
363         % /etc/init.d/apache2 restart
364
365 Consult your hosting provider, experts on your particular Linux distribution or
366 (if Windows) the provider of your Apache server software if you need to change
367 either of these and can not figure out how. There is a lot of help available on
368 the web. Search "mod-rewrite" along with the name of your operating system
369 distribution or Apache package (if using Windows).
370
371 ### Unable to write the file config/local.config.php due to permissions issues
372
373 Create an empty `config/local.config.php`file and apply world-write permission.
374
375 On Linux:
376
377         % touch config/local.config.php
378         % chmod 664 config/local.config.php
379
380 Retry the installation. As soon as the database has been created,
381
382 ******* this is important *********
383
384         % chmod 644 config/local.config.php
385
386 ### Suhosin issues
387
388 Some configurations with "suhosin" security are configured without an ability to
389 run external processes. Friendica requires this ability. Following are some notes
390 provided by one of our members.
391
392 > On my server I use the php protection system Suhosin [http://www.hardened-php.net/suhosin/].
393 > One of the things it does is to block certain functions like proc_open, as
394 > configured in `/etc/php5/conf.d/suhosin.ini`:
395
396 >     suhosin.executor.func.blacklist = proc_open, ...
397 >
398 > For those sites like Friendica that really need these functions they can be
399 > enabled, e.g. in `/etc/apache2/sites-available/friendica`:
400 >
401 >       <Directory /var/www/friendica/>
402 >         php_admin_value suhosin.executor.func.blacklist none
403 >         php_admin_value suhosin.executor.eval.blacklist none
404 >       </Directory>
405
406 > This enables every function for Friendica if accessed via browser, but not for
407 > the cronjob that is called via php command line. I attempted to enable it for
408 > cron by using something like:
409
410 >       */10 * * * * cd /var/www/friendica/friendica/ && sudo -u www-data /usr/bin/php \
411 >       -d suhosin.executor.func.blacklist=none \
412 >       -d suhosin.executor.eval.blacklist=none -f bin/worker.php
413
414 > This worked well for simple test cases, but the friendica-cron still failed
415 > with a fatal error:
416
417 >       suhosin[22962]: ALERT - function within blacklist called: proc_open()
418 >     (attacker 'REMOTE_ADDR not set', file '/var/www/friendica/friendica/boot.php',
419 >     line 1341)
420
421 > After a while I noticed, that `bin/worker.php` calls further PHP script via `proc_open`.
422 > These scripts themselves also use `proc_open` and fail, because they are NOT
423 > called with `-d suhosin.executor.func.blacklist=none`.
424
425 >  So the simple solution is to put the correct parameters into `config/local.config.php`:
426
427 >       'config' => [
428 >               //Location of PHP command line processor
429 >               'php_path' => '/usr/bin/php -d suhosin.executor.func.blacklist=none \
430 >               -d suhosin.executor.eval.blacklist=none',
431 >       ],
432
433 > This is obvious as soon as you notice that the friendica-cron uses `proc_open`
434 > to execute PHP scripts that also use `proc_open`, but it took me quite some time to find that out.
435 > I hope this saves some time for other people using suhosin with function blacklists.
436
437 ### Unable to create all mysql tables on MySQL 5.7.17 or newer
438
439 If the setup fails to create all the database tables and/or manual creation from
440 the command line fails, with this error:
441
442         ERROR 1067 (42000) at line XX: Invalid default value for 'created'
443
444 You need to adjust your my.cnf and add the following setting under the [mysqld]
445 section:
446
447         sql_mode = '';
448
449 After that, restart mysql and try again.