Good to see someone really knows how to install Apache. Most tutorial video always choose sudo apt ... But they don't know the best practice is always manually because it works on Linux distro. I have a request can you make a video how to install nghttp2 and enable with apache for http v2 manually?
@GptGlobal-ts9ry7 ай бұрын
Hi, I have completed a very nice video installation. What I want to ask is that when we install with yum install, the etc/httpd folder is not created in manual installation. so what action do we need to take. I need to define my ssl certificate by adding a new .config file via keystore.
@ioscoding13 ай бұрын
yes! you are correct about /etc/httpd folder not being created. Purpose of manually installing httpd ( into a different directory, other than default /etc/httpd) is to ensure that system updates (through yum or by other means) do not overwrite any customization for our server installation. This also applies to HTTP Server itself i.e. if a new version is released you will have to manually update your installation because yum package manager does not know it. To answer your question, all you need to make sure that "mod_ssl" is installed and enabled. Then use its parameters to define the path of the certificate. No matter wherever you place the certificates, as long as httpd conf file knows where to locate it, it will be loaded in. Adding a new config file is also an option,but make sure that you include that file into main configuration file, so httpd engine knows about your additional configuration files. In your new file, suggestion mentioned above about SSL still applies. READ: httpd.apache.org/docs/current/mod/mod_ssl.html
@santhoshsandy2604 Жыл бұрын
This is the best video, i found for apache installation. please doo more videos ..
@diegosantiagogutierrez43775 ай бұрын
Totally a incredible video, thanks for sharing
@banavathtarun4909 Жыл бұрын
Hi @iOSCoding It was a great Tutorial. I followed all the steps and see the page loading with text "It works!" after entering my IP in Google, but when I run the command httpd -V I am getting this error "-bash: httpd: command not found". Is it because the symlink is not created? Please help me on this
@ioscoding18 ай бұрын
Hi. Thank you for your comment. Command not found may mean you are trying to execute the command from a different directory instead of bin directory given within the Apache Home. You may add this Apache’s bin into your Path variable, directly or via /etc/profile or ~/.bashrc
@mujtabarehman55107 ай бұрын
Hi @iOSCoding does this package include php module in it?
@ioscoding17 ай бұрын
Hi. You may verify the modules available in httpd.conf file,and in the module directory . If not there,check php module installation documentation.
@rulebraker786 Жыл бұрын
Thanks Its very nice and very well explained Video. Can you please make one video on HAProxy installation and configuration?
@devp8651 Жыл бұрын
very good.......very well explained............do you have more videos?
@DivyaKumar-dj6ko23 күн бұрын
Hi , I have to upgrade in my env from Apache Httpd 2.4.57 to 2.4.57SP2 package so I required execution steps can you please provide
@ioscoding122 күн бұрын
are these compiled packages or distro installed? I would suggest checking out the official doc for compatibility purposes.
@mjc.5965 Жыл бұрын
Muchas gracias, muy bien explicado.
@neilparreno122316 күн бұрын
I installed apache on oracle linux 9 this way. I also want to setup php and mariadb with this setup can you help me?
@ioscoding114 күн бұрын
Is there any specific use case you want to install your own LAMP stack? LAMP and MAMP softwares are already available if you just want to do the testing.
@GauravSingh-vw7fd4 ай бұрын
thanks for sharing
@avinashyepuri29 күн бұрын
Iam following this step to install apache I am getting one error like fatal error How to resolve this pls explain
@ioscoding122 күн бұрын
would you be able to share the logs about error? where exactly is the error coming up at?
@RamanRaman-jn9bs Жыл бұрын
Fantastic
@142_mayankgajbhiye96 ай бұрын
Im unable to use systemctl command after following your installation process, everything is running fine no errors, then why cant i use systemctl command with it
@grimjr71756 ай бұрын
That command should be a preinstalled bash command with most if not all linux systems. Check with apt or apt-get and double check the command itself is available for you.
@ioscoding13 ай бұрын
You won't be able to use the systemctl command to start or stop the httpd until you create a service unit fiile. This is required because Apache is installed manually, however, if you had used the package manager, yum package takes care of the unit file creation itself.
@yusifya-adzagey636516 күн бұрын
@@ioscoding1 Any Guide to create the Service Unit?
@avinashsuroshi1864 Жыл бұрын
Can you help me to upgrade apache 2.4.54 to 2.4.57 using source code in oracle Linux 8.4
@ioscoding18 ай бұрын
Hi. Upgrading from source code may require some additional work as if your enterprise is using custom modules, you will have to ,first, check the compatibility matrix, then compile all the required modules in the same way. Best practice would be to compile one module at a time (follow module instructions for any prerequisite) and spin the instance to make sure nothing is broken. Use the sandbox.