aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_mysql.c
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-09-06 21:46:58 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2010-09-06 21:46:58 +0000
commit34b9244500a0a03e7eeb2c32c330025ab2d75c8f (patch)
tree387ca1494653d9619b23a8c333870763b6cb3005 /src/datastore/plugin_datastore_mysql.c
parent93921793f46b7c818e39d4657fcd087fa7c92734 (diff)
update
git-svn-id: https://gnunet.org/svn/gnunet@12867 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/datastore/plugin_datastore_mysql.c')
-rw-r--r--src/datastore/plugin_datastore_mysql.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c
index c61c450198..4e5d8f9b06 100644
--- a/src/datastore/plugin_datastore_mysql.c
+++ b/src/datastore/plugin_datastore_mysql.c
@@ -49,13 +49,13 @@
*
* 1) in /etc/gnunet.conf, set
* @verbatim
- * [datastore]
- * DATABASE = "mysql"
- * @endverbatim
+ [datastore]
+ DATABASE = "mysql"
+ @endverbatim
* 2) Then access mysql as root,
* @verbatim
$ mysql -u root -p
- * @endverbatim
+ @endverbatim
* and do the following. [You should replace $USER with the username
* that will be running the gnunetd process].
* @verbatim
@@ -64,14 +64,14 @@
ON gnunet.* TO $USER@localhost;
SET PASSWORD FOR $USER@localhost=PASSWORD('$the_password_you_like');
FLUSH PRIVILEGES;
- * @endverbatim
+ @endverbatim
* 3) In the $HOME directory of $USER, create a ".my.cnf" file
* with the following lines
* @verbatim
[client]
user=$USER
password=$the_password_you_like
- * @endverbatim
+ @endverbatim
*
* Thats it. Note that .my.cnf file is a security risk unless its on
* a safe partition etc. The $HOME/.my.cnf can of course be a symbolic
@@ -86,7 +86,7 @@
* @verbatim
$ mysql -u $USER -p $the_password_you_like
mysql> use gnunet;
- * @endverbatim
+ @endverbatim
*
* If you get the message &quot;Database changed&quot; it probably works.
*
@@ -107,7 +107,7 @@
* @verbatim
mysql> REPAIR TABLE gn090;
mysql> REPAIR TABLE gn072;
- * @endverbatim
+ @endverbatim
*
* PROBLEMS?
*