Changes

Jump to: navigation, search

OPS235 Assignment 2 OLD

64 bytes added, 10:18, 25 March 2014
no edit summary
In this assignment, you will demonstrate the skills you have learned to this point by configuring two services: a '''database server''' and a '''web server'''. You will install and use a database-backed web application, '''Wordpress''', to show that these services have been installed properly. You will also configure the '''SELinux''' security system to further enhance the security of your computer system.
'''NOTE: Do this assignment inside the fedora3 centos3 virtual machine. '''
== Installing Packages using Yum ==
== Configuring Apache ==
# Start the httpd service using the '''systemctlservice''' command.
# Ensure that the httpd service starts automatically during boot.
# Confirm that you can connect to your web server using a web browser -- both from fedora3 centos3 (you can test using '''links''') as well as from the host. You should see the Fedora Apache Test Page.# If you can't connect to it from outside the machine - perhaps your firewall is blocking access to the web server.
== Configuring MySQL ==
# Start the MySQL service (mysqld) using the '''systemctlservice''' command.# Do not ignore the messages that are printed the first time you start the service, it will print a message telling you how to set a password and take other basic steps to secure the the MySQL server. Follow those instructions to set a password, recording the detail of what you do for later use.
# Ensure that the mysqld service starts automatically during boot.
# When started for the first time, this service will print a message telling you how to set a password and take other basic steps to secure the the MySQL server. Follow those instructions to set a password, recording the detail of what you do for later use. Look for these messages in '''<code>/var/log/messages</code>'''
#* Read those messages carefully, you are setting up a production MySQL server and there shouldn't be any "test" databases or anonymous users or users without a password.
# Set your MySQL root password to your learn ID (without the @senecac.on.ca part).
# This following part is challenging so take your time and read the instructions to make sure you do it properly, we have to set up a dedicated user and database for wordpress:
## Start by looking at http://codex.wordpress.org/Installing_WordPress#Using_the_MySQL_Client where you will find instructions for the setup.
## You will need to run those commands in a fedora3 centos3 terminal.
## Your adminusername is root
## Your databasename is myblog
Wordpress (like most web applications) is not available in the Fedora repositories, it must be downloaded and installed manually.
# Download the latest .tar.gz version from wodpress.org into your fedora3 centos3 (use wget).
# Extract it into '''/var/www/html'''
# Now we need to allow Apache to modify the wordpress installation. To do this use chown -R to make the owner and group of every file and directory inside wordpress "apache".
# Check your work so far by pointing your web browser to http://fedora3centos3/wordpress/ where you will get an error starting with "There doesn't seem to be a wp-config.php file"
# Copy the wp-config-sample.php file to wp-config.php and edit the new file:
#* Change the DB_NAME, DB_USER, DB_PASSWORD to the appropriate values.
# Now go back to http://fedora3centos3/wordpress/ - you should see a Wordpress Welcome/Setup page.
#* Set the title to Your Name's Blog. For example for me it would be "Andrew Smith's Blog"
#* Set the password to your learn ID.
Open one or more terminals in f19host, SSH to fedora3 from those terminals, and have the following ready:
* The correct RPMs are installed
* Output of systemctl ischkconfig -enabled httpd.service-list mysqld* Output of systemctl ischkconfig --enabled mysqld.servicelist httpd
* MySQL output of: show databases; use mysql; select User,Password from user; use myblog; show tables;
* Output of ls -la /var/www/html/wodpress/
* Output of head -30 /var/www/html/wodpress/wp-config.php
Open a firefox with http://fedora3centos3/wordpress/
Save the page (Firefox File menu / Save Page As / HTML only) as yourusername.html and email the professor that page.

Navigation menu