This is a discussion on running 2 versions of mysql on the same server within the MySQL Database forums, part of the Database Forums category; I need to run mysql v3 (for an old application) and v5 on the same server. I installed both versions ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I need to run mysql v3 (for an old application) and v5 on the same server.
I installed both versions and they run on their own. Basically I want to run v3 on port 3303 and v5 on the default port I tried to startup both with mysqlmanager and created /etc/my.cnf [manager] [mysqld3] mysqld-path = .... port = 3303 [mysql5] mysqld-path = ... port = 3306 but both startups fail when I startup mysqlmanager. maybe mysqlmanager is not the way to go here ? any ideas ? TIA Martin |
|
|||
|
"Martin" <invalid@invalid.invalid> schreef in bericht news:eqids7$m9t$1@news.albasani.net... >I need to run mysql v3 (for an old application) and v5 on the same server. > > I installed both versions and they run on their own. Basically I want to > run v3 on port 3303 and v5 on the default port > > I tried to startup both with mysqlmanager and created /etc/my.cnf > [manager] > > [mysqld3] > mysqld-path = .... > port = 3303 > > [mysql5] > mysqld-path = ... > port = 3306 > > > but both startups fail when I startup mysqlmanager. > maybe mysqlmanager is not the way to go here ? > any ideas ? > > TIA > Martin i think this page (http://dev.mysql.com/doc/refman/5.1/...qld-multi.html) only tells you how to run multiple servers of the SAME VERSION on one box. so, i think, you should create 2 different my.cnf files, one for version 3 server, and one for version5 server. you might also check: http://dev.mysql.com/doc/refman/5.1/...x-servers.html |