LAMP:Shell Script Install LAMP: Difference between revisions
Created page with "This script will update the system, install Apache, MariaDB, PHP 8.1 and all necessary dependencies. And enable PHP module for Apache and restart both Apache and MariaDB. At the end it will run command php -v to verify the installation. Please note that PHP 8.1 is currently not available in the default Ubuntu repository, so you will have to add the PPA repository from Ondřej Surý. Also, you might have to check the version of PHP 8.1 available for your specific versio..." |
No edit summary |
||
| Line 5: | Line 5: | ||
Also, you might have to check the version of PHP 8.1 available for your specific version of Ubuntu. | Also, you might have to check the version of PHP 8.1 available for your specific version of Ubuntu. | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash" line="1"> | ||
#!/bin/bash | #!/bin/bash | ||
| Line 33: | Line 33: | ||
php -v | php -v | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Apache]] | |||
[[Category:Linux]] | |||
[[Category:Ubuntu]] | |||
[[Category:Debian]] | |||
[[Category:LAMP]] | |||