1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
|
<?xml version="1.0" ?>
<!DOCTYPE gui_description SYSTEM "mysqladmin_startup_variables_description.dtd">
<gui_description>
<page position="1">
<caption>General Parameters</caption>
<description>This page contains general parameters for the MySQL server.</description>
<group position="2">
<caption>Networking</caption>
<checkbox position="2" id="skip-networking">
<caption>Disable networking</caption>
<default_value>Unchecked</default_value>
<description>Don't allow connections via TCP/IP.</description>
</checkbox>
<spinedit position="3" id="port">
<caption>TCP Port:</caption>
<default_value version="4.0">3306</default_value>
<description>Port number to use for connections.</description>
</spinedit>
<checkbox position="3" id="enable-named-pipe">
<caption>Enable named pipes</caption>
<default_value>Unchecked</default_value>
<description>Allow connections via named pipes (Windows NT+ only). Note: you can specify a pipe name on the advanced network page, if required.</description>
</checkbox>
</group>
<group position="3">
<caption>Directories</caption>
<textedit position="1" id="basedir" type="directory">
<caption>Base directory:</caption>
<description>Path to installation directory. All paths are usually resolved relative to this.</description>
</textedit>
<textedit position="2" id="datadir" type="directory">
<caption>Data directory:</caption>
<description>Path to the database root</description>
</textedit>
<textedit position="3" id="tmpdir" type="directory">
<caption>Temp directory:</caption>
<default_value></default_value>
<description>Path to the temporary directory.</description>
</textedit>
</group>
<group position="4">
<caption>Memory usage</caption>
<spinedit position="1" id="key_buffer_size">
<caption>Key buffer:</caption>
<default_value>8192k</default_value>
<description>The size of the buffer used for index blocks. Increase this to get better index handling (for all reads and multiple writes) to as much as you can afford; 64M on a 256M machine that mainly runs MySQL is quite common.</description>
<alt_name>key_buffer</alt_name>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="2" id="sort_buffer_size">
<caption>Sort buffer size</caption>
<default_value>2M</default_value>
<description>Each thread that needs to do a sort allocates a buffer of this size.</description>
<alt_name>sort_buffer</alt_name>
<unitcontrolbox type="k;M" />
</spinedit>
</group>
<group position="5">
<caption>General</caption>
<dropdownbox position="1" id="default-table-type" version_start="4.0" version_end="4.0">
<caption>Default table type:</caption>
<default_value>myisam</default_value>
<description>If no specific storage engine/table type is defined in an SQL-Create statement the default type will be used.</description>
<items>
<item>MyIsam=myisam</item>
<item>InnoDB=innodb</item>
<item>BDB=bdb</item>
<item>Heap=heap</item>
<item>Isam=isam</item>
</items>
</dropdownbox>
<dropdownbox position="1" id="default-storage-engine" version_start="4.1">
<caption>Default storage engine:</caption>
<default_value>myisam</default_value>
<description>If no specific storage engine/table type is defined in an SQL-Create statement the default type will be used.</description>
<alt_name>default-table-type</alt_name>
<items>
<item>MyIsam=myisam</item>
<item>InnoDB=innodb</item>
<item>Falcon=falcon</item>
<item>BDB=bdb</item>
<item>Heap=heap</item>
</items>
</dropdownbox>
</group>
</page>
<page position="2">
<caption>MyISAM Parameters</caption>
<description>Edit MyISAM specific parameters on this page.</description>
<group position="1">
<caption>General</caption>
<checkbox position="1" id="concurrent-insert" is_boolean="yes">
<caption>Use concurrent inserts</caption>
<default_value>Checked</default_value>
<description>Use concurrent insert with MyISAM.</description>
</checkbox>
<checkbox position="2" id="skip-locking" is_boolean="yes" version_end="4.1">
<caption>Disable external locking</caption>
<default_value>Unchecked</default_value>
<description>Do not use system (external) locking. With locking enabled you can run myisamchk to test (not repair) tables while the MySQL server is running.</description>
</checkbox>
<checkbox position="2" id="external-locking" is_boolean="yes" version_start="4.1">
<caption>Use external locking</caption>
<default_value>Unchecked</default_value>
<description>Use system (external) locking. With this option enabled you can run myisamchk to test (not repair) tables while the MySQL server is running.</description>
</checkbox>
</group>
<group position="2">
<caption>Fulltext search</caption>
<spinedit position="1" id="ft_min_word_len">
<caption>Minimum word length:</caption>
<default_value>4</default_value>
<description>The minimum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable.</description>
</spinedit>
<spinedit position="2" id="ft_max_word_len">
<caption>Maximum word length:</caption>
<default_value>84</default_value>
<description>The maximum length of the word to be included in a FULLTEXT index. Note: FULLTEXT indexes must be rebuilt after changing this variable.</description>
</spinedit>
<spinedit position="3" id="ft_query_expansion_limit">
<caption>Query expansion limit:</caption>
<default_value>4</default_value>
<description>Number of best matches to use for query expansion.</description>
</spinedit>
<textedit position="4" id="ft_stopword_file" type="file">
<caption>Stopword file:</caption>
<default_value></default_value>
<description>Use stopwords from this file instead of built-in list.</description>
</textedit>
</group>
<group position="4">
<caption>Advanced Settings</caption>
<spinedit position="1" id="myisam_block_size">
<caption>Block size:</caption>
<default_value>1024</default_value>
<description>Block size to be used for MyISAM index pages.</description>
</spinedit>
<spinedit position="2" id="myisam_max_extra_sort_file_size">
<caption>Extra sort file size:</caption>
<default_value>256M</default_value>
<description>Used to help MySQL to decide when to use the slow but safe key cache index create method.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="3" id="myisam_max_sort_file_size">
<caption>Max sort file size:</caption>
<default_value>2047M</default_value>
<description>Don't use the fast sort index method to created index if the temporary file would get bigger than this.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="4" id="myisam_repair_threads">
<caption>Number of repair threads:</caption>
<default_value>1</default_value>
<description>Number of threads to use when repairing MyISAM tables.The value of 1 disables parallel repair.</description>
</spinedit>
<spinedit position="5" id="myisam_sort_buffer_size">
<caption>MyIsam Sort buffer size:</caption>
<default_value>8192k</default_value>
<description>The buffer that is allocated when sorting the index when doing a REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE.</description>
<unitcontrolbox type="k;M" />
</spinedit>
</group>
</page>
<page position="3">
<caption>InnoDB Parameters</caption>
<description>All relevant InnoDB Parameters.</description>
<group position="1">
<caption>Activate InnoDB</caption>
<checkbox position="1" id="innodb" is_boolean="yes">
<caption>Activate InnoDB</caption>
<default_value>Checked</default_value>
<description>Enable this option only if you would like to use InnoDB tables.</description>
</checkbox>
</group>
<group position="2">
<caption>Memory</caption>
<spinedit position="1" id="innodb_buffer_pool_size">
<caption>Buffer Pool Size:</caption>
<default_value>16M</default_value>
<description>The bigger you set this the less disk I/O is needed to access data in tables. On a dedicated database server you may set this parameter up to 80% of the machine physical memory size. Do not set it too large, though, because competition of the physical memory may cause paging in the operating system.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="2" id="innodb_additional_mem_pool_size">
<caption>Add. mem Pool Size:</caption>
<default_value>2M</default_value>
<description>Size of a memory pool InnoDB uses to store data dictionary information and other internal data structures. A sensible value for this might be 2M, but the more tables you have in your application the more you will need to allocate here. If InnoDB runs out of memory in this pool, it will start to allocate memory from the operating system, and write warning messages to the MySQL error log.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="4" id="innodb_buffer_pool_awe_mem_mb">
<caption>AWE mem Pool Size:</caption>
<default_value>0</default_value>
<description>You can allocate the InnoDB buffer pool into the AWE physical memory using this parameter.</description>
</spinedit>
</group>
<group position="3">
<caption>Datafiles</caption>
<textedit position="1" id="innodb_data_file_path" type="innodbfilepath">
<caption>Data File Path:</caption>
<default_value>ibdata1:10M:autoextend</default_value>
<description>Paths to individual datafiles and their sizes.</description>
</textedit>
<checkbox position="2" id="innodb_file_per_table" version_start="4.1.1">
<caption>One File per Table</caption>
<default_value>Unchecked</default_value>
<description>This option makes InnoDB to store each created table into its own .ibd file.</description>
</checkbox>
<textedit position="3" id="innodb_data_home_dir" type="directory">
<caption>Data directory:</caption>
<default_value platform="linux"></default_value>
<default_value platform="windows"></default_value>
<description>The common part of the directory path for all InnoDB datafiles. Leave this empty if you want to split the data files onto different drives.</description>
</textedit>
</group>
<group position="4">
<caption>Logfiles</caption>
<textedit position="1" id="innodb_log_group_home_dir" type="directory">
<caption>Log Group Dir:</caption>
<default_value platform="linux">data</default_value>
<default_value platform="windows">$windows_program_dir$MySQL\data</default_value>
<description>Directory path to InnoDB log files.</description>
</textedit>
<spinedit position="2" id="innodb_log_files_in_group">
<caption>Log Files in Group:</caption>
<default_value>2</default_value>
<description>Number of log files in the log group. InnoDB writes to the files in a circular fashion. Value 2 is recommended here. The default is 2.</description>
</spinedit>
<spinedit position="3" id="innodb_mirrored_log_groups">
<caption>Mirrored Log Groups:</caption>
<default_value>1</default_value>
<description>Number of identical copies of log groups we keep for the database. Currently this should be set to 1.</description>
</spinedit>
<spinedit position="4" id="innodb_log_file_size">
<caption>Log File Size:</caption>
<default_value>5M</default_value>
<description>Size of each log file in a log group in megabytes. Sensible values range from 1M to 1/n-th of the size of the buffer pool specified below, where n is the number of log files in the group. The larger the value, the less checkpoint flush activity is needed in the buffer pool, saving disk I/O. But larger log files also mean that recovery will be slower in case of a crash. The combined size of log files must be less than 4 GB on 32-bit computers. The default is 5M.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="5" id="innodb_log_buffer_size">
<caption>Log Buffer Size:</caption>
<default_value>2M</default_value>
<description>The size of the buffer which InnoDB uses to write log to the log files on disk. Sensible values range from 1M to 8M. A big log buffer allows large transactions to run without a need to write the log to disk until the transaction commit. Thus, if you have big transactions, making the log buffer big will save disk I/O.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<dropdownbox position="6" id="innodb_flush_log_at_trx_commit">
<caption>Flush Log at:</caption>
<default_value version="4.0">0</default_value>
<default_value version="4.0.13">1</default_value>
<description>Specifies when log files are flushed to disk.</description>
<items>
<item>Write to Log and flush every second=0</item>
<item>Transaction commit flushes logs=1</item>
<item>Write Log at commit, flush every second=2</item>
</items>
</dropdownbox>
<dropdownbox position="7" id="innodb_flush_method">
<caption>Flush Method:</caption>
<default_value>fdatasync</default_value>
<description>Method used for flushing the log files to disk.</description>
<items>
<item>fdatasync (safe, recommended)=fdatasync</item>
<item>O_DSYNC (faster, but relies on OS/drv/hdw)=O_DSYNC</item>
<item>nosync (not for production systems)=nosync</item>
</items>
</dropdownbox>
<dropdownbox position="8" id="innodb_log_archive">
<caption>Log archive</caption>
<default_value>0</default_value>
<description>This value should currently be disabled.</description>
<items>
<item>InnoDB log archive disabled=0</item>
<item>InnoDB log archive enabled=1</item>
</items>
</dropdownbox>
<textedit position="9" id="innodb_log_arch_dir" type="directory">
<caption>Log Archive Dir:</caption>
<default_value platform="linux">data</default_value>
<default_value platform="windows">$windows_program_dir$MySQL\data</default_value>
<description>Directory path where log archives should be stored.</description>
</textedit>
</group>
<group position="5">
<caption>Various</caption>
<spinedit position="1" id="innodb_lock_wait_timeout">
<caption>Lock Wait Timeout:</caption>
<default_value>2</default_value>
<description>Timeout in seconds InnoDB transaction may wait for a lock before being rolled back. InnoDB automatically detects transaction deadlocks in its own lock table and rolls back the transaction. If you use the LOCK TABLES command, or other transaction-safe storage engines than InnoDB in the same transaction, then a deadlock may arise which InnoDB cannot notice. In cases like this the timeout is useful to resolve the situation.</description>
</spinedit>
<spinedit position="2" id="innodb_open_files" version_start="4.1.1">
<caption>Open Files:</caption>
<default_value>300</default_value>
<description>This is relevant only if you use multiple tablespaces in InnoDB. This specifies the maximum how many .ibd files InnoDB can keep open at one time. The minimum value for this is 10. The default is 300.</description>
</spinedit>
<spinedit position="3" id="innodb_file_io_threads">
<caption>File IO Threads:</caption>
<default_value>4</default_value>
<description>Number of file I/O threads in InnoDB. Normally, this should be 4, but on Windows disk I/O may benefit from a larger number.</description>
</spinedit>
<spinedit position="4" id="innodb_thread_concurrency">
<caption>Thread concurrency</caption>
<default_value>8</default_value>
<description>Helps in performance tuning in heavily concurrent environments.</description>
</spinedit>
<spinedit position="5" id="innodb_force_recovery">
<caption>Force recovery</caption>
<default_value>0</default_value>
<description>Helps to save your data in case the disk image of the database becomes corrupt.</description>
</spinedit>
<checkbox position="6" id="innodb_fast_shutdown" is_boolean="yes">
<caption>Fast shutdown</caption>
<default_value>Checked</default_value>
<description>Speeds up server shutdown process.</description>
</checkbox>
<spinedit position="7" id="innodb_max_dirty_pages_pct">
<caption>Max Dirty Pages</caption>
<default_value>90</default_value>
<description>Percentage of dirty pages allowed in bufferpool</description>
</spinedit>
</group>
</page>
<page position="4">
<caption>Performance</caption>
<description>You can configure performance and caching related options here.</description>
<group position="1">
<caption>Query cache</caption>
<spinedit position="1" id="query_cache_limit">
<caption>Query cache limit</caption>
<default_value>1M</default_value>
<description>Don't cache results that are bigger than this.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="2" id="query_cache_min_res_unit" version_start="4.1.0">
<caption>Minimal size of result unit</caption>
<default_value>4096k</default_value>
<description>minimal size of unit in wich space for results is allocated (last unit will be trimed after writing all result data</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="3" id="query_cache_size">
<caption>Cache Size</caption>
<default_value>0</default_value>
<description>The memory allocated to store results from old queries.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<dropdownbox position="4" id="query_cache_type">
<caption>Cache type</caption>
<default_value>1</default_value>
<description>Query cache type to use.</description>
<items>
<item>Don't cache or retrieve results=0</item>
<item>Cache all queries except SELECT SQL_NO_CACHE=1</item>
<item>Cache only SELECT SQL_CACHE queries=2</item>
</items>
</dropdownbox>
</group>
</page>
<page position="5">
<caption>Log files</caption>
<description>You can configure all log files options here.</description>
<group position="1">
<caption>Activate Logging</caption>
<textedit position="2" id="log-bin" type="file">
<caption>Binary Logfile Name:</caption>
<default_value></default_value>
<description>Enter a name for the binary log. Otherwise a default name will be used.</description>
</textedit>
<textedit position="4" id="log" type="file">
<caption>Query Logfile Name:</caption>
<default_value></default_value>
<description>Enter a name for the query log file. Otherwise a default name will be used.</description>
</textedit>
<textedit position="6" id="log-error" type="file">
<caption>Error Logfile Name:</caption>
<default_value></default_value>
<description>Enter a name for the error log file. Otherwise a default name will be used.</description>
</textedit>
<textedit position="8" id="log-slow-queries" type="file">
<caption>Slow Queries Log:</caption>
<default_value></default_value>
<description>Enter a name for the slow query log. Otherwise a default name will be used.</description>
</textedit>
<textedit position="10" id="log-update" type="file">
<caption>Update Logfile Name:</caption>
<default_value></default_value>
<description>Enter a name for the update log file. Otherwise a default name will be used.</description>
</textedit>
<textedit position="12" id="log-isam" type="file">
<caption>Isam Logfile Name:</caption>
<default_value></default_value>
<description>Enter a name for the isam logfile. Otherwise a default name will be used.</description>
</textedit>
</group>
<group position="2">
<caption>Binlog Options</caption>
<textedit type="memo" position="1" id="binlog-do-db">
<caption>Log updates for these databases only</caption>
<description>Tells the master it should log updates for the specified database, and exclude all others not explicitly mentioned.</description>
</textedit>
<textedit type="memo" position="2" id="binlog-ignore-db">
<caption>Ignore updates for these databases</caption>
<description>Tells the master that updates to the given database should not be logged to the binary log.</description>
</textedit>
<textedit type="file" position="3" id="log-bin-index">
<caption>Filename of the index for binary logfiles</caption>
<description>File that holds the names for last binary log files.</description>
</textedit>
<spinedit position="4" id="max_binlog_size">
<caption>Maximum binary log size</caption>
<default_value>1024M</default_value>
<description>Binary log will be rotated automatically when the size exceeds this value. Will also apply to relay logs if max_relay_log_size is 0. The minimum value for this variable is 4096.</description>
<unitcontrolbox type="k;M" />
</spinedit>
</group>
<group position="3">
<caption>Slow query log options</caption>
<spinedit position="1" id="long_query_time">
<caption>Long query time</caption>
<default_value>2</default_value>
<description>Log all queries that have taken more than long_query_time seconds to execute to file.</description>
</spinedit>
</group>
<group position="4">
<caption>Advanced log options</caption>
<checkbox position="1" id="log-short-format">
<caption>Log only in short format</caption>
<default_value>Unchecked</default_value>
<description>Don't log extra information to update and slow-query logs.</description>
</checkbox>
<checkbox position="1" id="log-queries-not-using-indexes" version_start="4.1.0">
<caption>Log queries that don't use indexes</caption>
<default_value>Unchecked</default_value>
<description>Log queries that are executed without benefit of any index.</description>
</checkbox>
<checkbox position="1" id="log-warnings" is_boolean="yes">
<caption>Log warnings</caption>
<default_value>Unchecked</default_value>
<description>Log some not critical warnings to the log file.</description>
</checkbox>
<spinedit position="1" id="expire_logs_days" version_start="4.1.0">
<caption>Expire log days</caption>
<default_value>0</default_value>
<description>Logs will be rotated after expire-log-days days</description>
</spinedit>
</group>
</page>
<page position="6">
<caption>Replication</caption>
<description>All replication options</description>
<group position="1">
<caption>General</caption>
<spinedit position="1" id="server-id">
<caption>Server Id</caption>
<default_value>0</default_value>
<description>Uniquely identifies the server instance in the community of replication partners.</description>
</spinedit>
</group>
<group position="2">
<caption>Master</caption>
<checkbox position="1" id="show-slave-auth-info" is_boolean="yes">
<caption>Show Slave authentication Info</caption>
<default_value>Unchecked</default_value>
<description>If set, allows showing user and password via SHOW SLAVE HOSTS on master.</description>
</checkbox>
</group>
<group position="3">
<caption>General slave</caption>
<checkbox position="1" id="skip-slave-start" is_boolean="yes">
<caption>Do not start slave automaticaly</caption>
<default_value>Unchecked</default_value>
<description>If set, slave is not autostarted.</description>
</checkbox>
<checkbox position="2" id="slave_compressed_protocol" is_boolean="yes">
<caption>Use compression</caption>
<default_value>Unchecked</default_value>
<description>Use compression on master/slave protocol.</description>
</checkbox>
<checkbox position="3" id="log-slave-updates" is_boolean="yes">
<caption>Log slave updates</caption>
<default_value>Unchecked</default_value>
<description>Tells the slave to log the updates from the slave thread to the binary log. You will need to turn it on if you plan to daisy-chain the slaves.</description>
</checkbox>
<textedit type="directory" position="4" id="slave-load-tmpdir">
<caption>Temporary Directory</caption>
<description>The location where the slave should put its temporary files when replicating a LOAD DATA INFILE command.</description>
</textedit>
<textedit type="memo" position="5" id="slave-skip-errors">
<caption>Skip the following errors:</caption>
<description>Tells the slave thread to continue replication when a query returns an error from the provided list.</description>
</textedit>
<textedit type="memo" position="6" id="init-slave" version_start="4.1.2">
<caption>Initial commands</caption>
<description>Command(s) that are executed when a slave connects to this master</description>
</textedit>
<textedit position="7" id="init-rpl-role">
<caption>Initial replication role</caption>
<description>Set the replication role</description>
</textedit>
<spinedit position="1" id="slave_net_timeout">
<caption>Slave timeout</caption>
<default_value>3600</default_value>
<description>Number of seconds to wait for more data from a master/slave connection before aborting the read</description>
</spinedit>
</group>
<group position="4">
<caption>Slave replication objects</caption>
<textedit position="1" id="replicate-do-db">
<caption>Replicate these databases:</caption>
<description>Tells the slave thread to restrict replication to the specified database. To specify more than one database,use the directive multiple times, once for each database.Note that this will only work if you do not use cross-database queries such as UPDATE some_db.some_table SET foo='bar' while having selected a different or no database. If you need cross database updates to work, make sure you have 3.23.28 or later, and use replicate-wild-do-table=db_name.%</description>
</textedit>
<textedit position="2" id="replicate-do-table">
<caption>Replicate these tables:</caption>
<description>Tells the slave thread to restrict replication to the specified table. To specify more than one table, use the directive multiple times, once for each table. This will work for cross-database updates, in contrast to replicate-do-db.</description>
</textedit>
<textedit position="3" id="replicate-wild-do-table">
<caption>Replicate wild these tables:</caption>
<description>Tells the slave thread to restrict replication to the tables that match the specified wildcard pattern. Tospecify more than one table, use the directive multiple times, once for each table. This will work for cross-database updates. Example: replicate-wild-do-table=foo%.bar% will replicate only updates to tables in all databases that start with foo and whose table names start with bar</description>
</textedit>
<textedit position="4" id="replicate-ignore-db">
<caption>Ignore DBs:</caption>
<description>Tells the slave thread to not replicate to the specified database. To specify more than one database to ignore,use the directive multiple times, once for each database. This option will not work if you use cross databaseupdates. If you need cross database updates to work, make sure you have 3.23.28 or later, and use replicate-wild-ignore-table=db_name.%</description>
</textedit>
<textedit position="6" id="replicate-ignore-table">
<caption>Ignore tables:</caption>
<description>Tells the slave thread to not replicate to the specified table. To specify more than one table to ignore, use the directive multiple times, once for each table. This will work for cross-datbase updates, in contrast to replicate-ignore-db.</description>
</textedit>
<textedit position="7" id="replicate-wild-ignore-table">
<caption>Wild ignore tables:</caption>
<description>Tells the slave thread to not replicate to the tables that match the given wildcard pattern. To specify more than one table to ignore, use the directive multiple times, once for each table. This will work for cross-database updates. Example: replicate-wild-ignore-table=foo%.bar% will not do updates to tables in databases that start with foo and whose table names start with bar.</description>
</textedit>
<textedit position="8" id="replicate-rewrite-db">
<caption>Rewrite DB names:</caption>
<description>Updates to a database with a different name than the original. Example:replicate-rewrite-db=master_db_name->slave_db_name.</description>
</textedit>
</group>
<group position="5">
<caption>Slave Identification</caption>
<textedit position="1" id="report-host">
<caption>Report Host:</caption>
<description>Hostname or IP of the slave to be reported to to the master during slave registration. Will appear in the output of SHOW SLAVE HOSTS. Leave unset if you do not want the slave to register itself with the master. Note that it is not sufficient for the master to simply read the IP of the slave off the socket once the slave connects. Due to NAT and other routing issues, that IP may not be valid for connecting to the slave from the master or other hosts.</description>
</textedit>
<textedit position="2" id="report-user">
<caption>Report User:</caption>
<description>This username will be displayed in the output of "SHOW SLAVE HOSTS".</description>
</textedit>
<textedit position="3" id="report-password">
<caption>Report Password:</caption>
<description>This password will be displayed in the output of "SHOW SLAVE HOSTS".</description>
</textedit>
<spinedit position="4" id="report-port">
<caption>Report Port</caption>
<default_value>3306</default_value>
<description>Port for connecting to slave reported to the master during slave registration. Set it only if the slave is listening on a non-default port or if you have a special tunnel from the master or other clients to the slave. If not sure, leave this option unset.</description>
</spinedit>
</group>
<group position="6">
<caption>Relay Log</caption>
<textedit type="file" position="1" id="relay-log">
<caption>Relay log filename:</caption>
<description>The location and name to use for relay logs.</description>
</textedit>
<textedit type="file" position="2" id="relay-log-index">
<caption>Relay log index filename:</caption>
<description>The location and name to use for the file that keeps a list of the last relay logs.</description>
</textedit>
<textedit type="file" position="3" id="relay-log-info-file">
<caption>Relay log info filename:</caption>
<description>The location and name of the file that remembers where the SQL replication thread is in the relay logs.</description>
</textedit>
<checkbox position="4" id="relay_log_purge">
<caption>Purge relay logs</caption>
<default_value>Unchecked</default_value>
<description>0 = do not purge relay logs. 1 = purge them as soon as they are no more needed.</description>
</checkbox>
<spinedit position="5" id="relay_log_space_limit" version_start="4.0.14">
<caption>Maximum size for all relay logs together:</caption>
<default_value>0</default_value>
<description>Maximum space to use for all relay logs.</description>
</spinedit>
<spinedit position="6" id="max_relay_log_size" version_start="4.0.14">
<caption>Maximum relay log size</caption>
<default_value>0</default_value>
<description>If non-zero: relay log will be rotated automatically when the size exceeds this value; if zero (the default): when the size exceeds max_binlog_size. 0 expected, the minimum value for this variable is 4096.</description>
</spinedit>
</group>
<group position="6">
<caption>Slave default connection values</caption>
<textedit position="1" id="master-host">
<caption>Master hostname:</caption>
<description>Master hostname or IP address for replication. If not set, the slave thread will not be started. Note that the setting of master-host will be ignored if there exists a valid master.info file.</description>
</textedit>
<textedit position="2" id="master-user">
<caption>Master Username:</caption>
<description>The username the slave thread will use for authentication when connecting to the master. The user must have FILE privilege. If the master user is not set, user test is assumed. The value in master.info will take precedence if it can be read.</description>
</textedit>
<textedit position="3" id="master-password">
<caption>Master password:</caption>
<description>The password the slave thread will authenticate with when connecting to the master. If not set, an empty password is assumed.The value in master.info will take precedence if it can be read.</description>
</textedit>
<spinedit position="4" id="master-port">
<caption>Master port</caption>
<default_value>3306</default_value>
<description>The port the master is listening on. If not set, the compiled setting of MYSQL_PORT is assumed. If you have not tinkered with configure options, this should be 3306. The value in master.info will take precedence if it can be read.</description>
</spinedit>
<spinedit position="5" id="master-connect-retry">
<caption>Master connect retry</caption>
<default_value>60</default_value>
<description>The number of seconds the slave thread will sleep before retrying to connect to the master in case the master goes down or the connection is lost.</description>
</spinedit>
<textedit position="6" id="master-retry-count">
<caption>Master retry count</caption>
<default_value>86400</default_value>
<description>The number of tries the slave will make to connect to the master before giving up.</description>
</textedit>
<textedit type="file" position="7" id="master-info-file">
<caption>Master info file name:</caption>
<description>The location and name of the file that remembers the master and where the I/O replication thread is in the master's binlogs.</description>
</textedit>
<checkbox position="8" id="master-ssl" is_boolean="yes" version_start="4.1.1">
<caption>Master ssl</caption>
<default_value>Unchecked</default_value>
<description>Enable the slave to connect to the master using SSL.</description>
</checkbox>
<textedit type="file" position="9" id="master-ssl-key" version_start="4.1.1">
<caption>Master SSL Key:</caption>
<description>Master SSL keyfile name. Only applies if you have enabled master-ssl.</description>
</textedit>
<textedit type="file" position="10" id="master-ssl-cert" version_start="4.1.1">
<caption>Master SSL Certificate filename:</caption>
<description>Master SSL certificate file name. Only applies if you have enabled master-ssl</description>
</textedit>
<textedit type="file" position="11" id="master-ssl-ca" version_start="4.1.1">
<caption>Master SSL CA filename:</caption>
<description>Master SSL CA file. Only applies if you have enabled master-ssl.</description>
</textedit>
<textedit type="file" position="12" id="master-ssl-capath" version_start="4.1.1">
<caption>Master SSL CA-path:</caption>
<description>Master SSL CA path. Only applies if you have enabled master-ssl.</description>
</textedit>
<textedit position="13" id="master-ssl-cipher" version_start="4.1.1">
<caption>Master SSL Cipher:</caption>
<description>Master SSL cipher. Only applies if you have enabled master-ssl.</description>
</textedit>
</group>
</page>
<page position="7">
<caption>Advanced Networking</caption>
<description>All non-basic network settings</description>
<group position="1">
<caption>General</caption>
<textedit position="1" id="socket">
<caption>Socket/pipe name:</caption>
<default_value platform="linux">/tmp/mysql.sock</default_value>
<default_value platform="windows">mysql</default_value>
<description>Name of the socket file (Unix) or named pipe (Windows) to use.</description>
</textedit>
</group>
<group position="2">
<caption>Data / Memory size</caption>
<spinedit position="1" id="max_allowed_packet">
<caption>Max. packet size:</caption>
<default_value>1M</default_value>
<description>Max packetlength to send/receive from to server.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="2" id="net_buffer_length">
<caption>Net buffer length</caption>
<default_value>16</default_value>
<description>Buffer length for TCP/IP and socket communication.</description>
<unitcontrolbox type="k;M" />
</spinedit>
</group>
<group position="3">
<caption>Timeout Settings</caption>
<spinedit position="1" id="connect_timeout">
<caption>Connection timeout</caption>
<default_value>0</default_value>
<description>The number of seconds the mysqld server is waiting for a connect packet before responding with 'Bad handshake'</description>
</spinedit>
<spinedit position="2" id="interactive_timeout">
<caption>Interactive timeout</caption>
<default_value>28800</default_value>
<description>The number of seconds the server waits for activity on an interactive connection before closing it.</description>
</spinedit>
<spinedit position="3" id="net_read_timeout">
<caption>Read timeout</caption>
<default_value>30</default_value>
<description>Number of seconds to wait for more data from a connection before aborting the read</description>
</spinedit>
<spinedit position="4" id="net_write_timeout">
<caption>Write timeout</caption>
<default_value>60</default_value>
<description>Number of seconds to wait for a block to be written to a connection before aborting the writ</description>
</spinedit>
<spinedit position="5" id="wait_timeout">
<caption>Wait timeout</caption>
<default_value>28800</default_value>
<description>The number of seconds the server waits for activity on a connection before closing it</description>
</spinedit>
</group>
<group position="4">
<caption>Advanced</caption>
<spinedit position="1" id="max_connections">
<caption>Max Connections:</caption>
<default_value>100</default_value>
<description>The number of simultaneous clients allowed.</description>
</spinedit>
<spinedit position="2" id="max_user_connections">
<caption>Max Conn per User:</caption>
<default_value>0</default_value>
<description>The maximum number of active connections for a single user (0 = no limit).</description>
</spinedit>
<spinedit position="5" id="net_retry_count">
<caption>Retry count:</caption>
<default_value>10</default_value>
<description>If a read on a communication port is interrupted, retry this many times before giving up.</description>
</spinedit>
<spinedit position="6" id="max_connect_errors">
<caption>Max Conn Errors:</caption>
<default_value>10</default_value>
<description>If there is more than this number of interrupted connections from a host this host will be blocked from further connections.</description>
</spinedit>
</group>
<group position="5">
<caption>Naming</caption>
<checkbox position="1" id="skip-host-cache">
<caption>Disable caching of host-names</caption>
<default_value>Unchecked</default_value>
<description>Don't cache host names.</description>
</checkbox>
<checkbox position="2" id="skip-name-resolve">
<caption>Disable name resolving</caption>
<default_value>Unchecked</default_value>
<description>Don't resolve hostnames. All hostnames are IP's or 'localhost'.</description>
</checkbox>
</group>
</page>
<page position="8">
<caption>Security</caption>
<description>This page contains general parameters for the MySQL server.</description>
<group position="1">
<caption>Security</caption>
<checkbox position="1" id="safe-user-create" is_boolean="yes">
<caption>Safe User Create</caption>
<default_value>Unchecked</default_value>
<description>Don't allow new user creation by the user who has no write privileges to the mysql.user table.</description>
</checkbox>
<checkbox position="2" id="skip-grant-tables" is_boolean="yes">
<caption>Disable grant tables</caption>
<default_value>Unchecked</default_value>
<description>Start without grant tables. This gives all users FULL ACCESS to all tables!</description>
</checkbox>
<checkbox position="3" id="read_only" is_boolean="yes">
<caption>Make all tables read-only</caption>
<default_value>Unchecked</default_value>
<description>Make all tables read-only, with the exception of replication (slave) threads and users with the SUPER privilege.</description>
</checkbox>
<checkbox position="4" id="skip-show-database">
<caption>Deactivate show database</caption>
<default_value>Unchecked</default_value>
<description>Don't allow 'SHOW DATABASE' commands</description>
</checkbox>
<checkbox position="5" id="old-passwords" version_start="4.1.0">
<caption>Use old passwords</caption>
<default_value>Unchecked</default_value>
<description>Use old password encryption method (needed for 4.0 and older clients).</description>
</checkbox>
<checkbox position="6" id="secure-auth" version_start="4.1.1">
<caption>Secure authentication</caption>
<default_value>Unchecked</default_value>
<description>Disallow authentication for accounts that have old (pre-4.1) passwords.</description>
</checkbox>
<checkbox position="7" id="local-infile" is_boolean="yes">
<caption>Enable load data local infile</caption>
<default_value>Unchecked</default_value>
<description>Enable/disable LOAD DATA LOCAL INFILE</description>
</checkbox>
</group>
</page>
<page position="9">
<caption>Advanced</caption>
<description>You will find all advanced settings here.</description>
<group position="1">
<caption>Localization</caption>
<textedit position="1" id="language">
<caption>Language:</caption>
<description>Client error messages in given language. May be given as a full path.</description>
</textedit>
<textedit position="2" id="default-character-set">
<caption>Def. Char Set:</caption>
<description>Set the default character set.</description>
</textedit>
<textedit position="3" id="default-collation" version_start="4.1.1">
<caption>Default Collation:</caption>
<description>Set the default collation.</description>
</textedit>
<textedit position="4" id="character_sets-dir" type="directory">
<caption>Charsets directory:</caption>
<default_value></default_value>
<description>Path to the character-sets directory.</description>
</textedit>
</group>
<group position="2">
<caption>General</caption>
<checkbox position="1" id="enable-pstack" is_boolean="yes">
<caption>Print stack trace</caption>
<default_value>Unchecked</default_value>
<description>Print a symbolic stack trace on failure.</description>
</checkbox>
<checkbox position="2" id="flush">
<caption>Flush tables</caption>
<default_value>Unchecked</default_value>
<description>Flush tables to disk between SQL commands.</description>
</checkbox>
<spinedit position="3" id="flush_time">
<caption>Flush time</caption>
<default_value>0</default_value>
<description>A dedicated thread is created to flush all tables at the given interval.</description>
</spinedit>
<checkbox position="4" id="gdb">
<caption>Set up for GDB</caption>
<default_value>Unchecked</default_value>
<description>Set up signals usable for debugging</description>
</checkbox>
<checkbox position="5" id="low-priority-updates" is_boolean="yes">
<caption>Low priority updates</caption>
<default_value>Unchecked</default_value>
<description>INSERT/DELETE/UPDATE has lower priority than selects.</description>
</checkbox>
<checkbox position="6" id="memlock" is_boolean="yes">
<caption>Memory lock</caption>
<default_value>Unchecked</default_value>
<description>Lock mysqld in memory.(=Don't swap.)</description>
</checkbox>
<checkbox position="7" id="old_rpl_compat" version_start="5.0.0">
<caption>Old rpl compat</caption>
<default_value>Unchecked</default_value>
<description>Use old LOAD DATA format in the binary log (don't save data in file).</description>
</checkbox>
<checkbox position="8" id="skip-stack-trace">
<caption>Disable stack trace</caption>
<default_value>Unchecked</default_value>
<description>Don't print a stack trace on failure</description>
</checkbox>
<textedit type="file" position="9" id="default_week_format" version_start="4.0.14">
<caption>Default week format:</caption>
<description>The default week format used by WEEK() functions.</description>
</textedit>
<spinedit position="10" id="open_files_limit">
<caption>Open files limit</caption>
<default_value>0</default_value>
<description>If this is not 0, then mysqld will use this value to reserve file descriptors to use with setrlimit(). If this value is 0 then mysqld will reserve max_connections*5 or max_connections + table_cache*2 (whichever is larger) number of files.</description>
</spinedit>
<spinedit position="11" id="max_error_count" version_start="4.1.0">
<caption>Maximum error count</caption>
<default_value>64</default_value>
<description>Max number of errors/warnings to store for a statement.</description>
</spinedit>
</group>
<group position="3">
<caption>Thread specific settings</caption>
<checkbox position="1" id="skip-thread-priority">
<caption>Deactivate thread priority</caption>
<default_value>Unchecked</default_value>
<description>Don't give threads different priorities.</description>
</checkbox>
<spinedit position="2" id="thread_concurrency">
<caption>Thread concurrency</caption>
<default_value>10</default_value>
<description>Permits the application to give the threads system a hint for the desired number of threads that should be run at the same time</description>
</spinedit>
<spinedit position="3" id="thread_cache_size">
<caption>Thread cache size</caption>
<default_value>0</default_value>
<description>How many threads we should keep in a cache for reuse.</description>
</spinedit>
<spinedit position="4" id="thread_stack">
<caption>Thread stack size</caption>
<default_value>192k</default_value>
<description>The stack size for each thread.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="5" id="slow_launch_time">
<caption>Slow launch time</caption>
<default_value>2</default_value>
<description>If creating the thread takes longer than this value (in seconds), the Slow_launch_threads counter will be incremented.</description>
</spinedit>
</group>
<group position="4">
<caption>Insert delayed settings</caption>
<spinedit position="1" id="delayed_insert_timeout">
<caption>Insert delayed Timeout</caption>
<default_value>300</default_value>
<description>How long a INSERT DELAYED thread should wait for INSERT statements before terminating.</description>
</spinedit>
<spinedit position="2" id="delayed_insert_limit">
<caption>Insert delayed Limit</caption>
<default_value>100</default_value>
<description>After inserting delayed_insert_limit rows, the INSERT DELAYED handler will check if there are any SELECT statements pending. If so, it allows these to execute before continuing.</description>
</spinedit>
<spinedit position="3" id="delayed_queue_size">
<caption>Insert delayed queue size</caption>
<default_value>1k</default_value>
<description>What size queue (in rows) should be allocated for handling INSERT DELAYED. If the queue becomes full, any client that does INSERT DELAYED will wait until there is room in the queue again.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="4" id="max_delayed_threads">
<caption>Maximum Threads</caption>
<default_value>20</default_value>
<description>Don't start more than this number of threads to handle INSERT DELAYED statements. If set to zero, which means INSERT DELAYED is not used.</description>
</spinedit>
</group>
<group position="5">
<caption>Various</caption>
<spinedit position="0" id="max_join_size">
<caption>Max join size</caption>
<default_value>4095M</default_value>
<description>Joins that are probably going to read more than max_join_size records return an error</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="1" id="max_binlog_cache_size">
<caption>Maximum binlog cache size:</caption>
<default_value>4095M</default_value>
<description>Can be used to restrict the total size used to cache a multi-transaction query.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="2" id="query_alloc_block_size" version_start="4.0.16">
<caption>Query alloc block size:</caption>
<default_value>8k</default_value>
<description>Allocation block size for query parsing and execution</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="3" id="query_prealloc_size" version_start="4.0.16">
<caption>Query prealloc size</caption>
<default_value>8k</default_value>
<description>Persistent buffer for query parsing and execution</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="4" id="read_buffer_size">
<caption>Read buffer size</caption>
<default_value>128k</default_value>
<description>Each thread that does a sequential scan allocates a buffer of this size for each table it scans. If you do many sequential scans, you may want to increase this value.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="5" id="read_rnd_buffer_size">
<caption>Read rnd buffer size</caption>
<default_value>256k</default_value>
<description>When reading rows in sorted order after a sort, the rows are read through this buffer to avoid a disk seeks. If not set, then it's set to the value of record_buffer.</description>
<alt_name>record_buffer</alt_name>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="6" id="range_alloc_block_size" version_start="4.0.16">
<caption>Range alloc block size</caption>
<default_value>2k</default_value>
<description>Allocation block size for storing ranges during optimization</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="7" id="preload_buffer_size" version_start="4.1.1">
<caption>Preload buffer size</caption>
<default_value>32k</default_value>
<description>The size of the buffer that is allocated when preloading
indexes</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="9" id="table_cache">
<caption>Table cache:</caption>
<default_value>64</default_value>
<description>The number of open tables for all threads.</description>
</spinedit>
<spinedit position="10" id="tmp_table_size">
<caption>Temporary table size</caption>
<default_value>32M</default_value>
<description>If an in-memory temporary table exceeds this size, MySQL will automatically convert it to an on-disk MyISAM table.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="11" id="transaction_alloc_block_size" version_start="4.0.16">
<caption>Transaction alloc block size</caption>
<default_value>8k</default_value>
<description>Allocation block size for transactions to be stored in binary log</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="12" id="transaction_prealloc_size" version_start="4.0.16">
<caption>Transaction prealloc size</caption>
<default_value>4k</default_value>
<description>Persistent buffer for transactions to be stored in binary log</description>
<unitcontrolbox type="k;M" />
</spinedit>
<textedit position="13" id="max_write_lock_count">
<caption>Max write lock count</caption>
<default_value>4294967295</default_value>
<description>After this many write locks, allow some read locks to run in between</description>
</textedit>
<spinedit position="14" id="bulk_insert_buffer_size">
<caption>Bulk insert buffer size</caption>
<default_value>8M</default_value>
<description>Size of tree cache used in bulk insert optimisation. Note that this is a limit per thread!</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="15" id="max_heap_table_size">
<caption>Max heap table size</caption>
<default_value>16M</default_value>
<description>Don't allow creation of heap tables bigger than this.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="17" id="max_length_for_sort_data">
<caption>Max length for sort data</caption>
<default_value>1k</default_value>
<description>Max number of bytes in sorted records.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<textedit position="18" id="max_seeks_for_key" version_start="4.0.14">
<caption>Max seeks for key</caption>
<default_value>4294967295</default_value>
<description>Limit assumed max number of seeks when looking up rows based on a key</description>
</textedit>
<spinedit position="19" id="max_sort_length">
<caption>Max sort length</caption>
<default_value>1k</default_value>
<description>The number of bytes to use when sorting BLOB or TEXT values (only the first max_sort_length bytes of each value are used; the rest are ignored).</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="20" id="max_tmp_tables">
<caption>Max temporary tables:</caption>
<default_value>32</default_value>
<description>Maximum number of temporary tables a client can keep open at a time.</description>
</spinedit>
<spinedit position="21" id="join_buffer_size">
<caption>Join buffer size:</caption>
<default_value>128k</default_value>
<description>The size of the buffer that is used for full joins.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="22" id="key_cache_block_size" version_start="4.1.1">
<caption>Key cache block size</caption>
<default_value>1k</default_value>
<description>The default size of key cache blocks</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="23" id="key_cache_division_limit" version_start="4.1.1">
<caption>Key cache division limit</caption>
<default_value>100</default_value>
<description>The minimum percentage of warm blocks in key cache</description>
</spinedit>
<spinedit position="24" id="key_cache_division_age_treshold" version_start="4.1.1">
<caption>Key cache division age treshold</caption>
<default_value>300</default_value>
<description>This characterizes the number of hits a hot block has to be untouched until it is considered aged enough to be downgraded to a warm block. This specifies the percentage ratio of that number of hits to the total number of blocks in key cache</description>
</spinedit>
<spinedit position="25" id="back_log">
<caption>Back log size</caption>
<default_value>50</default_value>
<description>The number of outstanding connection requests MySQL can have. This comes into play when the main MySQL thread gets very many connection requests in a very short time.</description>
</spinedit>
<spinedit position="26" id="binlog_cache_size">
<caption>Binlog cache size</caption>
<default_value>32k</default_value>
<description>The size of the cache to hold the SQL statements for the binary log during a transaction. If you often use big, multi-statement transactions you can increase this to get more performance.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<spinedit position="27" id="group_concat_max_len" version_start="4.1.0">
<caption>Group concat max len</caption>
<default_value>1k</default_value>
<description>The maximum length of the result of function group_concat.</description>
<unitcontrolbox type="k;M" />
</spinedit>
<textedit position="28" id="delay-key-write">
<caption>Delay key write:</caption>
<description>Type of DELAY_KEY_WRITE.</description>
</textedit>
<dropdownbox position="1" id="lower_case_table_names">
<caption>Make table names case insensitive</caption>
<default_value>1</default_value>
<description>If set to 0, table and db names are stored with the lettercase specified during creation and comparisons are case sensitive. If set to 1 table names are stored in lowercase on disk and table names will be case-insensitive. If set to 2, names are stored as specified during creation but are compared case-insensitively (Only works on case-insensitive filesystems, starting from MySQL 4.1.8).</description>
<items>
<item>0- Store as Created, Case Sensitive=0</item>
<item>1- Store in Lowercase, Case Insensitive=1</item>
<item>2- Store as Created, Case Insensitive=2</item>
</items>
</dropdownbox>
<checkbox position="2" id="symbolic-links" platform="windows" is_boolean="yes">
<caption>Enable symbolic link support</caption>
<default_value>Unchecked</default_value>
<description>N/A</description>
</checkbox>
<textedit position="3" id="user">
<caption>Run as User:</caption>
<description>Run mysqld daemon as user.</description>
</textedit>
<textedit position="4" id="sql-mode">
<caption>SQL Mode:</caption>
<description>Syntax: sql-mode=option[,option[,option...]] where option can be one of: REAL_AS_FLOAT, PIPES_AS_CONCAT,ANSI_QUOTES, IGNORE_SPACE, ONLY_FULL_GROUP_BY,NO_UNSIGNED_SUBTRACTION.</description>
</textedit>
<checkbox position="5" id="temp-pool" is_boolean="yes">
<caption>Use pool for temporary files</caption>
<default_value>Unchecked</default_value>
<description>Using this option will cause most temporary files created to use a small set of names, rather than a unique name for each new file.</description>
</checkbox>
<dropdownbox position="6" id="transaction-isolation">
<caption>Default transaction isolation level:</caption>
<default_value>REPEATABLE-READ</default_value>
<description>Default transaction isolation level</description>
<items>
<item>READ-UNCOMMITTED=READ-UNCOMMITTED</item>
<item>READ-COMMITTED=READ-COMMITTED</item>
<item>REPEATABLE-READ=REPEATABLE-READ</item>
<item>SERIALIZABLE=SERIALIZABLE</item>
</items>
</dropdownbox>
<checkbox position="7" id="ansi">
<caption>Use ANSI SQL</caption>
<default_value>Unchecked</default_value>
<description>Use ANSI SQL syntax instead of MySQL syntax.</description>
</checkbox>
<checkbox position="8" id="big-tables">
<caption>Big Tables</caption>
<default_value>Unchecked</default_value>
<description>Allow big result sets by saving all temporary sets on file (Solves most 'table full' errors).</description>
</checkbox>
<textedit type="ip" position="9" id="bind-address">
<caption>Bind to IP:</caption>
<description>IP address to bind to.</description>
</textedit>
<checkbox position="10" id="core-file">
<caption>Write core file</caption>
<default_value>Unchecked</default_value>
<description>Write core on errors.</description>
</checkbox>
<textedit type="file" position="11" id="chroot">
<caption>Chroot:</caption>
<description>Chroot mysqld daemon during startup.</description>
</textedit>
<textedit position="12" id="init-connect" version_start="4.1.2">
<caption>Init connect:</caption>
<description>Command(s) that are executed for each new connection</description>
</textedit>
<checkbox position="13" id="new">
<caption>Use new routines</caption>
<default_value>Unchecked</default_value>
<description>Use very new possible 'unsafe' functions.</description>
</checkbox>
<textedit type="file" position="14" id="pid-file" platform="linux">
<caption>Pid filename:</caption>
<description>Pid file used by safe_mysqld.</description>
</textedit>
</group>
</page>
</gui_description>
|