Main Menu

friends

Banner

Latest articles

How to run a command in the background or after you exit from a shell prompt
10/03/2010 | mad mad mod

Solution 1: use "nohup" example:[root@blackmod ~]# nohup sleep 1234 &
nohup: ignoring input and appending output to `nohup.out'
[1] 2800
[root@blackmod ~]# exit
logout
 logon again and check the  [ ... ]


find world writable files
09/01/2010 | mad mad mod

No file on a server should have o+w permissions (at least I can't think of a reason).The command to find all world writable files on system is: # find / -perm -0002  -type f -print
This command will [ ... ]


Other Articles

Designed by:
SiteGround web hosting Joomla Templates
convert mysql table from MyISAM to InnoDB E-mail
sysadmin

MyISAM is the default storage engine for MySQL. Unfortunately it doesn't support transactions or foreign keys (but it has some other nice features like compression). However, because InnoDB does support transactions and foreign keys you might want to change your tables from MyISAM to InnoDB storage-Engine

If you are not sure which storage engine you should use you should also have a look at this great site: http://www.mysqlperformanceblog.com/2009/01/12/should-you-move-from-myisam-to-innodb/ 

 

Step 1: check your my.cnf configfile

 

change this line

 

skip-innodb

 

to

 

 

# skip-innodb

 

now restart mysql:

 

# /etc/init.d/mysql restart

the location of the mysql start script depends on your Linux distribution and  mysql implementation.

 

 

Step 2: convert the table to InnodB

 

start the MySQL command-line interface, switch to your database and alter the table you want to convert:

 

mysql> ALTER table mytable ENGINE=Innodb;

 

 

 

Comments (0)
Write comment
Your Contact Details:
Comment:
[b] [i] [u] [url] [quote] [code] [img]   
:D:angry::angry-red::evil::idea::love::x:no-comments::ooo::pirate::?::(
:sleep::););)):0
Security
Please input the anti-spam code that you can read in the image.

!joomlacomment 4.0 Copyright (C) 2009 Compojoom.com . All rights reserved."

 
mad mad mod, Powered by Joomla! and designed by SiteGround web hosting