Previous Thread
Next Thread
Print Thread
Rate Thread
#41319 01/11/07 07:16 PM
Joined: Jan 2007
Posts: 8
H
Horus Offline OP
UGN Newbie
OP Offline
UGN Newbie
H
Joined: Jan 2007
Posts: 8
hi, i had a question for anyone familiar with mysql. i run a dual-boot machine with windows and linux. on that machine i run a website which uses perl and mysql. i'd like to know if it's possible to share the mysql database between both the windows and linux setup depending on what i'm booted into. for example, windows: f:\MySQL Datafiles\ibdata1 i want to use that in linux. i have f: mounted to /files in linux. apache runs fine with the perl scripts and all, i just need to find a way to share the database. all the solutions i've seen so far require dumping the database from windows (the database was originally created in windows) and then using that to set up mysql under linux. the problem with this is that it wont' update the windows mysql datafiles. and so, if i wanted to switch back to windows with an up-to-date databse, i'd have to dump the linux mysql one, and bring that back over. i understand that there are more files than just ibdata1 that might be required. really, i would just like to know if it's possible to share the same database files. note: also, i'm pretty sure all the database and table names are lowercase and i don't THINK i've used any floating point numbers in the database...although, i dont' know for sure. but does anyone know if the floating-poitn number format in windows and linux differ? never had to worry about that before. and i do believe the database type is innodb.//

Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
I could definately see data collisions with that setup; why not just set mysql to allow each pc to connect to the username to utilize the database through the server itself vs trying to run two servers with one set of data?


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
1 member likes this: JAISP
Joined: Jan 2007
Posts: 8
H
Horus Offline OP
UGN Newbie
OP Offline
UGN Newbie
H
Joined: Jan 2007
Posts: 8
do you mean set up a mysql server on a separate pc? it's b/c i'm only using one computer. the setup is just one pc, dual boot, with a fat partition setup so i can access certain files from both linux and windows. the files i'm mainly concerned with are the mysql datafiles (obviously). i dont' currently have a pc to dedicate as a mysql server. maybe down the road i'll buy some cheap parts and put one together. (it'd make things easier for the lan i have with my roommate to just set up a server/router pc) i'm just wondering if, given my current setup, it's possible to just share the same database file. i obviously don't have an in depth knowledge of how mysql stores data, but it seems like it would be a pretty trivial thing for mysql to be able to store it in a format that can be shared. (aka, being able to just copy files, or even having multiple servers access the same database) but then again, how many ppl out there are trying to do this? i'm sure there are plenty of reasons why//

Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
no, I'm saying, have the MySQL server run on one machine, and set the username to allow connections from the other machine; then you set the connection data on the one machine to connect to the server machien...

I'm trying to figure out why you want access to the mysql files in the first place; are you trying to use them to connecft with a seperate install and use that data or what? If you want both machines to use the same mysql data, then set machine A to be a server, and set machine B to use machine A's mysql server (using machineA's ip address on your network as the host, and the user account on machineA's user/password)

For example, I have 3 machines here. MySQL data is used on either Machine B or machineC (2 mysql instances because I do testing on multiple versions).
MachineA hosts final builds, so I use MachineB and MachineC to connect to it to use it as the server.
MachineB has my alpha work, just drawn out data, I do testing mainly just on that server to connect from php to its own sql server.

I also use SQLYog to connect from Laptop to Machine A and machineB to do some quick update work on them both.

It's all quite simple to do, just set the sql username to allow connections from ip's other than "localhost".


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
1 member likes this: JAISP
Joined: Jan 2007
Posts: 8
H
Horus Offline OP
UGN Newbie
OP Offline
UGN Newbie
H
Joined: Jan 2007
Posts: 8
yeah, i know what you mean. i'm saying, i only have Machine A, lol. i'm just doing this on my home computer. I'll boot into windows. on windows, i run apache with a mysql database to hold information. then i might want to boot into linux. in linux, i want to be able to be running the exact same website (hence havign all of my website stuff on a separate partition). but i want the databases which i use when booted in windows to be able to be access when i'm booted into linux. if i had two machines, i'd be doing exactly what you suggested. but having only one machine is what makes this difficult. y'know, lol. cuz once i boot into linux, the mysql server on my windows partition can't really still be running. so, to sum up. 1 machine, 2 operating systems (and thus, two separate mysql installations, one on the linux partition, one on the windows partition), and a shared partition with a mysql datafile used by the windows mysql server. i really don't think it's possible, i was just wondering if maybe someone knew. oh, when i mentioned the LAN in my earlier post, its just my buddies laptop, not really an option to run a mysql server on 24/7. so i only have 1 machine to do this with.//

Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
Oh, so you're dual booting, check...

Humm, it may be kinda difficult; I know that when you install MySQL via linux from source you can specify your path, so you could mount your fat drive and install MySQL to there; I however am not sure if the W32 version allows you to specify locations of mysql data... Even if it would, you'd want to ensure you're running the EXACT same versions of the W32 and Linux versions of MySQL...

If the Windows install allows you to specify the datafile location it shouldn't be too difficult as I'm sure it stores the data the exact same way... The only problem would be if MySQL stores EVERYTHING in the data directory (program files included)...

You'd ultimately have to give it a go and try to customize it... I don't dual boot here since I had the spare hw for a seperate linux box.


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
1 member likes this: JAISP
Joined: Jan 2007
Posts: 8
H
Horus Offline OP
UGN Newbie
OP Offline
UGN Newbie
H
Joined: Jan 2007
Posts: 8
ahh...after looking a bit more i found a problem. when you set the datafile in windows...it aparently only copies one of the necessary datafiles. the rest of the datafiles it keeps in a Mysql Server/data/ directory. anyway, i copied those files into the shared partition, however, after editing my.cnf and pointing it to the shared datafiles directory, mysql gives me a "datadir is empty or invalid" upon starting up...i have all the necessary files. i'm figuring it can't be done. lemme know what you think//

Joined: Feb 2002
Posts: 7,203
Likes: 11
Community Owner
Offline
Community Owner
Joined: Feb 2002
Posts: 7,203
Likes: 11
Probably issues with the windows data, I'm not sure how it stores data or if it stores it properly (windows is so wonky lol).

You could try running your linux in a vmware session (or vice versa)


Donate to UGN Security here.
UGN Security, Back of the Web, and VNC Web Services Owner
1 member likes this: JAISP
Joined: Dec 2002
Posts: 3,255
Likes: 3
UGN Elite
Offline
UGN Elite
Joined: Dec 2002
Posts: 3,255
Likes: 3
I would strongly advise against such a set up. At best you could install a version per OS and be sure to make one the primary and back up the other from that one.

Linux and windows use very different file systems and different hooks. The mysql version for windows and the version for Linux though they will act the same for the most part will be configured and have very different files that make them work.

The other alternative is to go out and buy a Pentium I or pentium II and install an OS it can handle (psst go linux or BSD) LAMP (Linux Apache MySQL Perl,Python,PHP).

Then your scripts on your local box can access a single data set on the cheapy MySQL box.

1 member likes this: JAISP

Link Copied to Clipboard
Member Spotlight
Posts: 30
Joined: June 2002
Forum Statistics
Forums41
Topics33,840
Posts68,858
Average Daily Posts1
Members2,176
Most Online3,253
Jan 13th, 2020
Latest Postings
Where and how do you torrent?
by danni75 - 03/01/24 05:58 AM
Animation,
by JohanKaariainen - 08/15/19 01:18 AM
Blackbeard.....
by Gremelin - 10/03/18 07:02 PM
my old account still exists!
by Crime - 08/10/18 02:47 PM
Okay WTF?
by HenryMiring - 09/27/17 01:45 AM
The History Thread...
by Gremelin - 08/11/17 12:11 PM
My friend NEEDS your HELP!
by Lena01 - 07/21/17 12:06 AM
I'm having fun with this guy.
by gabithompson730 - 07/20/17 01:50 AM
I want to upgrade my phone
by gabithompson730 - 07/20/17 01:49 AM
Doom 3
by Cyrez - 09/11/14 08:58 PM
Amazon Gift Card Generator/KeyGen?te
by Gecko666 - 08/22/14 09:21 AM
AIM scene 99-03
by lavos - 09/02/13 08:06 AM
Planetside 2
by Crime - 03/04/13 07:10 AM
Beta Testers Wanted
by Crime - 03/04/13 06:55 AM
Hello Everyone
by Gremelin - 02/12/12 06:01 PM
Tracfone ESN Generator
by Zanvin Green - 01/18/12 01:31 PM
Python 3 issue
by Testing - 12/17/11 09:28 PM
tracfone airtime
by Drache86 - 07/30/11 03:37 AM
Backdoors and the Infinite
by ZeroCoolStar - 07/10/11 03:52 AM
HackThisZIne #12 Releaseed!
by Pipat2 - 04/28/11 09:20 PM
gang wars? l33t-wars?
by Gremelin - 04/28/11 05:56 AM
Consolidate Forums
by diggin2deep - 04/21/11 10:02 AM
LAN Hacking Noob
by Gremelin - 03/12/11 12:42 AM
Top Posters
UGN Security 41,392
Gremelin 7,203
§intå× 3,255
SilentRage 1,273
Ice 1,146
pergesu 1,136
Infinite 1,041
jonconley 955
Girlie 908
unreal 860
Top Likes Received
Ghost 2
Crime 1
Ice 1
Dartur 1
Cyrez 1
Powered by UBB.threads™ PHP Forum Software 7.7.5