Difference between revisions of "Lamp Server - Almalinux"
Jump to navigation
Jump to search
(→Notes:) |
|||
| Line 2: | Line 2: | ||
[[Category:Linux]] | [[Category:Linux]] | ||
| − | ===== Notes | + | ===== Notes===== |
*Make sure almalinux is updated to latest version | *Make sure almalinux is updated to latest version | ||
| Line 10: | Line 10: | ||
<code>dnf install httpd</code> | <code>dnf install httpd</code> | ||
| − | ====== | + | ====== Enable it so it will automatically start after restart and start it ====== |
| − | <code>systemctl enable httpd && systemctl start httpd | + | <code>systemctl enable httpd && systemctl start httpd</code> |
| + | |||
===Sources:=== | ===Sources:=== | ||
| − | <blockquote>https://vitux.com/how-to-install-lamp-stack-on-almalinux-8/ | + | <blockquote> |
| + | * https://vitux.com/how-to-install-lamp-stack-on-almalinux-8/ | ||
| − | https://www.linuxcapable.com/how-to-install-mariadb-10-6-on-almalinux-8/ | + | * https://www.linuxcapable.com/how-to-install-mariadb-10-6-on-almalinux-8/ |
| − | https://www.digitalocean.com/community/tutorials/how-to-run-multiple-php-versions-on-one-server-using-apache-and-php-fpm-on-centos-8 | + | * https://www.digitalocean.com/community/tutorials/how-to-run-multiple-php-versions-on-one-server-using-apache-and-php-fpm-on-centos-8 |
| − | https://stackoverflow.com/questions/44558380/how-do-you-set-the-php-error-log-location-in-the-apache-configuration-file</blockquote> | + | * https://stackoverflow.com/questions/44558380/how-do-you-set-the-php-error-log-location-in-the-apache-configuration-file</blockquote> |
Revision as of 17:56, 17 April 2022
Notes
- Make sure almalinux is updated to latest version
- Either disable selinux now or suffer... (you can also learn how to live with it)
1) HTTPD Installation:
dnf install httpd
Enable it so it will automatically start after restart and start it
systemctl enable httpd && systemctl start httpd