forked from inex/IXP-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Installation 03 Database Creation
barryo edited this page Dec 12, 2012
·
2 revisions
IXP Manager requires a MySQL(*) database. In this step we will just create the database and access details, in a later step we will use Doctrine to create the schema.
(*) Doctrine ORM uses a Database Abstraction Layer (DBAL) meaning that any supported database by Doctrine should work fine but we have used MySQL exclusively.
Use whatever means you like to create a database and user for IXP Manager. For example:
$ mysql -u root -p
mysql> CREATE DATABASE `ixp`;
mysql> GRANT ALL ON `ixp`.* TO `ixp`@`127.0.0.1` IDENTIFIED BY 'password';
mysql> FLUSH PRIVILEGES;
Schema diagrams are available here.
Continue you installation with Configuring IXP Manager.