~~NOTOC~~ ====== MySQL Database ======
===== Database setup ===== The jSeduite architecture assume the existence of a special database stored inside a MySQL server. ==== Database creation ==== Execute the following code inside your system: mosser@anubis:~$ mysql -u root mysql> CREATE DATABASE `jSeduite` ; mysql> GRANT ALL PRIVILEGES ON `jSeduite`.* TO 'epub_login'@'localhost' IDENTIFIED BY 'epub_password'; mysql> exit; mosser@anubis:~$ You can (**must**) of course change ''epub_login'' and ''epub_password'' !! ==== Database deployment ==== Some jSeduite Web Services relies on this database. You'll have to create the relations inside your database engine (given in the //dependency// section of the concerned service) before using it !