Thread: PGSQL Newbie
Good morning all! I'm a newbie to PGSQL here so thought I would ask my first question since I joined this list this morning... Is it possible to run Postgresql and MySQL together on the same machine? -- Robert Wolfe, Linux and Network Admin net261.com | http://www.net261.com:85 robert@net261.com
> Good morning all! I'm a newbie to PGSQL here so thought I would ask my > first question since I joined this list this morning... > > Is it possible to run Postgresql and MySQL together on the same machine? Yes, it is even possible to mulitple clusters of postgresql running at the same time. Just remember that you have to configure each to only use its share of your hardware resources so that they play nice together (i.e. you don't start swapping to disk). Regards, Richard Broersma Jr.
Hi Robert! Sure, why not? Both databases run on different directories, ports, sockets and so on. Greetings, Matthias > -----Original Message----- > From: pgsql-general-owner@postgresql.org > [mailto:pgsql-general-owner@postgresql.org] On Behalf Of Wolfe, Robert > Sent: Wednesday, November 22, 2006 4:53 PM > To: pgsql-general@postgresql.org > Subject: [GENERAL] PGSQL Newbie > > > > Good morning all! I'm a newbie to PGSQL here so thought I > would ask my > first question since I joined this list this morning... > > Is it possible to run Postgresql and MySQL together on the > same machine? > > -- > Robert Wolfe, Linux and Network Admin > net261.com | http://www.net261.com:85 > robert@net261.com > > > ---------------------------(end of > broadcast)--------------------------- > TIP 2: Don't 'kill -9' the postmaster >
On Wed, 2006-11-22 at 10:53 -0500, Wolfe, Robert wrote: > Good morning all! I'm a newbie to PGSQL here so thought I would ask my > first question since I joined this list this morning... > > Is it possible to run Postgresql and MySQL together on the same machine? > Yes. You might also want to take a look at pgsql-novice :) Sincerely, Joshua D. Drake -- === The PostgreSQL Company: Command Prompt, Inc. === Sales/Support: +1.503.667.4564 || 24x7/Emergency: +1.800.492.2240 Providing the most comprehensive PostgreSQL solutions since 1997 http://www.commandprompt.com/ Donate to the PostgreSQL Project: http://www.postgresql.org/about/donate
"Wolfe, Robert" <robert@net261.com> writes: > Good morning all! I'm a newbie to PGSQL here so thought I would ask > my first question since I joined this list this morning... > > Is it possible to run Postgresql and MySQL together on the same > machine? Sure, my development machine is setup this way so that I can write code to migrate away from MySQL. Jason