adject file descriptors
On Unix, each TCP/IP connection uses a file descriptor, so you must increase the total number of descriptors available to the operating system, and also increase the maximum number of descriptors each process is allowed to use. All Unix style operating systems have a “ulimit” shell command (sh and bash) which can allow more open file descriptors to commands started in that shell, once the appropriate kernel tweak has been made. We recommend “ulimit -n 8192”. Here are our recommended kernel tweaks:
Linux: “echo 65536 > /proc/sys/fs/file-max” changes the number of system-wide file descriptors
FreeBSD: append to /etc/sysctl (or you can use sysctl -w to add these)
kern.maxfiles=65536
kern.maxfilesperproc=32768
Solaris: add the following to /etc/system and reboot:
set rlim_fd_max=0x8000
set rlim_fd_cur=0x8000
Top 84 MySQL Performance Tips
You can check the same tips from here.Here is very useful tips for all mysql DBA’s,
Developers these tips are noted from MySQL Camp 2006 suggested by mysql community experts.
centos start up some service
chkconfig –level 234 httpd on
install package in Solaris 10
# pkgadd -d . SFWgcc2l
bash for Solaris 10
-bash-3.00$ cat .profile
export TERM=”vt100″
export EDITOR=”vi”
export PATH=”/usr/local/bin:/opt/sfw/bin:/usr/ucb:/bin:/sbin:/usr/bin:/usr/sbin:$PATH”
export LC_CTYPE=”en_US.ISO_8859-1″
alias h=”history 300″
umask 022