Difference between revisions of "Lamp Server - Almalinux"
Jump to navigation
Jump to search
(Created page with " Category:Linux<!-- nv mcvbn --> ===== Sources: ===== <blockquote><nowiki>https://vitux.com/how-to-install-lamp-stack-on-almalinux-8/</nowiki> <nowiki>https://www...") |
|||
| Line 1: | Line 1: | ||
| − | [[Category:Linux]] | + | [[Category:Linux]] |
| + | ===== Notes:===== | ||
| + | *Make sure almalinux is updated to latest version | ||
| + | *Either disable selinux now or suffer... (you can also learn how to live with it) <br /> | ||
| + | ===1) HTTPD Installation:=== | ||
| + | <code>dnf install httpd</code> | ||
| + | ====== enable it so it will automatically start after restart and start it ====== | ||
| + | <code>systemctl enable httpd && systemctl start httpd<br /></code> | ||
| + | =====Sources:===== | ||
| + | <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.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> | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 17:55, 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
Sources:
https://vitux.com/how-to-install-lamp-stack-on-almalinux-8/
https://www.linuxcapable.com/how-to-install-mariadb-10-6-on-almalinux-8/