Apéndice D. Portar a otros sistemas

MySQL 5.0

Apéndice D. Portar a otros sistemas

This appendix helps you port MySQL to other operating systems. Do check the list of currently supported operating systems first. See Sección 2.1.1, “Sistemas operativos que MySQL soporta”. If you have created a new port of MySQL, please let us know so that we can list it here and on our Web site (http://www.mysql.com/), recommending it to other users.

Note: If you create a new port of MySQL, you are free to copy and distribute it under the GPL license, but it does not make you a copyright holder of MySQL.

A working POSIX thread library is needed for the server. On Solaris 2.5 we use Sun PThreads (the native thread support in 2.4 and earlier versions is not good enough), on Linux we use LinuxThreads by Xavier Leroy, .

The hard part of porting to a new Unix variant without good native thread support is probably to port MIT-pthreads. See and Programming POSIX Threads (http://www.humanfactor.com/pthreads/).

Up to MySQL 4.0.2, the MySQL distribution included a patched version of Chris Provenzano's Pthreads from MIT (see the MIT Pthreads Web page at http://www.mit.edu/afs/sipb/project/pthreads/ and a programming introduction at http://www.mit.edu:8001/people/proven/IAP_2000/). These can be used for some operating systems that do not have POSIX threads. See Sección 2.8.5, “Notas sobre MIT-pthreads”.

It is also possible to use another user level thread package named FSU Pthreads (see http://moss.csc.ncsu.edu/~mueller/pthreads/). This implementation is being used for the SCO port.

See the and programs in the directory for some tests/examples of these problems.

Both the server and the client need a working C++ compiler. We use gcc on many platforms. Other compilers that are known to work are SPARCworks, Sun Forte, Irix cc, HP-UX aCC, IBM AIX xlC_r), Intel ecc/icc and Compaq cxx).

To compile only the client use ./configure --without-server.

There is currently no support for only compiling the server, nor is it likely to be added unless someone has a good reason for it.

If you want/need to change any or the configure script you also need GNU Automake and Autoconf. See Sección 2.8.3, “Instalar desde el árbol de código fuente de desarrollo”.

All steps needed to remake everything from the most basic files.

/bin/rm */.deps/*.P
/bin/rm -f config.cache
aclocal
autoheader
aclocal
automake
autoconf
./configure --with-debug=full --prefix='your installation directory'

# The makefiles generated above need GNU make 3.75 or newer.
# (called gmake below)
gmake clean all install init-db

If you run into problems with a new port, you may have to do some debugging of MySQL! See Sección D.1, “Depurar un servidor MySQL”.

Note: Before you start debugging mysqld, first get the test programs and to work. This ensures that your thread installation has even a remote chance to work!

D.1. Depurar un servidor MySQL

If you are using some functionality that is very new in MySQL, you can try to run mysqld with the (which disables all new, potentially unsafe functionality) or with which disables a lot of optimization that may cause problems. See Sección A.4.2, “Qué hacer si MySQL sigue fallando (crashing)”.

If mysqld doesn't want to start, you should verify that you don't have any files that interfere with your setup! You can check your arguments with mysqld --print-defaults and avoid using them by starting with mysqld --no-defaults ....

If mysqld starts to eat up CPU or memory or if it “hangs,” you can use mysqladmin processlist status to find out if someone is executing a query that takes a long time. It may be a good idea to run mysqladmin -i10 processlist status in some window if you are experiencing performance problems or problems when new clients can't connect.

The command mysqladmin debug dumps some information about locks in use, used memory and query usage to the MySQL log file. This may help solve some problems. This command also provides some useful information even if you haven't compiled MySQL for debugging!

If the problem is that some tables are getting slower and slower you should try to optimize the table with or myisamchk. See Capítulo 5, Administración de bases de datos. You should also check the slow queries with .

You should also read the OS-specific section in this manual for problems that may be unique to your environment. See Sección 2.12, “Notas específicas sobre sistemas operativos”.

D.1.1. Compilación de MySQL para depuración

If you have some very specific problem, you can always try to debug MySQL. To do this you must configure MySQL with the or the option. You can check whether MySQL was compiled with debugging by doing: mysqld --help. If the flag is listed with the options then you have debugging enabled. mysqladmin ver also lists the mysqld version as mysql ... --debug in this case.

If you are using gcc or egcs, the recommended configure line is:

CC=gcc CFLAGS="-O2" CXX=gcc CXXFLAGS="-O2 -felide-constructors \
   -fno-exceptions -fno-rtti" ./configure --prefix=/usr/local/mysql \
   --with-debug --with-extra-charsets=complex

This avoids problems with the library and with C++ exceptions (many compilers have problems with C++ exceptions in threaded code) and compile a MySQL version with support for all character sets.

If you suspect a memory overrun error, you can configure MySQL with , which installs a memory allocation () checker. However, running with is quite slow, so if you get performance problems you should start mysqld with the option. This disables the memory overrun checks for each call to and .

If mysqld stops crashing when you compile it with , you probably have found a compiler bug or a timing bug within MySQL. In this case, you can try to add to the and variables above and not use . If mysqld dies, you can at least attach to it with gdb or use gdb on the core file to find out what happened.

When you configure MySQL for debugging you automatically enable a lot of extra safety check functions that monitor the health of mysqld. If they find something “unexpected,” an entry is written to , which safe_mysqld directs to the error log! This also means that if you are having some unexpected problems with MySQL and are using a source distribution, the first thing you should do is to configure MySQL for debugging! (The second thing is to send mail to a MySQL mailing list and ask for help. See Sección 1.6.1.1, “Las listas de correo de MySQL”. Please use the mysqlbug script for all bug reports or questions regarding the MySQL version you are using!

In the Windows MySQL distribution, is by default compiled with support for trace files.

D.1.2. Crear ficheros de traza

If the mysqld server doesn't start or if you can cause it to crash quickly, you can try to create a trace file to find the problem.

To do this, you must have a mysqld that has been compiled with debugging support. You can check this by executing . If the version number ends with , it's compiled with support for trace files. (On Windows, the debugging server is named mysqld-debug rather than mysqld as of MySQL 4.1.)

Start the mysqld server with a trace log in on Unix or on Windows:

shell> mysqld --debug

On Windows, you should also use the flag to not start mysqld as a service. In a console window, use this command:

C:\> mysqld-debug --debug --standalone

After this, you can use the command-line tool in a second console window to reproduce the problem. You can stop the mysqld server with mysqladmin shutdown.

Note that the trace file become very big! If you want to generate a smaller trace file, you can use debugging options something like this:

mysqld --debug=d,info,error,query,general,where:O,/tmp/mysqld.trace

This only prints information with the most interesting tags to the trace file.

If you make a bug report about this, please only send the lines from the trace file to the appropriate mailing list where something seems to go wrong! If you can't locate the wrong place, you can ftp the trace file, together with a full bug report, to ftp://ftp.mysql.com/pub/mysql/upload/ so that a MySQL developer can take a look a this.

The trace file is made with the DBUG package by Fred Fish. See Sección D.3, “El paquete DBUG”.

D.1.3. Depurar mysqld con gdb

On most systems you can also start mysqld from gdb to get more information if mysqld crashes.

With some older gdb versions on Linux you must use if you want to be able to debug mysqld threads. In this case, you can only have one thread active at a time. We recommend you to upgrade to gdb 5.1 ASAP as thread debugging works much better with this version!

NTPL threads (the new thread library on Linux) may cause problems while running mysqld under gdb. Some symptoms are:

  • mysqld hangs during startup (before it writes ).

  • mysqld crashes during a or call.

In this case you should set the following environment variable in the shell before starting gdb:

LD_ASSUME_KERNEL=2.4.1
export LD_ASSUME_KERNEL

When running mysqld under gdb, you should disable the stack trace with to be able to catch segfaults within gdb.

In MySQL 4.0.14 and above you should use the option to mysqld. This installs an interrupt handler for (needed to stop mysqld with to set breakpoints) and disable stack tracing and core file handling.

It's very hard to debug MySQL under gdb if you do a lot of new connections the whole time as gdb doesn't free the memory for old threads. You can avoid this problem by starting mysqld with . In most cases just using helps a lot!

If you want to get a core dump on Linux if mysqld dies with a SIGSEGV signal, you can start mysqld with the option. This core file can be used to make a backtrace that may help you find out why mysqld died:

shell> gdb mysqld core
gdb>   backtrace full
gdb>   exit

See Sección A.4.2, “Qué hacer si MySQL sigue fallando (crashing)”.

If you are using gdb 4.17.x or above on Linux, you should install a file, with the following information, in your current directory:

set print sevenbit off
handle SIGUSR1 nostop noprint
handle SIGUSR2 nostop noprint
handle SIGWAITING nostop noprint
handle SIGLWP nostop noprint
handle SIGPIPE nostop
handle SIGALRM nostop
handle SIGHUP nostop
handle SIGTERM nostop noprint

If you have problems debugging threads with gdb, you should download gdb 5.x and try this instead. The new gdb version has very improved thread handling!

Here is an example how to debug mysqld:

shell> gdb /usr/local/libexec/mysqld
gdb> run
...
backtrace full # Do this when mysqld crashes

Include the above output in a mail generated with mysqlbug and mail this to the general MySQL mailing list. See Sección 1.6.1.1, “Las listas de correo de MySQL”.

If mysqld hangs you can try to use some system tools like or to examine where mysqld has hung.

strace /tmp/log libexec/mysqld

If you are using the Perl interface, you can turn on debugging information by using the method or by setting the environment variable.

D.1.4. Usar stack trace

On some operating systems, the error log contains a stack trace if mysqld dies unexpectedly. You can use this to find out where (and maybe why) mysqld died. See Sección 5.10.1, “El registro de errroes (Error Log)”. To get a stack trace, you must not compile mysqld with the option to gcc. See Sección D.1.1, “Compilación de MySQL para depuración”.

If the error file contains something like the following:

mysqld got signal 11;
The manual section 'Debugging a MySQL server' tells you how to use a
stack trace and/or the core file to produce a readable backtrace that may
help in finding out why mysqld died
Attempting backtrace. You can use the following information to find out
where mysqld died.  If you see no messages after this, something went
terribly wrong...
stack range sanity check, ok, backtrace follows
0x40077552
0x81281a0
0x8128f47
0x8127be0
0x8127995
0x8104947
0x80ff28f
0x810131b
0x80ee4bc
0x80c3c91
0x80c6b43
0x80c1fd9
0x80c1686

you can find where mysqld died by doing the following:

  1. Copy the preceding numbers to a file, for example .

  2. Make a symbol file for the mysqld server:

    nm -n libexec/mysqld > /tmp/mysqld.sym
    

    Note that most MySQL binary distributions (except for the "debug" packages, where this information is included inside of the binaries themselves) ship with the above file, named . In this case, you can simply unpack it by doing:

    gunzip < bin/mysqld.sym.gz > /tmp/mysqld.sym
    
  3. Execute .

    This prints out where mysqld died. If this doesn't help you find out why mysqld died, you should make a bug report and include the output from the above command with the bug report.

    Note however that in most cases it does not help us to just have a stack trace to find the reason for the problem. To be able to locate the bug or provide a workaround, we would in most cases need to know the query that killed mysqld and preferable a test case so that we can repeat the problem! See Sección 1.6.1.3, “Cómo informar de bugs y problemas”.

D.1.5. El uso de registros (logs) para encontrar la causa de errores de mysqld

Note that before starting mysqld with you should check all your tables with myisamchk. See Capítulo 5, Administración de bases de datos.

If mysqld dies or hangs, you should start mysqld with . When mysqld dies again, you can examine the end of the log file for the query that killed mysqld.

If you are using without a file name, the log is stored in the database directory as .log In most cases it is the last query in the log file that killed mysqld, but if possible you should verify this by restarting mysqld and executing the found query from the mysql command-line tools. If this works, you should also test all complicated queries that didn't complete.

You can also try the command on all statements that takes a long time to ensure that mysqld is using indexes properly. See Sección 7.2.1, “Sintaxis de (Obtener información acerca de un )”.

You can find the queries that take a long time to execute by starting mysqld with . See Sección 5.10.4, “El registro de consultas lentas (Slow Query Log)”.

If you find the text in the error log file (normally named ) you probably have found a query that causes mysqld to fail. If this happens, you should check all your tables with myisamchk (see Capítulo 5, Administración de bases de datos), and test the queries in the MySQL log files to see if one doesn't work. If you find such a query, try first upgrading to the newest MySQL version. If this doesn't help and you can't find anything in the mail archive, you should report the bug to a MySQL mailing list. The mailing lists are described at http://lists.mysql.com/, which also has links to online list archives.

If you have started mysqld with , MySQL automatically checks and tries to repair tables if they are marked as 'not closed properly' or 'crashed'. If this happens, MySQL writes an entry in the file which is followed by if the table needs to be repaired. If you get a lot of these errors, without mysqld having died unexpectedly just before, then something is wrong and needs to be investigated further. See Sección 5.3.1, “Opciones del comando mysqld.

It's not a good sign if mysqld did die unexpectedly, but in this case one shouldn't investigate the messages but instead try to find out why mysqld died.

D.1.6. Crear un caso de prueba tras haber encontrado una tabla corrupta

If you get corrupted tables or if mysqld always fails after some update commands, you can test whether this bug is reproducible by doing the following:

  • Take down the MySQL daemon (with mysqladmin shutdown).

  • Make a backup of the tables (to guard against the very unlikely case that the repair does something bad).

  • Check all tables with myisamchk -s database/*.MYI. Repair any wrong tables with myisamchk -r database/.MYI.

  • Make a second backup of the tables.

  • Remove (or move away) any old log files from the MySQL data directory if you need more space.

  • Start mysqld with . See Sección 5.10.3, “El registro binario (Binary Log)”. If you want to find a query that crashes mysqld, you should use .

  • When you have gotten a crashed table, stop the .

  • Restore the backup.

  • Restart the mysqld server without

  • Re-execute the commands with mysqlbinlog update-log-file | mysql. The update log is saved in the MySQL database directory with the name .

  • If the tables are corrupted again or you can get mysqld to die with the above command, you have found reproducible bug that should be easy to fix! FTP the tables and the binary log to ftp://ftp.mysql.com/pub/mysql/upload/ and enter it into our bugs system at http://bugs.mysql.com/. If you are a support customer, you can use the MySQL Customer Support Center https://support.mysql.com/ to alert the MySQL team about the problem and have it fixed as soon as possible.

You can also use the script to just execute some of the update statements if you want to narrow down the problem.