Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
content:apache_phpfpm [2020/04/03 16:07] – [PHP Configuration] Daniel | content:apache_phpfpm [2024/09/07 11:10] (aktuell) – [LAMPf: Linux / Apache / MariaDB / PHP- FPM- Serverguide] Daniel | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
- | ====== | + | ====== |
- | This documentation is about how to set up a LAMP- Server (Linux, Apache, | + | Note: The here explained way of setting |
- | ===== Choosing Installation-Media & Install Basic System ===== | + | For example: if you want to make those Services available on the internet, you should definitively want to make webservices SSL- secured. Getting automatic SSL- Certificates and renew them in a good way, will work if you know how to set it up, but the setup is just another thing to care about. |
- | First, starting from Windows, you should make shure to have enough harddisk- space free. Then get a installation-medium | + | So nowadays there are solutions to make complexity for that more handy which would be e.g. using Docker or Podman - which would be another, very different approach for large system, delivering a full, extremly powerful service- infrastructure in a pre- build way (it also delivers apache with php-fpm and automatic ssl-acme-challanges out of the box in many packages!). |
- | | + | So if you plan to set up a new fully flagged Server which will have many needed services, don't use this setup. Just after installation go straight into installing and setting up e.g. Docker and go on and use it for all services you can find there. |
- | - Make the Installation- Media | + | |
+ | So this for me is deprecated as i bought a new server here. I won't spend any time here. If you wann know more about nowadays setups, feel free and write a mail to me, maybe i will deliver docs to this than. HF and GL obel1x | ||
+ | |||
+ | |||
+ | ===== Howto setup a LAMP-Server in 2018 - 2020+ ===== | ||
+ | |||
+ | This documentation is about how to set up a LAMP- Server (Linux, Apache, MySql aka MariaDB, PhP) in the current, most stable way for home office usage. The reason for me writing this is, that default Installations of common Distruibutions are often based on an old styled configuration, | ||
+ | |||
+ | To get the Differences, | ||
+ | |||
+ | * Apache-Prefork. That way, Apache is one Application with many threads - which is slower, consumes more memory and doesn' | ||
+ | * PHP-Module (mod_php) loaded as Module in the Apache- Server which is not released as stable and may crash the whole Apache- Server on Errors. This module must be compiled to match the Apache- Version, so upgrading Apache means upgrading mod_php | ||
+ | * PHP- Modules, which must be compiled againt the apache-mod_php- module. Updating mod_php means updating all modules. | ||
+ | * Using Network Connections with overhead to connect to | ||
+ | * MariaDB | ||
+ | |||
+ | And here is what this guide will set up: | ||
+ | |||
+ | * Apache- Event. That way, Apache is one small Apache- Manager- Application which will spawn as many Apache- Servers as needed to handle the incoming connections dynamically. This is stable, as one Error may only crash the one Instance, which will be respawned by the Apache- Manager dynamically | ||
+ | * Connection to php is done by Proxy- Handling in Apache | ||
+ | * PHP-FPM will also Spawn PHP-Instances dynamically for each script beeing run | ||
+ | * Using Socket Connections to connect to | ||
+ | * MariaDB | ||
+ | |||
+ | ==== Choosing Installation-Media & Install Basic System ==== | ||
+ | |||
+ | First, starting from Windows, you should make sure to have enough harddisk space free (i recommend at least 60 GB). Then get the installation-medium of the Linux your choice. I will stick to OpenSuSE as to get from [[https:// | ||
+ | |||
+ | | ||
+ | - Create | ||
- Install the System with standard Desktop- Packages (KDE) | - Install the System with standard Desktop- Packages (KDE) | ||
- Boot into new Linux and Set Up Desktop as you like | - Boot into new Linux and Set Up Desktop as you like | ||
- | ===== Basic System- Scaling thoughts | + | ==== Basic System- Scaling thoughts ==== |
- | The most important thing to consider when making performant LAMP is to **not overextend memory-usage** | + | The most important thing to consider when making performant LAMP is to **not overextend memory-usage** |
The remaining Memory should be Split around this Values: | The remaining Memory should be Split around this Values: | ||
Zeile 38: | Zeile 67: | ||
Use " | Use " | ||
- | ===== Install MySql ===== | + | ==== Install |
- | In OpenSuSE MariaDB is available and working out of the Box (maybe change the Admin- Password at first Start). MySQL is tuneable in /etc/my.cnf: | + | In OpenSuSE MariaDB is available and working out of the Box. Check with: |
+ | < | ||
+ | |||
+ | sudo zypper install mariadb | ||
+ | |||
+ | </code> | ||
- | You should check the Parameters align with the memory of your machine (see above): Settings for 4 GB Memory (at all), are: | + | MySQL is tuneable in / |
* innodb_buffer_pool_size = 768M | * innodb_buffer_pool_size = 768M | ||
Zeile 54: | Zeile 88: | ||
Memory-Usage will be: innodb_buffer_pool_size + ( join_buffer_size + sort_buffer_size + readn_rnd_buffer_size ) * max_connections. If your System has more memory, use some tuning script (like MySQLTuner-perl) to see what makes most sense to put the memory to. | Memory-Usage will be: innodb_buffer_pool_size + ( join_buffer_size + sort_buffer_size + readn_rnd_buffer_size ) * max_connections. If your System has more memory, use some tuning script (like MySQLTuner-perl) to see what makes most sense to put the memory to. | ||
- | Start Mysql with " | + | For a local setup, you should |
- | ===== Install Apache | + | < |
+ | socket | ||
+ | |||
+ | </ | ||
+ | |||
+ | You should than deactivate TCP/IP with " | ||
+ | |||
+ | Start Mysql with | ||
+ | |||
+ | < | ||
+ | systemctl start mariadb | ||
+ | |||
+ | </ | ||
+ | |||
+ | at the command line as root, it should work now. | ||
+ | |||
+ | To setup passwords, run / | ||
+ | |||
+ | ==== Install Apache ==== | ||
In SuSE 15.X the apache-prefork is installed by default as MPM, which means having one single Apache- Programm in memory. This is not very well scaleable (not multithreaded) and not very stable, as one hangig Request can stop the Server. | In SuSE 15.X the apache-prefork is installed by default as MPM, which means having one single Apache- Programm in memory. This is not very well scaleable (not multithreaded) and not very stable, as one hangig Request can stop the Server. | ||
Zeile 65: | Zeile 117: | ||
* Open the Software Store | * Open the Software Store | ||
- | * Install | + | * Install |
- | * Remove | + | * Remove |
* Commit the Changes | * Commit the Changes | ||
* in / | * in / | ||
- | < | ||
+ | < | ||
#This Config is for event or worker MPMs. | #This Config is for event or worker MPMs. | ||
# | # | ||
Zeile 95: | Zeile 147: | ||
I would suggest to remove any mpm-specific configurations and use only those settings. You can leave the other settings as defined by initial setup. | I would suggest to remove any mpm-specific configurations and use only those settings. You can leave the other settings as defined by initial setup. | ||
- | ===== Install PhP-FPM | + | After that, open yast and go to sysconfig- editor. Search for APACHE_MPM and select event. |
+ | |||
+ | Test running apache with | ||
+ | |||
+ | < | ||
+ | systemctl start apache2.service | ||
+ | |||
+ | systemctl status apache2.service | ||
+ | ● apache2.service - The Apache Webserver | ||
+ | Loaded: loaded (/ | ||
+ | Active: active (running) since Tue 2022-11-22 19:43:17 CET; 1s ag | ||
+ | |||
+ | </ | ||
+ | |||
+ | If thats fine, please stop apache once again to configure php-fpm first. | ||
+ | |||
+ | ==== Install PhP-FPM ==== | ||
If installed, remove mod_php (see beneath)! The Module for apache is known to make it slow and instable - here we will set up PhP-FPM, which is much more stable and much faster. [[https:// | If installed, remove mod_php (see beneath)! The Module for apache is known to make it slow and instable - here we will set up PhP-FPM, which is much more stable and much faster. [[https:// | ||
Zeile 104: | Zeile 172: | ||
< | < | ||
- | sudo zypper remove apache2-mod_php7 | + | sudo zypper remove apache2-mod_php8 |
- | sudo a2dismod | + | sudo a2dismod |
</ | </ | ||
+ | |||
* I would suggest using a newer Version of php-fpm than in the default Repositories. E.g. using the Version of Repository " | * I would suggest using a newer Version of php-fpm than in the default Repositories. E.g. using the Version of Repository " | ||
* Either install the new Version with 1-Click-Install there **or** | * Either install the new Version with 1-Click-Install there **or** | ||
< | < | ||
- | sudo zypper install | + | sudo zypper install |
</ | </ | ||
- | * Than, install mod_fcgi - it is used to tunnel request to php-fpm: | ||
- | < | ||
- | sudo zypper install apache2-mod_fcgid | ||
- | sudo a2enmod proxy proxy_fcgi setenvif | ||
- | |||
- | </ | ||
* Copy the configuration-files for php-fpm: | * Copy the configuration-files for php-fpm: | ||
< | < | ||
- | sudo cp /etc/php7/ | + | sudo cp /etc/php8/ |
- | sudo cp /etc/php7/ | + | sudo cp /etc/php8/ |
</ | </ | ||
- | | + | |
+ | | ||
* Explanation: | * Explanation: | ||
- | * This here is new for the setup: in "/ | ||
- | * If using sockets, make sure the path exists and is writeable by the apache- user (an that this mathces the user in www.conf for php-fpm) | ||
The " | The " | ||
Zeile 141: | Zeile 203: | ||
* pm.min_spare_servers = 6 | * pm.min_spare_servers = 6 | ||
* pm.max_spare_servers = 18 | * pm.max_spare_servers = 18 | ||
+ | |||
+ | ==== Using Sockets ==== | ||
+ | |||
+ | Whenever you can - you should use unix sockets instead of TCP/IP, because of less overhead. If you are on the same machine (apache and php-fpm), than you can. | ||
+ | |||
+ | So this here is new for the setup: in "/ | ||
+ | |||
+ | < | ||
+ | listen = / | ||
+ | listen.owner = wwwrun | ||
+ | listen.group = www | ||
+ | listen.mode = 0660 | ||
+ | |||
+ | </ | ||
+ | |||
+ | You need to make the file be created by systemd, so create a file / | ||
+ | |||
+ | < | ||
+ | d / | ||
+ | |||
+ | </ | ||
==== PHP Configuration ==== | ==== PHP Configuration ==== | ||
- | I do not recommend using php.ini in /etc/php7/fpm, but to put it in /etc/php7/conf.d With that Setup, the whole php-configuration will be the same for cli- and web(f)cgi- php execution. Check to move all php.ini files to conf.d. After that, go through the ini-files in conf.d an see if they fit your needs. Especially each Parameter should only be defined once. | + | I do not recommend using php.ini in /etc/php8/fpm, but to put it in /etc/php8/conf.d With that Setup, the whole php-configuration will be the same for cli- and web(f)cgi- php execution. Check to move all php.ini files to conf.d. After that, go through the ini-files in conf.d an see if they fit your needs. Especially each Parameter should only be defined once. |
After that, start php-fpm: | After that, start php-fpm: | ||
Zeile 156: | Zeile 239: | ||
and check, if the socket-file has been created. | and check, if the socket-file has been created. | ||
- | === About PHP- Modules === | + | ==== About PHP- Modules |
- | many modules for PHP are offered in the Distrubution. I **would not recommend using those** - as they need to be compiled against your php. If you update PHP and your modules are the same, they may brake your PHP. Better use pearl / pecl and install modules with it! | + | many modules for PHP are offered in the Distrubution. I **would not recommend using those** |
- | And again don' | + | Better |
- | and see [[https:// | + | For me, i needed: php8-pear, php8-pecl, php8-devel (for command phpize) |
+ | Which can be found in the Repo: [[https:// | ||
- | ===== Tell Apache | + | After that, modules can be installed by e.g. "pecl install imagick" |
- | After php-fpm works, you can tell mod_fcgi to use it: | + | To make pecl/paer alter the ini automagically, use e.g. |
+ | < | ||
- | | + | pear config-set php_ini / |
+ | pecl config-set php_ini / | ||
+ | |||
+ | </ | ||
+ | |||
+ | Restart php-fpm for the changes and check the log of php-fpm (usually in / | ||
+ | |||
+ | ==== Tell Apache to use php-fpm ==== | ||
+ | |||
+ | For making Apache use php-fpm as php-server, you use the module " | ||
+ | |||
+ | Caution: this has noting to do with " | ||
+ | |||
+ | | ||
+ | |||
+ | < | ||
+ | sudo a2enmod setenvif | ||
+ | sudo a2enmod rewrite | ||
+ | sudo a2enmod proxy | ||
+ | sudo a2enmod proxy_fcgi | ||
+ | |||
+ | </ | ||
+ | |||
+ | Now, tell proxy_fcgi to use php: | ||
+ | |||
+ | * Create | ||
< | < | ||
# Don't use " | # Don't use " | ||
# This is to forward all PHP to php-fpm | # This is to forward all PHP to php-fpm | ||
- | < | + | < |
- | | + | SetHandler " |
- | </ | + | </ |
+ | DirectoryIndex index.php | ||
# Don't use " | # Don't use " | ||
# <Proxy fcgi:// | # <Proxy fcgi:// | ||
- | <Proxy fcgi:// | + | <Proxy fcgi:// |
- | #6 Hours = 21600 | + | |
- | #Make this high, as upload will stop after that amount of time | + | |
- | ProxySet connectiontimeout=30 timeout=21600 | + | |
- | </ | + | </ |
- | # If the php file doesn' | + | # If the php file doesn' |
- | # This will allow .htaccess rewrite rules to work and | + | # This will allow .htaccess rewrite rules to work and |
- | # the client will see the default 404 page of Apache | + | # the client will see the default 404 page of Apache |
- | | + | RewriteCond %{REQUEST_FILENAME} \.php$ |
- | | + | RewriteCond %{DOCUMENT_ROOT}/ |
- | | + | RewriteRule (.*) - [H=text/ |
</ | </ | ||
+ | |||
+ | ==== Start and check Apache ==== | ||
Now you can start and enable apache2 | Now you can start and enable apache2 | ||
Zeile 199: | Zeile 312: | ||
sudo systemctl start apache2 | sudo systemctl start apache2 | ||
- | sudo systemctl enable | + | sudo systemctl enable |
</ | </ | ||
- | You are done. Now its up to you to fill Apache with content. Have fun! | + | check if the modules have beend loaded: |
+ | |||
+ | < | ||
+ | apache2ctl -M | ||
+ | |||
+ | </ | ||
+ | |||
+ | This should include proxy_fcgi_module now. | ||
+ | |||
+ | ==== Create a PHP- Test- File ==== | ||
+ | |||
+ | Create the File / | ||
+ | |||
+ | < | ||
+ | <?php | ||
+ | |||
+ | // Show all information, | ||
+ | phpinfo(); | ||
+ | |||
+ | ?> | ||
+ | |||
+ | </ | ||
+ | |||
+ | Now open your Web- Browser and go to: [[http:// | ||
+ | |||
+ | This should give you the complete Info of your php-configuration. If something fails, check if the above services are started an/or the logfiles. | ||
+ | |||
+ | If you get Permission denied even if your file is world- readable and the user wwwrun can access the content, in Leap 15.4 there are strict permissions in AppArmor. So check Yast / AppArmor and Check the Protocols. You will most likely find entries that needs to be changed (affects also: executing programs with proc_open() in php). After that, Access should work. | ||
+ | |||
+ | In Production, you should not run a plain http-server, | ||
+ | |||
+ | Well: You are done. Now its up to you to fill Apache with content. Have fun! | ||
+ | |||
+ | ==== Manage Database with phpMyAdmin ==== | ||
+ | |||
+ | To manage your local Database, it would be nice to have phpMyAdmin installed first (via Package-manager). After that, copy the config.sample.inc.php to config.inc.php under / | ||
+ | |||
+ | You can finish the setup of your phpMyAdmin by visiting [[http:// | ||
+ | |||
+ | Hint: phpMyAdmin in Opensuse seems to be reduced in functionality. For example generating config.inc.php with [[http:// | ||
+ | |||
+ | ==== About security of your WEB- Page (Scripts) ==== | ||
+ | |||
+ | There are really a lot of important Documentations about security of your Webserver going in Details for each functionality. They are important - as functions should be set as tight as possible. | ||
+ | |||
+ | But there are more basic security settings that may prevent damage if the functional security is breached. So the basic security might be very important - and here especially the file permissions. One big security-hole that is very common misunderstand at permissions is this one: | ||
+ | |||
+ | **If you make a file ONLY readable for the user of the webserver (400) and make that user own that file, you may expect this user to not be able to write to that file. THIS IS WRONG !** | ||
+ | |||
+ | Instead, in Linux/Unix the user owning a file can ALWAYs change its permissions. So the user will be able to make it writeable again and write to that file. The ONLY way to prevent the webservers- user form writing to files is not to make this user own that file. So you should make your file owned by root and use groups for controlling the access. | ||
+ | |||
+ | If you need more detailled file permissions, | ||
+ | |||
+ | ===== Installing Eclipse ===== | ||
+ | |||
+ | Get Eclipse with PDT here: [[https:// | ||
+ | |||
+ | You may download the file, extract the contents (e.g. to ~/eclipse) and run the installer there in userspace (no superuser is required). | ||
+ | |||
+ | ===== Filling Content to your Server ===== | ||
+ | |||
+ | This is a demo to install some small Software to your Server. I will use the github- Project [[https:// | ||
+ | |||
+ | ==== Install git-web ==== | ||
+ | |||
+ | This is a nice tool, to view your git-repositorys. Install it, and create a directory named /srv/git and make it writeable to users. Restart your webserver. | ||
+ | |||
+ | You should already be able to go to [[http:// | ||
+ | |||
+ | ==== Download some Project ==== | ||
+ | |||
+ | To get the git-project, | ||
+ | |||
+ | You should already be set to open the project in eclipse. If you rightclick on the Project, you can add Composer-support to automate the installation of composer-modules while setup of ep3. | ||
+ | |||
+ | Than create the Apache configuration to point to that directory: | ||
+ | < | ||
+ | |||
+ | Alias /ep3 "/ | ||
+ | < | ||
+ | require local | ||
+ | Options FollowSymLinks | ||
+ | AllowOverride All | ||
+ | DirectoryIndex index.php | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | After that, follow the instructions in [[https:// | ||
+ | |||
+ | As Database you can create a new user (e.g. named ep3) with corresponid database and fill the configuration to fit. | ||
+ | |||
+ | ==== Using Eclipse to work on that Project ==== | ||
+ | |||
+ | In Eclipse now add a project and use GIT smart import from that directory location - it should configure git and eclipse + php the right way and you should be ready to go programming! | ||
+ | |||
+ | ==== Setup Debugging of PHP ==== | ||
+ | |||
+ | To setup Debugging of code, install xdebug for php via pecl: | ||
+ | < | ||
+ | |||
+ | pecl install xdebug | ||
+ | |||
+ | </ | ||
+ | |||
+ | Now, also add | ||
+ | |||
+ | < | ||
+ | xdebug.mode=debug | ||
+ | |||
+ | </ | ||
+ | |||
+ | Now restart php-fpm and check the php_info() if xdebug is enabled and if Step debugging is active. Otherwise check logs. | ||
+ | |||
+ | Adjusting timeouts in apache fcgi: Add Timeouts to / | ||
+ | |||
+ | < | ||
+ | ... | ||
+ | | ||
+ | | ||
+ | ... | ||
+ | |||
+ | </ | ||
+ | |||
+ | And of course restart apache2. | ||
+ | |||
+ | ==== Setup of Eclipse ==== | ||
+ | |||
+ | You need to add the PHP- Environement and the Debugger in Eclipse. | ||
+ | |||
+ | {{.: | ||
+ | |||
+ | and | ||
+ | |||
+ | {{.: | ||
+ | |||
+ | Mind to use the Port phpinfo tells you. Thats it start debugging with e.g. index.php of the project: | ||
+ | |||
+ | {{.: | ||
+ | |||
+ | That should fire up the Browser, connect php in debugging to eclipse and break at the first line. | ||
+ | |||
+ | You can walk through the code with F5 (dive into), F6 (step over) or just let the work go on with F8. | ||
+ | |||
+ | You are done setting up webserver, php-fpm, mariadb and eclipse plus your new git- repository. hafe fun! | ||