installing mysql 5.1 alongside mysql 5.5 Announcing the arrival of Valued Associate #679:...

How would a mousetrap for use in space work?

How often does castling occur in grandmaster games?

Was this incident in Captain America:Civil war officially confirmed to be a consequence of Spider-Man’s Spidey sense?

How do living politicians protect their readily obtainable signatures from misuse?

Would it be easier to apply for a UK visa if there is a host family to sponsor for you in going there?

What is the difference between globalisation and imperialism?

Can anything be seen from the center of the Boötes void? How dark would it be?

Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode

AppleTVs create a chatty alternate WiFi network

Did any compiler fully use 80-bit floating point?

Is there a kind of relay that only consumes power when switching?

Proof of work - 51% attack

What does Turing mean by this statement?

"Lost his faith in humanity in the trenches of Verdun" — last line of an SF story

Interpretation of R output from Cohen's Kappa

What is this round thing on the pantry door in The Shining

One-one communication

Can a new player join a group only when a new campaign starts?

Trademark violation for app?

How does the secondary effect of the Heat Metal spell interact with a creature resistant/immune to fire damage?

How to play a character with a disability or mental disorder without being offensive?

Amount of permutations on an NxNxN Rubik's Cube

Antipodal Land Area Calculation

How to run automated tests after each commit?



installing mysql 5.1 alongside mysql 5.5



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Installing default MySQL Tables in Windows (mysql_install_db)Ubuntu Multiple MySQL instances and ApparmorAssertion failure from InnoDB while restoring using InnobackupexChanging the mysql.proc table directly after upgradeproblem installing mytop , need a up to date tools for monitoring mysqlcrossplatform mysql_install_db script in mysql 5.5.34 on WindowsHow to resolve “Error log file size is increasing in mysql 5.5” issue w/o restarting mysqlHow to restore MySQL database from FilesMySQL5.7 (Windows) how to install from zip file without the Data Directory?MySQL 5.5.58 Installing Multiple Instances on RHEL7





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















mysql 5.5 is installed. I need 5.1 to install an old website so it can be updated. The installer refuses to let me install onto the disk with 5.5. I don't have any other disks. I downloaded the package file DMG. Help? Can I get around this with a different kind of source file?










share|improve this question





























    0















    mysql 5.5 is installed. I need 5.1 to install an old website so it can be updated. The installer refuses to let me install onto the disk with 5.5. I don't have any other disks. I downloaded the package file DMG. Help? Can I get around this with a different kind of source file?










    share|improve this question

























      0












      0








      0








      mysql 5.5 is installed. I need 5.1 to install an old website so it can be updated. The installer refuses to let me install onto the disk with 5.5. I don't have any other disks. I downloaded the package file DMG. Help? Can I get around this with a different kind of source file?










      share|improve this question














      mysql 5.5 is installed. I need 5.1 to install an old website so it can be updated. The installer refuses to let me install onto the disk with 5.5. I don't have any other disks. I downloaded the package file DMG. Help? Can I get around this with a different kind of source file?







      mysql-5.5 mysql-5.1 installation mac-os-x






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 16 '14 at 0:05









      cctcct

      32




      32






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I'm no expert on Mac OS X, but on Linux, it's relatively easy to have more than one install running side by side.



          I follow a procedure very much based on the one here.



          Download the source code. Gunzip and untar it. As a sister directory to the unzipped and untarred one, create a directory (I call it "sandbox"). From within sandbox, run "cmake ../", then "make" and then "make package". Then I copy the package up a level, gunzip and untar it and run the ./scripts/mysql_install_db --defaults-file=.



          It's the --defaults-file (i.e. my.cnf) that's critical. In there you override the normal defaults - otherwise multiple MySQLs on the same machine will just overwrite each other's settings. I've appended a sample of my own file below. I just put all the extra stuff into the --basedir directory and that normally works a treat.
          Things like the socket, pid-file and, of course, the port need to be changed.



          You may be able to just run the binary install script with the --defaults-file and get your system up and running without having to compile, but as I said, I'm not that familiar with OS X.



          [EDIT]



          Forgot to mention that you have to kick off the daemon with --defaults-file (my.cnf) also.



          From your base-dir issue the command



          ./bin/mysqld --defaults-file=<full_path_to_my.cnf>



          ============== sample --defaults-file =====================



          pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$ more my.cnf 
          [mysqld]
          #
          # * Basic Settings
          #
          user = pol
          pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.pid
          socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
          port = 3306
          basedir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64
          datadir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/data
          tmpdir = /tmp
          pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
          lc-messages-dir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share
          lc-messages = en_US

          general_log = on
          general_log_file= /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/logfile.txt

          log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
          log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log

          slow_query_log_file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/slow_query.log
          slow_query_log = 0

          explicit-defaults-for-timestamp = TRUE

          #language = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share/english

          # bind-address = 0.0.0.0 - may not need c.f. host...

          [client]
          port = 3306
          socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.sock
          host = 127.0.0.1
          # or maybe localhost... cf. bind-address above...

          # added from http://dev.mysql.com/doc/refman/5.6/en/load-data-local.html
          # to allow for abrowse to load data!
          #loose-local-infile = 1

          local-infile = 1

          [mysqld_safe]
          #user = linehanp
          #socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
          #err-log = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
          #pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
          #log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
          #log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log



          pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$





          share|improve this answer


























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "182"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f71606%2finstalling-mysql-5-1-alongside-mysql-5-5%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I'm no expert on Mac OS X, but on Linux, it's relatively easy to have more than one install running side by side.



            I follow a procedure very much based on the one here.



            Download the source code. Gunzip and untar it. As a sister directory to the unzipped and untarred one, create a directory (I call it "sandbox"). From within sandbox, run "cmake ../", then "make" and then "make package". Then I copy the package up a level, gunzip and untar it and run the ./scripts/mysql_install_db --defaults-file=.



            It's the --defaults-file (i.e. my.cnf) that's critical. In there you override the normal defaults - otherwise multiple MySQLs on the same machine will just overwrite each other's settings. I've appended a sample of my own file below. I just put all the extra stuff into the --basedir directory and that normally works a treat.
            Things like the socket, pid-file and, of course, the port need to be changed.



            You may be able to just run the binary install script with the --defaults-file and get your system up and running without having to compile, but as I said, I'm not that familiar with OS X.



            [EDIT]



            Forgot to mention that you have to kick off the daemon with --defaults-file (my.cnf) also.



            From your base-dir issue the command



            ./bin/mysqld --defaults-file=<full_path_to_my.cnf>



            ============== sample --defaults-file =====================



            pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$ more my.cnf 
            [mysqld]
            #
            # * Basic Settings
            #
            user = pol
            pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.pid
            socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
            port = 3306
            basedir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64
            datadir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/data
            tmpdir = /tmp
            pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
            lc-messages-dir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share
            lc-messages = en_US

            general_log = on
            general_log_file= /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/logfile.txt

            log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
            log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log

            slow_query_log_file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/slow_query.log
            slow_query_log = 0

            explicit-defaults-for-timestamp = TRUE

            #language = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share/english

            # bind-address = 0.0.0.0 - may not need c.f. host...

            [client]
            port = 3306
            socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.sock
            host = 127.0.0.1
            # or maybe localhost... cf. bind-address above...

            # added from http://dev.mysql.com/doc/refman/5.6/en/load-data-local.html
            # to allow for abrowse to load data!
            #loose-local-infile = 1

            local-infile = 1

            [mysqld_safe]
            #user = linehanp
            #socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
            #err-log = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
            #pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
            #log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
            #log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log



            pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$





            share|improve this answer






























              0














              I'm no expert on Mac OS X, but on Linux, it's relatively easy to have more than one install running side by side.



              I follow a procedure very much based on the one here.



              Download the source code. Gunzip and untar it. As a sister directory to the unzipped and untarred one, create a directory (I call it "sandbox"). From within sandbox, run "cmake ../", then "make" and then "make package". Then I copy the package up a level, gunzip and untar it and run the ./scripts/mysql_install_db --defaults-file=.



              It's the --defaults-file (i.e. my.cnf) that's critical. In there you override the normal defaults - otherwise multiple MySQLs on the same machine will just overwrite each other's settings. I've appended a sample of my own file below. I just put all the extra stuff into the --basedir directory and that normally works a treat.
              Things like the socket, pid-file and, of course, the port need to be changed.



              You may be able to just run the binary install script with the --defaults-file and get your system up and running without having to compile, but as I said, I'm not that familiar with OS X.



              [EDIT]



              Forgot to mention that you have to kick off the daemon with --defaults-file (my.cnf) also.



              From your base-dir issue the command



              ./bin/mysqld --defaults-file=<full_path_to_my.cnf>



              ============== sample --defaults-file =====================



              pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$ more my.cnf 
              [mysqld]
              #
              # * Basic Settings
              #
              user = pol
              pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.pid
              socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
              port = 3306
              basedir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64
              datadir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/data
              tmpdir = /tmp
              pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
              lc-messages-dir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share
              lc-messages = en_US

              general_log = on
              general_log_file= /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/logfile.txt

              log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
              log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log

              slow_query_log_file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/slow_query.log
              slow_query_log = 0

              explicit-defaults-for-timestamp = TRUE

              #language = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share/english

              # bind-address = 0.0.0.0 - may not need c.f. host...

              [client]
              port = 3306
              socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.sock
              host = 127.0.0.1
              # or maybe localhost... cf. bind-address above...

              # added from http://dev.mysql.com/doc/refman/5.6/en/load-data-local.html
              # to allow for abrowse to load data!
              #loose-local-infile = 1

              local-infile = 1

              [mysqld_safe]
              #user = linehanp
              #socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
              #err-log = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
              #pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
              #log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
              #log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log



              pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$





              share|improve this answer




























                0












                0








                0







                I'm no expert on Mac OS X, but on Linux, it's relatively easy to have more than one install running side by side.



                I follow a procedure very much based on the one here.



                Download the source code. Gunzip and untar it. As a sister directory to the unzipped and untarred one, create a directory (I call it "sandbox"). From within sandbox, run "cmake ../", then "make" and then "make package". Then I copy the package up a level, gunzip and untar it and run the ./scripts/mysql_install_db --defaults-file=.



                It's the --defaults-file (i.e. my.cnf) that's critical. In there you override the normal defaults - otherwise multiple MySQLs on the same machine will just overwrite each other's settings. I've appended a sample of my own file below. I just put all the extra stuff into the --basedir directory and that normally works a treat.
                Things like the socket, pid-file and, of course, the port need to be changed.



                You may be able to just run the binary install script with the --defaults-file and get your system up and running without having to compile, but as I said, I'm not that familiar with OS X.



                [EDIT]



                Forgot to mention that you have to kick off the daemon with --defaults-file (my.cnf) also.



                From your base-dir issue the command



                ./bin/mysqld --defaults-file=<full_path_to_my.cnf>



                ============== sample --defaults-file =====================



                pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$ more my.cnf 
                [mysqld]
                #
                # * Basic Settings
                #
                user = pol
                pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.pid
                socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
                port = 3306
                basedir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64
                datadir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/data
                tmpdir = /tmp
                pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
                lc-messages-dir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share
                lc-messages = en_US

                general_log = on
                general_log_file= /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/logfile.txt

                log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log

                slow_query_log_file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/slow_query.log
                slow_query_log = 0

                explicit-defaults-for-timestamp = TRUE

                #language = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share/english

                # bind-address = 0.0.0.0 - may not need c.f. host...

                [client]
                port = 3306
                socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.sock
                host = 127.0.0.1
                # or maybe localhost... cf. bind-address above...

                # added from http://dev.mysql.com/doc/refman/5.6/en/load-data-local.html
                # to allow for abrowse to load data!
                #loose-local-infile = 1

                local-infile = 1

                [mysqld_safe]
                #user = linehanp
                #socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
                #err-log = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                #pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
                #log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                #log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log



                pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$





                share|improve this answer















                I'm no expert on Mac OS X, but on Linux, it's relatively easy to have more than one install running side by side.



                I follow a procedure very much based on the one here.



                Download the source code. Gunzip and untar it. As a sister directory to the unzipped and untarred one, create a directory (I call it "sandbox"). From within sandbox, run "cmake ../", then "make" and then "make package". Then I copy the package up a level, gunzip and untar it and run the ./scripts/mysql_install_db --defaults-file=.



                It's the --defaults-file (i.e. my.cnf) that's critical. In there you override the normal defaults - otherwise multiple MySQLs on the same machine will just overwrite each other's settings. I've appended a sample of my own file below. I just put all the extra stuff into the --basedir directory and that normally works a treat.
                Things like the socket, pid-file and, of course, the port need to be changed.



                You may be able to just run the binary install script with the --defaults-file and get your system up and running without having to compile, but as I said, I'm not that familiar with OS X.



                [EDIT]



                Forgot to mention that you have to kick off the daemon with --defaults-file (my.cnf) also.



                From your base-dir issue the command



                ./bin/mysqld --defaults-file=<full_path_to_my.cnf>



                ============== sample --defaults-file =====================



                pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$ more my.cnf 
                [mysqld]
                #
                # * Basic Settings
                #
                user = pol
                pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.pid
                socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
                port = 3306
                basedir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64
                datadir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/data
                tmpdir = /tmp
                pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
                lc-messages-dir = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share
                lc-messages = en_US

                general_log = on
                general_log_file= /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/logfile.txt

                log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log

                slow_query_log_file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/slow_query.log
                slow_query_log = 0

                explicit-defaults-for-timestamp = TRUE

                #language = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/share/english

                # bind-address = 0.0.0.0 - may not need c.f. host...

                [client]
                port = 3306
                socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysqld.sock
                host = 127.0.0.1
                # or maybe localhost... cf. bind-address above...

                # added from http://dev.mysql.com/doc/refman/5.6/en/load-data-local.html
                # to allow for abrowse to load data!
                #loose-local-infile = 1

                local-infile = 1

                [mysqld_safe]
                #user = linehanp
                #socket = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.sock
                #err-log = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                #pid-file = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/mysql.pid
                #log_error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log
                #log-error = /home/pol/Downloads/mysql/src/mysql-5.6.19-linux-x86_64/error.log



                pol@pol-laptop02:~/Downloads/mysql/src/mysql-5.6.19-linux-x86_64$






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited 6 mins ago









                Stephen M

                1031




                1031










                answered Jul 16 '14 at 4:41









                VéraceVérace

                16.5k33651




                16.5k33651






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Database Administrators Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f71606%2finstalling-mysql-5-1-alongside-mysql-5-5%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    ORA-01691 (unable to extend lob segment) even though my tablespace has AUTOEXTEND onORA-01692: unable to...

                    Always On Availability groups resolving state after failover - Remote harden of transaction...

                    Circunscripción electoral de Guipúzcoa Referencias Menú de navegaciónLas claves del sistema electoral en...