.. _installfedora: ================ Baruwa on Fedora ================ Baruwa rpm install ================== Download the rpm from `topdog-software.com `_, Now proceed and install the rpm:: # yum --nogpgcheck localinstall baruwa-.noarch.rpm Create the database:: # mysql -p < /usr/share/doc/baruwa-$(rpm --qf %{VERSION} -q baruwa)/baruwa-create.sql Create the database user:: mysql> GRANT ALL ON baruwa.* TO baruwa@localhost IDENTIFIED BY ''; mysql> flush privileges; Create the baruwa admin user:: # mysql baruwa -u baruwa -p Enter password: ****** mysql> INSERT INTO users (username,password,fullname,type) mysql> VALUES ('',md5(''),'','A'); Configure MailScanner ===================== :ref:`Configure ` MailScanner if you have not already done so. Configure Baruwa ================ Edit /usr/lib/python2.6/site-packages/baruwa/settings.py and set the mysql database details:: DATABASE_ENGINE = 'mysql' DATABASE_NAME = 'baruwa' DATABASE_USER = 'baruwa' DATABASE_PASSWORD = '' DATABASE_HOST = 'localhost' If your MailScanner config file is not located in the standard location (/etc/MailScanner/MailScanner.conf) then edit the baruwa_settings.py file which is in the same directory as the settings.py file and set:: MS_CONFIG = '/etc/MailScanner/MailScanner.conf' **Setup Web server** Edit your apache configurations to enable virtual hosting if not enabled already. Then set the correct hostname in /etc/httpd/conf.d/baruwa.conf:: # change to your hostname ServerName baruwa-alpha.local Make sure mod_wsgi is enabled, uncomment the following line in /etc/httpd/conf.d/wsgi.conf:: LoadModule wsgi_module modules/mod_wsgi.so Restart apache and point your browser to the hostname url.