prudens Posted August 17, 2009 Share Posted August 17, 2009 I am on 4GB RAM, dual core AMD 4400. # # The MySQL database server configuration file. # # You can copy this to one of: # - "/etc/mysql/my.cnf" to set global options, # - "~/.my.cnf" to set user-specific options. # # One can use all long options that the program supports. # Run program with --help to get a list of available options and with # --print-defaults to see which it would actually understand and use. # # For explanations see # http://dev.mysql.com/doc/mysql/en/server-system-variables.html # This will be passed to all mysql clients # It has been reported that passwords should be enclosed with ticks/quotes # escpecially if they contain "#" chars... # Remember to edit /etc/mysql/debian.cnf when changing the socket location. [client] port = 3306 socket = /var/run/mysqld/mysqld.sock # Here is entries for some specific programs # The following values assume you have at least 32M ram # This was formally known as [safe_mysqld]. Both versions are currently parsed. [mysqld_safe] socket = /var/run/mysqld/mysqld.sock nice = 0 [mysqld] # # * Basic Settings # # # * IMPORTANT # If you make changes to these settings and your system uses apparmor, you may # also need to also adjust /etc/apparmor.d/usr.sbin.mysqld. # user = mysql pid-file = /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysqld.sock port = 3306 basedir = /usr datadir = /var/lib/mysql tmpdir = /tmp language = /usr/share/mysql/english skip-external-locking # # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. bind-address = 127.0.0.1 # # * Fine Tuning # key_buffer = 300M join_buffer = 32M join_buffer_size = 4M read_buffer_size = 8M sort_buffer_size = 8M read_rnd_buffer_size = 10M max_allowed_packet = 160M thread_stack = 128K thread_cache_size = 386 # This replaces the startup script and checks MyISAM tables if needed # the first time they are touched myisam-recover = BACKUP max_connections = 150 table_cache = 2500 thread_concurrency = 4 wait_timeout = 600 # # * Query Cache Configuration # query_cache_limit = 10M query_cache_size = 128M tmp_table_size = 1035M max_heap_table_size = 1035M # # * Logging and Replication # # Both location gets rotated by the cronjob. # Be aware that this log type is a performance killer. #log = /var/log/mysql/mysql.log # # Error logging goes to syslog. This is a Debian improvement # # Here you can see queries with especially long duration log_slow_queries = /var/log/mysql/mysql-slow.log long_query_time = 1 #log-queries-not-using-indexes # # The following can be used as easy to replay backup logs or for replication. # note: if you are setting up a replication slave, see README.Debian about # other settings you may need to change. #server-id = 1 #log_bin = /var/log/mysql/mysql-bin.log expire_logs_days = 10 max_binlog_size = 100M #binlog_do_db = include_database_name #binlog_ignore_db = include_database_name # # * BerkeleyDB # # Using BerkeleyDB is now discouraged as its support will cease in 5.1.12. skip-bdb # # * InnoDB # # InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/. # Read the manual for more InnoDB related options. There are many! # You might want to disable InnoDB to shrink the mysqld process by circa 100MB. #skip-innodb innodb_buffer_pool_size = 800M innodb_additional_mem_pool_size = 32M innodb_thread_concurrency = 4 # # * Federated # # The FEDERATED storage engine is disabled since 5.0.67 by default in the .cnf files # shipped with MySQL distributions (my-huge.cnf, my-medium.cnf, and so forth). # skip-federated # # * Security Features # # Read the manual, too, if you want chroot! # chroot = /var/lib/mysql/ # # For generating SSL certificates I recommend the OpenSSL GUI "tinyca". # # ssl-ca=/etc/mysql/cacert.pem # ssl-cert=/etc/mysql/server-cert.pem # ssl-key=/etc/mysql/server-key.pem [mysqldump] quick quote-names max_allowed_packet = 16M [mysql] #no-auto-rehash # faster start of mysql but no tab completition [myisamchk] key_buffer=64M sort_buffer=64M read_buffer=16M write_buffer=16M # # * NDB Cluster # # See /usr/share/doc/mysql-server-*/README.Debian for more information. # # The following configuration is read by the NDB Data Nodes (ndbd processes) # not from the NDB Management Nodes (ndb_mgmd processes). # # [MYSQL_CLUSTER] # ndb-connectstring=127.0.0.1 # # * IMPORTANT: Additional settings that can override those from this file! # The files must end with '.cnf', otherwise they'll be ignored. # !includedir /etc/mysql/conf.d/ -------- General Statistics -------------------------------------------------- [--] Skipped version check for MySQLTuner script [OK] Currently running supported MySQL version 5.0.75-0ubuntu10.2-log [!!] Switch to 64-bit OS - MySQL cannot currently use all of your RAM -------- Storage Engine Statistics ------------------------------------------- [--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster [--] Data in MyISAM tables: 8M (Tables: 158) [--] Data in InnoDB tables: 26M (Tables: 31) [!!] Total fragmented tables: 7 -------- Performance Metrics ------------------------------------------------- [--] Up for: 9h 11m 8s (1M q [37.617 qps], 7K conn, TX: 1B, RX: 149M) [--] Reads / Writes: 10% / 90% [--] Total buffers: 2.2G global + 30.1M per thread (150 max threads) [!!] Allocating > 2GB RAM on 32-bit systems can cause system instability [!!] Maximum possible memory usage: 6.7G (189% of installed RAM) [OK] Slow queries: 0% (8/1M) [OK] Highest usage of available connections: 6% (9/150) [OK] Key buffer size / total MyISAM indexes: 300.0M/16.0M [OK] Key buffer hit rate: 99.3% (384K cached / 2K reads) [OK] Query cache efficiency: 32.4% (58K cached / 180K selects) [OK] Query cache prunes per day: 0 [OK] Sorts requiring temporary tables: 0% (0 temp sorts / 20K sorts) [!!] Temporary tables created on disk: 37% (7K on disk / 19K total) [OK] Thread cache hit rate: 99% (9 created / 7K connections) [OK] Table cache hit rate: 50% (390 open / 771 opened) [OK] Open file limit used: 9% (501/5K) [OK] Table locks acquired immediately: 99% (1M immediate / 1M locks) [OK] InnoDB data size / buffer pool: 26.7M/800.0M -------- Recommendations ----------------------------------------------------- General recommendations: Run OPTIMIZE TABLE to defragment tables for better performance MySQL started within last 24 hours - recommendations may be inaccurate Temporary table size is already large - reduce result set size Reduce your SELECT DISTINCT queries without LIMIT clauses What should I do? Link to comment https://forums.phpfreaks.com/topic/170689-mycnf-4gb/ Share on other sites More sharing options...
gassaz Posted August 18, 2009 Share Posted August 18, 2009 to do?? Link to comment https://forums.phpfreaks.com/topic/170689-mycnf-4gb/#findComment-900981 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.