[Maria-discuss] MariaDB 5.1.42 has been released
Dear MariaDB users, MariaDB 5.1.42, a new branch of the MySQL database which includes all major open source storage engines, myriad bug fixes, and many community patches, has been released. We are very proud to have made our first final release, and we encourage you to test it out and use it on your systems. For an overview of what's new in MariaDB 5.1.42, please see: http://askmonty.org/wiki/index.php/Manual:MariaDB_5.1.42_Release_Notes For information on installing MariaDB 5.1.42 on new servers or upgrading to MariaDB 5.1.42 from previous releases, please see: http://askmonty.org/wiki/index.php/Manual:Installation MariaDB is available in source and binary form for a variety of platforms and is available from the download pages at: http://askmonty.org/wiki/index.php/MariaDB:Download:MariaDB_5.1.42 It is also our pleasure to announce that we have a partnership with Webyog to offer their tools for trial and at a discounted rate if purchased within 30 days. Find out more at: http://askmonty.org/downloads/links/webyog http://askmonty.org/wiki/index.php/MariaDB:Download#Software_Partner_Downloa... We welcome and appreciate your feedback, bug reports, bug fixes, patches, and participation on our mailing list. Find out more at: http://askmonty.org/wiki/index.php/MariaDB#How_can_I_participate_in_the_deve... Enjoy! -- Colin Charles, http://bytebot.net/blog/ "First they ignore you, then they laugh at you, then they fight you, then you win." -- Mohandas Gandhi
Hi guys, I have download it for the next DBA class next week. I am not using mysql at DBA class anymore. I am a MAC user, so, I have to download the sources and compile it. I just did the basics such as: configure --prefix=/usr/local/mariadb-5.1.42 --with-plugins=max make make install During the configure process I can read = innodb bla-bla-bla = YES, but, after mysqld starting I am getting have_innodb = NO WAY BUDDY!!! ;-) I am missing anything during configure process? Or do I have to include some line at my my.cnf? Thanks, Alex Em 18/02/2010, às 02:31, Colin Charles escreveu:
Dear MariaDB users,
MariaDB 5.1.42, a new branch of the MySQL database which includes all major open source storage engines, myriad bug fixes, and many community patches, has been released. We are very proud to have made our first final release, and we encourage you to test it out and use it on your systems.
For an overview of what's new in MariaDB 5.1.42, please see: http://askmonty.org/wiki/index.php/ Manual:MariaDB_5.1.42_Release_Notes
For information on installing MariaDB 5.1.42 on new servers or upgrading to MariaDB 5.1.42 from previous releases, please see: http://askmonty.org/wiki/index.php/Manual:Installation
MariaDB is available in source and binary form for a variety of platforms and is available from the download pages at: http://askmonty.org/wiki/index.php/MariaDB:Download:MariaDB_5.1.42
It is also our pleasure to announce that we have a partnership with Webyog to offer their tools for trial and at a discounted rate if purchased within 30 days. Find out more at: http://askmonty.org/downloads/links/webyog http://askmonty.org/wiki/index.php/MariaDB:Download#Software_Partner_Downloa...
We welcome and appreciate your feedback, bug reports, bug fixes, patches, and participation on our mailing list. Find out more at: http://askmonty.org/wiki/index.php/MariaDB#How_can_I_participate_in_the_deve...
Enjoy!
-- Colin Charles, http://bytebot.net/blog/ "First they ignore you, then they laugh at you, then they fight you, then you win." -- Mohandas Gandhi
_______________________________________________ Mailing list: https://launchpad.net/~maria-discuss Post to : maria-discuss@lists.launchpad.net Unsubscribe : https://launchpad.net/~maria-discuss More help : https://help.launchpad.net/ListHelp
Hola, On 18.02.2010, at 13:18, Alexandre Almeida wrote:
Hi guys,
I have download it for the next DBA class next week. I am not using mysql at DBA class anymore.
I am a MAC user, so, I have to download the sources and compile it.
I just did the basics such as:
configure --prefix=/usr/local/mariadb-5.1.42 --with-plugins=max make make install
During the configure process I can read = innodb bla-bla-bla = YES, but, after mysqld starting I am getting have_innodb = NO WAY BUDDY!!! ;-)
I am missing anything during configure process? Or do I have to include some line at my my.cnf?
What does "show engines" tell you? I just compiled 5.1.42 as you described and I get: | InnoDB | YES | Supports transactions, row-level locking, and foreign keys You can also try: mysql> CREATE TABLE t1 (a int) Engine Innodb; Query OK, 0 rows affected (0.05 sec) mysql> show create table t1\G *************************** 1. row *************************** Table: t1 Create Table: CREATE TABLE `t1` ( `a` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec) Best, Hakan -- Hakan Küçükyılmaz, QA/Benchmark Engineer, Stuttgart/Germany Monty Program Ab, http://askmonty.org/ Skype: hakank_ Phone: +49 171 1919839
Hi guys, SHOW ENGINES doesn't show innoDB. The interesting thing is: I simply compiled it again and it's running quite well. Which parameters do you recommend for best performance at mac os machines? Thanks, Alex Em 18/02/2010, às 14:04, Hakan Kuecuekyilmaz escreveu:
Hola,
On 18.02.2010, at 13:18, Alexandre Almeida wrote:
Hi guys,
I have download it for the next DBA class next week. I am not using mysql at DBA class anymore.
I am a MAC user, so, I have to download the sources and compile it.
I just did the basics such as:
configure --prefix=/usr/local/mariadb-5.1.42 --with-plugins=max make make install
During the configure process I can read = innodb bla-bla-bla = YES, but, after mysqld starting I am getting have_innodb = NO WAY BUDDY!!! ;-)
I am missing anything during configure process? Or do I have to include some line at my my.cnf?
What does "show engines" tell you? I just compiled 5.1.42 as you described and I get:
| InnoDB | YES | Supports transactions, row-level locking, and foreign keys
You can also try: mysql> CREATE TABLE t1 (a int) Engine Innodb; Query OK, 0 rows affected (0.05 sec)
mysql> show create table t1\G *************************** 1. row *************************** Table: t1 Create Table: CREATE TABLE `t1` ( `a` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 1 row in set (0.00 sec)
Best,
Hakan
-- Hakan Küçükyılmaz, QA/Benchmark Engineer, Stuttgart/Germany Monty Program Ab, http://askmonty.org/ Skype: hakank_ Phone: +49 171 1919839
On 18.02.2010, at 18:46, Alexandre Almeida wrote:
Hi guys,
SHOW ENGINES doesn't show innoDB. The interesting thing is: I simply compiled it again and it's running quite well.
Which parameters do you recommend for best performance at mac os machines?
There are no Mac specific optimization parameters that I know of. Just set innodb_buffer_pool_size up to 50 - 80% of your RAM, but beware that setting it too high will lead to severe performance drop. -- Hakan Küçükyılmaz, QA/Benchmark Engineer, Stuttgart/Germany Monty Program Ab, http://askmonty.org/ Skype: hakank_ Phone: +49 171 1919839
participants (3)
-
Alexandre Almeida
-
Colin Charles
-
Hakan Kuecuekyilmaz