Tagged Questions
The my.cnf tag has no wiki summary.
5
votes
3answers
4k views
Optimal MySQL-configuration (my.cnf)
The following is my default production MySQL configuration file (my.cnf) for a pure UTF-8 setup with InnoDB as the default storage engine.
[server]
bind-address=127.0.0.1
innodb_file_per_table
...
4
votes
2answers
2k views
MySQL: setting time_zone in my.cnf options file
In MySQL you can set a session variable called time_zone to change the timezone. This is useful e.g. when looking at timestamps from another country. Here is an example:
mysql> select now();
...
2
votes
1answer
2k views
Different settings in my.cnf are causing “max key length is 1000 bytes” error
Edit: This may be a 5.0-specific bug. (I'm on 5.0.83). Removing the innodb_log_file_size setting gets rid of the problem. Which makes complete sense. Not.
Googling about finds a handful of ...
1
vote
2answers
24 views
Mysql: modification in my.cnf doesn't take effect
I've updated the my.cnf file of my database with the following line: max_connections=200 .
I stopped and started the mysql service after that so that the changes would take effect.
But for some ...
1
vote
1answer
62 views
Making MySQL work with utf-8 in my.cnf configuration file
I'm having troubles trying to change the character sets in MySQL. I'm trying to edit the file "/etc/my.cnf" with the information taken from ...
1
vote
2answers
1k views
InnoDB tables exist in MySQL but says they do not exist after copying database to new server
I used mysqldump to export my database and then I imported it into MySQL on my other server. I can now see all my tables if I do "show tables" but I can't actually select from or describe any of them.
...
1
vote
0answers
124 views
mysqld hangs when init-file used in my.cnf
I am trying to do some stuff every time mysqld (version 5.1.4) is started/restarted on Fedora14.
I put the following line in my.cnf:
init-file=/etc/mysqlinit.sql
I've tried various queries in the ...
1
vote
1answer
432 views
What does mysql use if there is no my.cnf?
In short, what configuration values does mysql use if there is no my.cnf?
I'm running mysqld on slackware. I've been using it for a while with isam and innodb tables. I never configured a my.cnf ...
1
vote
1answer
580 views
updating max_allowed_packet
I have my application hosted on a shared server, I can't access my.cnf/my.ini file from my account, max_allowed_packet is set to 1M only, Now I need to change it to 32M, is their any idea either by ...
1
vote
2answers
112 views
Mysql -change DB,tables to utf8
In /etc/my.cnf the following has been added
character-set-server=utf8
collation-server=utf8_general_ci
But for the database and tables created before adding the above how to convert the database ...
1
vote
1answer
303 views
How to determine which my.cnf mysql is using
Is there a way I can figure out which my.cnf mysql is currently using? The reason is because it's using the correct socket file to connect, but I can't figure out exactly which (if any) my.cnf it's ...
1
vote
2answers
945 views
Run multiple mysql instances in mysql
I want to use mysql server on two different ports on same machine. I made two separate cnf files for the same. when I am trying to connect to mysql server with second port which i have added I am ...
1
vote
5answers
6k views
What's the best way to allow MySQL on one server to listen to requests from two other different servers?
I have my MySQL database server on Server 1. I want to have my Rails apps on two other servers - say A and B to be able to connect to this Server 1. What's the best way to do this?
In the my.cnf file ...
0
votes
0answers
15 views
MySql config Optimization for Wordpress Images site
I have almost every day problem with error "Error establishing database connection".
This is my spec:
Intel(R) Xeon(R) CPU X3353 @ 2.66GHz
Memory for crash kernel (0x0 to 0x0) notwithin permissible ...
0
votes
1answer
59 views
MAMP MySQL not recognizing my.cnf values in OSX
Trying to go UTF8 permanently and can't get MAMP's install of MySQL to recognize my.cnf values.
MAMP
Version 2.0.5 (2.0.5)
MySQL 5.5.9
my.cnf file:
[client]
default-character-set=utf8
[mysql]
...
0
votes
3answers
57 views
Mysql config optimizing - slow IO response time for 12GB RAM 2 x 2.4GHz Server
The server takes 20+ seconds (wait time/slow IO response time) to response to a HTTP request even with memcached and APC installed. I believe this has something to do with MYSQL since the site as lots ...
0
votes
0answers
38 views
Slow queries - please help me configure my.cnf file
Hello guys my queries (submit, view, edits etc) seems a bit slow. i have a:
Intel Nehalem Quad-Core
Dual Xeon 2.26GHz H/T 12GB RAM
my website is high mysql intensive can someone please help me ...
0
votes
2answers
82 views
Where can I find the file my.ini file for windows mysql server?
The same question is repeated again and again and i am another one repeating this question .
I have already set up my mysql server .
Its location is C:\Program Files\MySQL\MySQL Server 5.5
...
0
votes
1answer
57 views
Where is the my.cnf located on a Vista? [closed]
Would anyone know where I could find the my.cnf file(s) on Vista? I am using XAMPP (C:/xampp) and I tried searching within that directory, but I can't seem to find it.
0
votes
2answers
83 views
Bad MySQL performance for quite simple select
I've got a problem with perfomance of my mysql queries. I've got a very big table
create table query(
id Integer,
session Integer,
time Integer,
name Integer,
region ...
0
votes
1answer
139 views
MySQL my.cnf file - Found option without preceding group
I'm trying to connect to my DB in Ubuntu remotely but I receive error message when trying to mysql -u root -p:
Found option without preceding group in config file: /etc/mysql/my.cnf at line: 1
...
0
votes
2answers
115 views
Optimize MySQL Query, reconfigure MY.CNF?
can anyone can help me optimize this query and help me to tune my my.cnf file?
SELECT
rf_row_id,
pf_id,
pf_wordpress_url,
pf_merchant_logo,
rf_desc,
rf_manufacturer,
...
0
votes
1answer
96 views
Does MySQL included with MAMP not include a config file?
I can't seem to find the my.cnf or other config file for the MySQL that comes with MAMP. Does it not include one?
I want to use NetBeans for Java/MySQL Development and many articles on the web ...
0
votes
1answer
251 views
Standalone script reports “MySQL server has gone away”; problem with my.cnf?
I have a ruby script that requires 'mysql2' and uses query statements to mysql like
@db.query("SELECT sname,id FROM streets where region_id=#{region["id"]}")
but it reports me a error always like ...
0
votes
0answers
270 views
MYSQL my.cnf help
I'd like some help reveiwing my.cnf file to see if you may have any suggestions to improve performance.
I just upgraded my machine to 8G (was running out of memory at 4 - I want to double up ...
0
votes
2answers
596 views
changing default my.cnf path in mysql
I am having two mysql instances on same machine. The installations are on /usr/loca/mysql1 and /usr/local/mysql2.
I m having separate my.cnf files located in /etc/mysql1 and /etc/mysql2. I installed ...
0
votes
1answer
264 views
mysql my.cnf for a 50gb of RAM server
I am having load problems on my database server (dual quad core 50 gb ram)
load average: 4.26, 6.78, 11.25
here is the current my.cnf, can i optimize it?
[client]
port = 3306
socket ...
0
votes
1answer
234 views
MySQL query stuck in a queue become a bottleneck
Recently, sometimes I cannot open my site.
I'm using VPS for hosting.
and when I do mytop
it shows me:
User Host/IP DB Time Cmd Query or State ...
0
votes
1answer
28 views
Do I need the text “_size” in the my.cnf file for mysql 5.1?
This is a pretty simple question about setting parameters in the my.cnf file for mysql 5.1.
This page gives me the parameters I can tune:
...