From c0fd98f70b1bca3e169115490980453386bfbed9 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Mon, 27 Aug 2007 16:41:29 +0000 Subject: Initial brief notes on database setup. --- docs/setup | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/setup (limited to 'docs/setup') diff --git a/docs/setup b/docs/setup new file mode 100644 index 0000000..71398b6 --- /dev/null +++ b/docs/setup @@ -0,0 +1,15 @@ + Wallet Installation and Setup + +MySQL Database Setup + + After installing the MySQL server, connect as a user with permissions + to create new databases and users. Then, issue the following + commands: + + create database wallet; + create user wallet identified by 'PASSWORD'; + grant all on wallet.* to wallet; + + This creates a wallet user that can be used by the rest of the wallet + system and gives it access to the wallet database, where it can create + its own tables. -- cgit v1.2.3