ฉันจะค้นหาตำแหน่ง MySQL my.cnf ได้อย่างไร


398

มีคำสั่ง MySQL เพื่อค้นหาmy.cnfไฟล์การกำหนดค่าคล้ายกับที่phpinfo() ตั้งของ PHP php.iniหรือไม่


1
ในอูบุนตูคุณสามารถใช้คำสั่งlocate my.cnfเพื่อค้นหาว่าชื่อไฟล์นั้นอยู่ที่ใด
evilReiko

คำตอบ:


571

ไม่มีคำสั่ง MySQL ภายในที่จะติดตามสิ่งนี้มันเป็นนามธรรมเล็กน้อยเกินไป ไฟล์อาจอยู่ในสถานที่ 5 (หรือมากกว่า) และพวกเขาทั้งหมดจะถูกต้องเพราะพวกเขาโหลดซ้อน

  • /etc/my.cnf
  • /etc/mysql/my.cnf
  • $ MYSQL_HOME / my.cnf
  • [datadir] /my.cnf
  • ~ / .my.cnf

สิ่งเหล่านี้คือตำแหน่งเริ่มต้นที่ MySQL ตรวจสอบ หากพบมากกว่าหนึ่งรายการก็จะโหลดแต่ละค่า & แทนที่ค่าอื่น ๆ (ตามลำดับที่ระบุไว้ฉันคิดว่า) นอกจากนี้--defaults-fileพารามิเตอร์สามารถแทนที่สิ่งทั้งหมดดังนั้น ... โดยทั่วไปมันเป็นความเจ็บปวดอย่างมากในก้น

แต่ด้วยความสับสนทำให้มีโอกาสที่ดีที่จะอยู่ใน /etc/my.cnf

(หากคุณต้องการเห็นค่า: SHOW VARIABLESแต่คุณต้องได้รับการอนุญาตก่อน)


5
ให้แน่ใจว่าจะเริ่มต้นเซิร์ฟเวอร์ MySQL หลังจากแก้ไข /etc/init.d/mysqld restartmy.cnf:
Danijel

4
สำหรับผม (AWS EC2 Ubuntu) ตั้งอยู่ในmy.cnf /etc/mysql/my.cnf
SparkAndShine

58
เรียกใช้mysql --helpแล้วคุณจะเห็น Default options are read from the following files in the given order: /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
Hanxue

2
ในกรณีของฉันมีการ symlink etc/mysql/my.cnfชี้ไปที่อื่น symlink ซึ่งจุดที่จะต้อง/etc/alternatives/my.cnf etc/mysql/mysql.cnf
Martin Schneider

3
ls /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
โจชัวโรบินสัน

194

คุณสามารถ "ขอ" MySQL สำหรับรายการสถานที่ทั้งหมดที่ค้นหา my.cnf (หรือ my.ini บน Windows) มันไม่ได้เป็นแบบสอบถาม SQL ค่อนข้างดำเนินการ:

$ mysqladmin --help

หรือก่อนหน้า 5.7:

$ mysqld --help --verbose

ในบรรทัดแรกคุณจะพบข้อความพร้อมรายการตำแหน่ง my.cnf ทั้งหมดที่ค้นหา บนเครื่องของฉันมันคือ:

Default options are read from the following files in the given order:
/etc/my.cnf
/etc/mysql/my.cnf
/usr/etc/my.cnf
~/.my.cnf

หรือบน Windows:

Default options are read from the following files in the given order:
C:\Windows\my.ini
C:\Windows\my.cnf
C:\my.ini
C:\my.cnf
C:\Program Files\MySQL\MySQL Server 5.5\my.ini
C:\Program Files\MySQL\MySQL Server 5.5\my.cnf

แต่ทราบว่ามันอาจจะเป็นกรณีที่ไม่มีไฟล์ my.cnf ที่ใด ๆ ของสถานที่เหล่านี้ ดังนั้นคุณสามารถสร้างไฟล์ด้วยตัวคุณเอง - ใช้หนึ่งในตัวอย่างไฟล์การตั้งค่าที่มาพร้อมกับการกระจาย MySQL (บน Linux - ดู/usr/share/mysql/*.cnfไฟล์และใช้งานตามความเหมาะสมสำหรับคุณ - คัดลอกไปที่/etc/my.cnfแล้วปรับเปลี่ยนตามต้องการ)

นอกจากนี้โปรดทราบว่ายังมีตัวเลือกบรรทัดคำสั่ง--defaults-fileซึ่งอาจกำหนดเส้นทางแบบกำหนดเองไปยังไฟล์ my.cnf หรือ my.ini ตัวอย่างเช่นนี้เป็นกรณีสำหรับ MySQL 5.5 บน Windows - มันชี้ไปยังไฟล์ my.ini mysqld --help --verboseในไดเรกทอรีข้อมูลที่ไม่ได้อยู่ตามปกติ บน Windows - ดูคุณสมบัติของบริการเพื่อดูว่าเป็นกรณีนี้หรือไม่

สุดท้ายให้ตรวจสอบhttps://dev.mysql.com/doc/refman/8.0/en/option-files.html - อธิบายไว้ในรายละเอียดเพิ่มเติม


ดูมีแนวโน้ม แต่ใน distro ของฉัน (opencsw.org) ไม่มี mysqld มันทำงาน mysqld_safe ไม่รู้จัก "mysqld_safe --verbose --help"
Lawrence I. Siden

เมื่อฉันวิ่งฉันได้รับสิ่งนี้: Default options are read from the following files in the given order: /etc/mysql/my.cnf /etc/my.cnf ~/.my.cnf - ฉันคาดว่าไฟล์ 2 ไฟล์แรกจะเรียงกลับกัน
yitwail

ข้อมูลที่โพสต์โดยmysqld --help --verboseตรงกันข้ามสิ่งที่ระบุไว้ในdev.mysql.com/doc/refman/5.5/en/option-files.html ในประสบการณ์ "ล่าสุด ณ วันนี้" ของฉันกับรุ่น 5.6 ข้อมูลในเว็บไซต์นั้นถูกต้องและเกี่ยวข้องมากที่สุด ลำดับความสำคัญของตำแหน่งไฟล์ที่กำหนดโดยคำสั่ง help ทำให้เข้าใจผิดและจะนำไปสู่ผลลัพธ์เชิงลบ
บาริสต้ามือสมัครเล่น

ใน Fedora เก่าของฉันมันคือ mysql --help --verbose
Danny Schoemann

1
โปรดทราบว่าฉันต้องเพิ่มขนาดบัฟเฟอร์ cmd เป็น 3000 เพื่อให้สามารถเห็นบรรทัดแรกจริง ๆ มิฉะนั้นข้อความจะถูกเขียนทับ เมื่อพวกเขาพูดว่า "verbose" เห็นได้ชัดพวกเขาหมายถึงมัน
Wesley Smith

61

คุณสามารถเรียกใช้ find ใน terminal ได้เสมอ

find / -name my.cnf

1
มันเป็นวิธีที่ยาก :( มีคำสั่งใด ๆ เช่น MySQL phpinfo () เพื่อทราบตำแหน่งไฟล์ config?
robinmag

find / -name my.cnfเป็นทางออกที่ดีที่สุดของคุณ แต่คุณสามารถตรวจสอบโฮมไดเร็กตอรี่ของคุณและ /etc/mysql/my.conf คุณยังสามารถดูว่า MYSQL_HOME ของคุณถูกตั้งค่าโดยการพิมพ์echo $MYSQL_HOMEในเทอร์มินัลหรือไม่
Dyllon

11
ว้าวนั่นจะใช้เวลาตลอดไปกับเครื่องจักรส่วนใหญ่ ลินุกซ์ที่ทันสมัยส่วนใหญ่มีการค้นหาการติดตั้งและตราบใดที่มีการเรียกใช้ updatedb อย่างสม่ำเสมอคุณสามารถทำได้: ค้นหา my.cnf | น้อยลง
Dark Castle

6
นี่แสดงเฉพาะไฟล์ที่ชื่อ my.cnf มันไม่ได้บอกคุณว่าในกระบวนการ mysqld พบและเปิด
Lawrence I. Siden

3
ไม่พบ~/.my.cnf- จดจุดนำในชื่อไฟล์ การรันการค้นหาทั่วทั้งระบบไฟล์มักจะสร้างข้อผิดพลาด "การอนุญาตที่ถูกปฏิเสธ" ยกเว้นว่าคุณเป็นรูท find / -name '*my.cnf' 2>/dev/nullดังนั้นหาคำสั่งที่ควรจะเป็น
Chris Johnson

32

คุณสามารถใช้ได้ :

locate my.cnf
whereis my.cnf
find . -name my.cnf

3
เหมืองที่ยอดเยี่ยมอยู่ที่ /etc/mysql/my.cnf ใน Ubuntu 12.0.1 บน EC2
Maziyar

1
whereisจะไม่ทำงานที่นี่ มันจะค้นหาตำแหน่งที่สอดคล้องกับคำสั่งและไม่สามารถหาไฟล์โดยพลการ
Mark Amery

1
และ updatedb เพื่ออัปเดตรายการค้นหาผ่าน - หาก my.cnf ไม่ได้จัดทำดัชนี
WoodyDRN

23

สิ่งนี้อาจใช้งานได้:

strace mysql ";" 2>&1  | grep cnf

บนเครื่องของฉันผลลัพธ์นี้:

stat64("/etc/my.cnf", 0xbf9faafc)       = -1 ENOENT (No such file or directory)
stat64("/etc/mysql/my.cnf", {st_mode=S_IFREG|0644, st_size=4271, ...}) = 0
open("/etc/mysql/my.cnf", O_RDONLY|O_LARGEFILE) = 3
read(3, "# /etc/mysql/my.cnf: The global "..., 4096) = 4096
stat64("/home/xxxxx/.my.cnf", 0xbf9faafc) = -1 ENOENT (No such file or directory)

ดังนั้นดูเหมือนว่า /etc/mysql/my.cnf เป็นอันที่มันตั้งแต่ stat64 () และ read () สำเร็จ


18
mysql --help | grep /my.cnf | xargs ls

จะบอกคุณว่าmy.cnfอยู่ที่ไหนบน Mac / Linux

ls: cannot access '/etc/my.cnf': No such file or directory
ls: cannot access '~/.my.cnf': No such file or directory
 /etc/mysql/my.cnf

ในกรณีนี้มันอยู่ใน /etc/mysql/my.cnf

ls: /etc/my.cnf: No such file or directory
ls: /etc/mysql/my.cnf: No such file or directory
ls: ~/.my.cnf: No such file or directory
/usr/local/etc/my.cnf

ในกรณีนี้มันอยู่ใน /usr/local/etc/my.cnf


ทำไมนี่ไม่ใช่คำตอบ?
Nikhil Wagh

13

โดยค่าเริ่มต้น mysql ค้นหา my.cnf ก่อนที่โฟลเดอร์ / etc หากไม่มีไฟล์ /etc/my.cnf อยู่ในโฟลเดอร์นี้ฉันแนะนำให้คุณสร้างใหม่ในโฟลเดอร์นี้ตามที่ระบุไว้ในเอกสาร ( https://dev.mysql.com/doc/refman/5.6/th/option) -files.html )

นอกจากนี้คุณยังสามารถค้นหา my.cnf ที่มีอยู่โดยการติดตั้ง mysql ของคุณ คุณสามารถเปิดคำสั่งต่อไปนี้

sudo find / -name "*.cnf"

คุณสามารถใช้ไฟล์การกำหนดค่าต่อไปนี้พร้อมโต๊ะ myisam และไม่มีการสนับสนุน innodb mysql (จากการติดตั้งพอร์ตของ mysql บน mac os x ไม่ฝักใฝ่ฝ่ายใด) กรุณาตรวจสอบแต่ละคำสั่งในไฟล์การกำหนดค่านี้

# Example MySQL config file for large systems.
#
# This is for a large system with memory = 512M where the system runs mainly
# MySQL.
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password   = your_password
port        = 3306
socket      = /opt/local/var/run/mysql5/mysqld.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port        = 3306
socket      = /opt/local/var/run/mysql5/mysqld.sock
skip-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin

# binary logging format - mixed recommended
binlog_format=mixed

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id   = 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /opt/local/var/db/mysql5
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /opt/local/var/db/mysql5
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 256M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 64M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 128M
sort_buffer_size = 128M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

9

เท่าที่สังเกตจาก Konyak คุณจะได้รับรายชื่อของสถานที่ที่ MySQL จะมองหาของไฟล์โดยการเรียกใช้my.cnf mysqladmin --helpตั้งแต่นี้เป็นคำพูดที่สวยคุณสามารถไปยังส่วนที่คุณสนใจได้อย่างรวดเร็วด้วย:

$ mysqladmin --help | grep -A1 'Default options'

สิ่งนี้จะให้ผลลัพธ์คล้ายกับ:

Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf

ขึ้นอยู่กับวิธีที่คุณติดตั้ง mysql เป็นไปได้ว่ายังไม่มีไฟล์เหล่านี้ คุณสามารถกำหนดcatได้ว่าจะสร้างการกำหนดค่าและสร้างของคุณเองได้my.cnfอย่างไรหากจำเป็นในตำแหน่งที่คุณต้องการ


7

สำหรับ Ubuntu 16: /etc/mysql/mysql.conf.d/mysqld.cnf


1
หากคุณต้องการเปลี่ยนการกำหนดค่า mysql ใน Ubuntu 16.04 แก้ไขไฟล์ต่อไปนี้ For Ubuntu 16: /etc/mysql/mysql.conf.d/mysqld.cnf
Piyush Bansal

6

ฉันไม่ทราบว่าคุณติดตั้ง MySQL ในสภาพแวดล้อม Linux ของคุณ แต่คุณได้ตรวจสอบ?

  • /etc/my.cnf

5

ลองวิ่ง mysqld --help --verbose | grep my.cnf | tr " " "\n"

ผลผลิตจะเป็นสิ่งที่ชอบ

/etc/my.cnf
/etc/mysql/my.cnf
/usr/local/etc/my.cnf
~/.my.cnf

นั่นคือผลลัพธ์ที่ฉันได้รับ แต่ดูเหมือนจะไม่มีความสัมพันธ์กับอินสแตนซ์ที่กำลังทำงานอยู่ ไม่มีไฟล์เหล่านั้นอยู่
user3783243

4

หากคุณใช้ Mac ที่ใช้ Homebrew ให้ใช้

ข้อมูลชง mysql

คุณจะเห็นสิ่งที่ชอบ

$ brew info mysql
mysql: stable 5.6.13 (bottled)
http://dev.mysql.com/doc/refman/5.6/en/
Conflicts with: mariadb, mysql-cluster, percona-server
/usr/local/Cellar/mysql/5.6.13 (9381 files, 354M) *

บรรทัดสุดท้ายนั้นเป็นINSTALLERDIR เอกสาร MySQL



2

อีกทางเลือกหนึ่งคือใช้คำสั่ง whereis

เช่นที่ my.cnf


1
คุณน่าจะดีกว่าด้วย 'ค้นหา' ถ้าระบบรองรับ
drobert

2

ตอบสำหรับผู้ใช้ MySQL Workbench เท่านั้น

ป้อนคำอธิบายรูปภาพที่นี่


มีข้อผิดพลาด "ไม่ได้ระบุตำแหน่งของไฟล์กำหนดค่า MySQL (เช่น: my.cnf)"
Sukesh Kotian

2

คำแนะนำที่ดีทั้งหมดในกรณีของฉันฉันไม่พบมันในสถานที่เหล่านั้น แต่ใน/usr/share/mysqlฉันมี RHEL VM และฉันติดตั้งmysql5.5


2

คุณจะต้องตรวจสอบสถานที่ต่างๆตามรุ่นของ MySQL

mysqld --help -verbose | grep my.cnf

For Homebrew:
/usr/local/Cellar/mysql/8.0.11/bin/mysqld (mysqld 8.0.11)

Default possible locations:
/etc/my.cnf
/etc/mysql/my.cnf
~/.my.cnf

Found mine here: 
/usr/local/etc/my.cnf

2

คุณยังสามารถเรียกใช้คำสั่งนี้

mysql --help | grep cnf


!, Awsome บน windows ฉันได้ไปแทนที่grepด้วยfindstr: mysql --help | findstr cnfและมันก็มายากล
Laenka-โอเอส



0

หากคุณใช้ MAMP ให้เข้าถึงเทมเพลต> MySQL (my.cnf)> [version]

หากคุณใช้ MAMP แบบไม่มีหน้าต่างคุณอาจต้องปรับแต่งแถบเครื่องมือโดยใช้ปุ่มปรับแต่ง

เมนูเทมเพลต MAMP PRO


0

สำหรับฉันมันเป็นสิ่งที่ฉันมี "ENGINE = MyISAM" ชนิดของตารางเมื่อฉันเปลี่ยนเป็น "ENGINE = InnoDB" มันทำงาน :) ใน PhpMyAdmin บน Azure App Service :)


0

ในกรณีที่คุณอยู่ใน VPS และพยายามแก้ไข my.cnf บนเซิร์ฟเวอร์ที่ใช้งานอยู่คุณสามารถลอง:

ps aux | grep mysql

คุณจะแสดงพารามิเตอร์ที่คำสั่ง mysql กำลังรันและตำแหน่งที่--defaults-fileชี้ไป

โปรดทราบว่าเซิร์ฟเวอร์ของคุณอาจทำงานมากกว่าหนึ่งเซิร์ฟเวอร์ของ MySQL / MariaDB หากคุณเห็นบรรทัดที่ไม่มี--defaults-fileพารามิเตอร์อินสแตนซ์นั้นอาจดึงข้อมูลการกำหนดค่าจาก. cnf ที่กล่าวถึงในmysqladmin --helpขณะที่คนอื่น ๆ ได้ชี้ให้เห็น


0

โปรดทราบว่าแม้ว่า mariadDB จะโหลดรายละเอียดการกำหนดค่าจากไฟล์ my.cnf ต่างๆตามที่ระบุไว้ในคำตอบอื่น ๆ ที่นี่ แต่ก็สามารถโหลดได้จากไฟล์อื่นที่มีชื่อต่างกัน

นั่นหมายความว่าหากคุณทำการเปลี่ยนแปลงในไฟล์ my.cnf ไฟล์ใดไฟล์หนึ่งมันอาจถูกเขียนทับโดยไฟล์อื่นที่มีชื่อแตกต่างกัน ในการสร้างแท่งเปลี่ยนคุณต้องเปลี่ยนมันในไฟล์ config (โหลดล่าสุด) ที่ถูกต้อง - หรืออาจจะเปลี่ยนมันในไฟล์ทั้งหมด

ดังนั้นคุณจะค้นหาไฟล์กำหนดค่าทั้งหมดที่อาจโหลดได้อย่างไร แทนที่จะค้นหาไฟล์ my.cnf ให้ลองเรียกใช้:

grep -r datadir /etc/mysql/

นี้จะค้นหาสถานที่ทั้งหมดที่กล่าวถึง datadir ในกรณีของฉันมันสร้างคำตอบนี้:

/etc/mysql/mariadb.conf.d/50-server.cnf:datadir     = /var/lib/mysql 

เมื่อฉันแก้ไขไฟล์นั้น (/etc/mysql/mariadb.conf.d/50-server.cnf) เพื่อเปลี่ยนค่าสำหรับ datadir มันทำงานได้ในขณะที่การเปลี่ยนแปลงใน my.cnf ไม่ ดังนั้นตัวเลือกใดที่คุณต้องการเปลี่ยนแปลงลองค้นหาด้วยวิธีนี้


0

มันขึ้นอยู่กับสิทธิ์การเข้าถึงของคุณ แต่สำหรับฉันแล้วงานนี้ใช้คอนโซล phpmyadmin sql

แสดงความหลากหลาย;

หลังจากนั้นให้เปลี่ยนตัวแปรบางตัวที่คุณสามารถทำได้

SET GLOBAL max_connections = 1,000;

หรือ

SET @@ GLOBAL.max_connections = 1,000;

ลองดู

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.