-3

We have a group of developers and designers, we want to create a single database server to use for everyone for better collaboration. We are running windows and Linux machines. So please give me suggestions how can i build this.

Shadow
  • 33,525
  • 10
  • 51
  • 64
Asif
  • 99
  • 1
  • 10
  • SO is about programming, not about how to set up a server. Even if this question were on-topic here, the way you asked it without any details, would mean that it is not specific enough. – Shadow Feb 08 '16 at 06:43

1 Answers1

-1

You can run MySQL on either of those types of machines. Go to the MySQL website and download an installer. Also download MySQLWorkbench to do setup after installation. You should be up in a very short time.

john elemans
  • 2,578
  • 2
  • 15
  • 26
  • then how can i access it in my web apps ? – Asif Feb 08 '16 at 11:47
  • There are two steps. First point your apps at the ip address of the machine that you choose as a server. example; http://192.168.0.2/test/v1/appserver.php?request=getSomeData. Next you need to write some server side code and install it in the directory that your server uses for web services. In the example, "test" would be in that folder, "v1" inside that and the php file inside "v1". – john elemans Feb 08 '16 at 16:08