Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: note re early vs late db password setting

...

Code Block
languagebash
 yum -y install mysql mysql-server

 chkconfig --levels 235 mysqld on

 service mysqld start

When the mysqld service starts you will likely see a reminder about setting a database root password; if you do it immediately make sure that you note down the password for later. Alternatively you can leave the database without password until you configure Open-Audit.

Install Apache

Code Block
languagebash
 yum -y install httpd

 chkconfig --levels 235 httpd on

 service httpd start

...