Link to home
Start Free TrialLog in
Avatar of dimensionav
dimensionavFlag for Mexico

asked on

How to install a web server in fedora 19?

HI

I pretend to install a web server in a virtualized fedora 19 distro, with these services:

1. HTTP.
2. Email.
3. MySql.

I am new at this, so if you have some kind of wide explanation will be very useful.

Thanks in advance.
Avatar of sinfocomar
sinfocomar

Avatar of rindi
Just open Software Management, there you have a list of categories you can install. Select the Servers category, and there you have the different options, like basic webserver, from where you can select whatever you need, ie Apache etc, or Mail server, where you can select the mailserver components you want, or MariaDB, where you can select the MySQL components you need. Then just apply and whatever you have selected gets downloaded and installed.
You can use yum to install these services, turn it on and use chkconfig to enable on start up. See below for configuration guide -
Apache httpd
yum install httpd
chkconfig httpd on
service httpd start

Open in new window

Sendmail
yum install sendmail 
chkconfig sendmail on
service sendmail start

Open in new window

Mysql
yum install mysql-server
chkconfig mysqld on
chkconfig mysqld start

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of deviprasad_s
deviprasad_s
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial