Friday, January 27, 2012

HOWTO MediaWiKi

How to install MediaWiKi
1. Install mediawiki

http://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Fedora_Core

How to install MySQL
1. Install MySQL
yum install mysql-server php-mysql

How to configure MySQL
1. Set the MySQL service to start on boot
[ ]# chkconfig --levels 235 mysqld on
2. Start the MySQL service
[ ]# service mysqld start
3. Log into MySQL
[ ]# mysql -u root
4. Set the root user password for all local domains
mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('your-password');
mysql> SET PASSWORD FOR 'root'@'hostname' = PASSWORD('your-password');
mysql> SET PASSWORD FOR 'root'@'127.0.0.1' = PASSWORD('your-password');
5. Drop the Any user
mysql> DROP USER ''@'localhost';
mysql> DROP USER ''@'hostname';
mysql> DROP USER ''@'%';
6. Drop the test database
mysql> DROP DATABASE test;
7. Exit MySQL
[ ]# exit

Reference:
1. Professional Wikis, Mark Choate, 2008, Wiley Publishing, Inc.
2. Wikipatterns, Stewart Mader, 2008, Wiley Publishing, Inc.

Sunday, January 15, 2012

802.1X

802.1X Port-Based Authentication