Tuesday, January 19, 2016

First MoodleMoot India
First MoodleMoot India will be a single day event which brings all talented and diverse Indian Moodlers together from all over the country and abroad, and are involved with the Moodle project to collaborate and learn Moodle.
The theme of the first ever Indian MoodleMoot will be "Advancing Together" because "If everyone is moving forward together, then success takes care of itself."

For more details please check  https://mootin.moodlemoot.org/

Tuesday, December 17, 2013

വിക്കിസംഗമോത്സവം - 2013

വിക്കിസംഗമോത്സവം - 2013 | wikisangamolsavam 2013
മലയാളം വിക്കി സമൂഹത്തിന്റെ വാർഷിക സംഗമം
വിക്കിസംഗമോത്സവം 2013
ഡിസംബർ 21, 22 തീയ്യതികളിൽ ആലപ്പുഴയിൽ വെച്ച് നടക്കുന്നു.
മലയാളം വിക്കിമീഡിയയുടെ രണ്ടാമത്തെ സംഗമോത്സവമാണു് ഈ വർഷം നടക്കുന്നത്
പ്രിയരേ,
ഇതൊരു കൂട്ടായ്മയാണ്. മലയാളത്തെ സ്നേഹിക്കുന്ന മലയാളികളുടെ കൂട്ടായ്മ. നമുക്കും നമ്മുടെ വരും തലമുറയ്ക്ക് വേണ്ടി, കൈമാറി കിട്ടിയ വൈഞ്ജാനിക സമ്പത്തിനെ ജാതിമതവർഗരാഷ്‌ട്രീയ ഭേദമില്ലാതെ ഒരു ഒരു പ്രതലത്തിൽ ഒരുക്കിവെയ്ക്കുകയും പരിപാലിക്കുകയും ചെയ്യുന്ന വിക്കിപീഡിയ എന്ന മഹത്തായ സംരംഭത്തിന്റെ മുന്നണിപ്പോരാളികളാവാൻ താങ്കളേയും ക്ഷണിക്കുകയാണ്. സഹകരിക്കുക.
വിശദാംശങ്ങൾ കാണുക
2013 ഡിസംബർ 21, 22
വൈ.എം.സി.എ. ഹാൾ, ആലപ്പുഴ - ഗൂഗിൾ മാപ്പിൽ, ഓപൺ സ്ട്രീറ്റ്
മലയാളം വിക്കിസമൂഹം, വിക്കിസംഗമോത്സവം സംഘാടക സമിതി ആലപ്പുഴ
help@mlwiki.in , wikisangamolsavam@gmail.com
പരിപാടികൾ കാണുന്നതിനായി ഇവിടെ നോക്കുക
ഉൾപ്പെട്ടിട്ടുള്ള സമിതികൾ കാണുന്നതിനായി ഇവിടെ നോക്കുക
പതിവ് ചോദ്യങ്ങൾ
പങ്കെടുക്കുവാൻ

Wednesday, June 18, 2008

Basic Security in MySQL Server

This article discusses the basic security feature that should be implemented when a MySQL database server is installed.

When the MySQL server is installed, the passwords for the super user, viz root is set to blank. Note that the MySQL 'root' user is different from the GNU/Linux super user 'root' and eventually the passwords are also different. Of course you can work without setting a 'root' password, but it's not advisable in a production server since anyone can access the database server. The basic security setup is a three step process.

and immediately you have to change the password for the root user.

Step 1: Setting the password for root user:
You can use the mysqladmin command to change the password of a fresh MySQL server :

# mysqladmin password xxxxxxx

Alternatively you can run MySQL queries to update the password. To run the queries you can connect to MySQL database using the following command:

# mysql -u root

This will provide you with a mysql prompt(mysql>)

mysql> UPDATE user SET Password=PASSWORD('new_password') WHERE user='root';

This will set the 'root' password to new_password. The PASSWORD() function ensures that the password is encrypted.

Step 2: Removing anonymous accounts:
You should also remove all the anonymous accounts in MySQL user table, otherwise anonymous users can connect to the server without specifying the username and password. Anonymous users can't create or delete databases/tables. But they can read the system tables such as USER_PRIVILEGES, TRIGGERS, etc.. Run the following query to remove the anonymous users

mysql> DELETE FROM user WHERE User = '';

Step 3: Flush the privileges:
If you change the access privileges from the mysql prompt, don't forget to FLUSH the privileges to make the privileges effective.

mysql> FLUSH PRIVILEGES;

Remember that this shall provide only the basic security feature for the MySQL server. For advanced security topics, please refer to:

http://www.ice2o.com/secure_mysql.php
http://dev.mysql.com/doc/refman/5.0/en/user-account-management.html
http://dev.mysql.com/doc/refman/5.0/en/security.html

Tuesday, June 12, 2007

Firefox2 and SSL2

Recently I upgraded my Fedora Core 6 to Fedora 7. It has some cool features which makes it a perfect desktop. One of the notable features is the inclusion of Firefox 2.0. But when I accessed some of the old websites which uses SSL 2.0 for security, it simply denied the access. I googled and found the solution from MozillaZine.

By default, Firefox2 uses SSL 3.0 and has disabled SSL2.0 support. You cannot enable SSl2.0 from the Preferences menu, instead you have to type the following address in the location bar
about:config
Find the following Preference Name
security.ssl2.des_64
security.ssl2.des_ede3_192
security.ssl2.rc2_128
security.ssl2.rc2_40
security.ssl2.rc4_128
security.ssl2.rc4_40
Right Click on these names and toggle it so that the value becomes true.
Now you can browse your old websites with Firefox 2.0.