Apache tutorials & documentation
How to install phpMyAdmin on Debian 5
-
Install phpMyAdmin
apt-get -y install phpmyadmin
-
Select the apache2 web server to be automatically configured to run phpMyAdmin.
-
Restart the Apache Server
/etc/init.d/apache2 restart
How to test phpMyAdmin on Debian 5
-
Visit http://localhost/phpmyadmin in your local web browser.
Note: You should see the phpMyAdmin login page.
How to install Apache on Debian 5
-
Install Apache Sever
apt-get -y install apache2
How to configure Apache Server on Debian 5
-
Enable mod_rewrite:
a2enmod rewrite
-
Enable mod_ssl:
a2enmod ssl
-
Restart apache:
/etc/init.d/apache2 restart
How to test Apache on Fedora 13
-
Visit localhost in your web browser
How to configure mod_rewrite on Fedora 13
- Open the Apache configuration file
gedit /etc/httpd/conf/httpd.conf
- Change AllowOveride None to AllowOveride All inside the DocumentRoot Directory Directive, normally <Directory "/var/www/html">
- Save and close the file
- Restart the Apache service
How to install mod_ssl on Fedora 13
- Run the mod_ssl install command
yum install mod_ssl
How to configure mod_ssl on Fedora 13
- Open the mod_ssl Apache configuration file
gedit /etc/httpd/conf.d/ssl.conf
- Enable name-based virtual hosting on port 443
- Add the following text just before the SSL Virtual Host Context comment
# Use name-base virtual hosting
How to install phpMyAdmin on Fedora 13
- Install phpMyAdmin
yum install phpmyadmin
- Restart the Apache Server
service httpd restart
How to test phpMyAdmin on Fedora 13
- Visit http://localhost/phpmyadmin in your local web browser
How to install Apache on Fedora 13
- Install Apache Sever
yum install httpd
How to configure Apache Server on Fedora 13
- Set the apache service to start on boot
chkconfig --levels 235 httpd on
- Enable name-based virtual hosting on port 80
- Open the httpd configuration file for editing
How to install and configure LAMP on Fedora 13
- Linux