You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by er...@apache.org on 2016/03/04 21:17:46 UTC

airavata-docs git commit: Modifications to SQL commands to make them appear in a single line

Repository: airavata-docs
Updated Branches:
  refs/heads/master b68213877 -> e21a5838b


Modifications to SQL commands to make them appear in a single line


Project: http://git-wip-us.apache.org/repos/asf/airavata-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-docs/commit/e21a5838
Tree: http://git-wip-us.apache.org/repos/asf/airavata-docs/tree/e21a5838
Diff: http://git-wip-us.apache.org/repos/asf/airavata-docs/diff/e21a5838

Branch: refs/heads/master
Commit: e21a5838b0109b8353399b677a6c3e26bcf24531
Parents: b682138
Author: Eroma Abeysinghe <er...@gmail.com>
Authored: Fri Mar 4 15:17:43 2016 -0500
Committer: Eroma Abeysinghe <er...@gmail.com>
Committed: Fri Mar 4 15:17:43 2016 -0500

----------------------------------------------------------------------
 Airavata-Installation.md | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-docs/blob/e21a5838/Airavata-Installation.md
----------------------------------------------------------------------
diff --git a/Airavata-Installation.md b/Airavata-Installation.md
index abb07ce..85668dc 100644
--- a/Airavata-Installation.md
+++ b/Airavata-Installation.md
@@ -39,15 +39,19 @@
 9. While maria DB is running run
 <pre><code>mysql _secure_installation</code></pre>
 When executing above it will ask you for root password; provide it.
+10. Now login as the root user providing the password you gave above.
 10. Create databases required for Airavata
 <pre><code>create database app_catalog;</code></pre>
 <pre><code>create database experiment_catalog;</code></pre>
 <pre><code>create database data_catalog;</code></pre>
 <pre><code>create database credential_store;</code></pre>
 <pre><code>create database workflow_catalog;</code></pre>
-11. Grant permission to these databases for Airavata<br>
-Command syntax: <pre><code>grant all privileges on 'DB-Name'.<p>&#x204E; to 'username'@'%' identified by 'password';</code></pre>
-E.g.: <pre><code>grant all privileges on app_catalog.<p>&#x204E; to 'airavata'@'%' identified by 'airavata';</code></pre>
+11. Grant permission to these databases for a new user which would be used by Airavata<br>
+Command syntax: 
+<pre><code> grant all privileges on &#60;DB-Name&#62;&#46;&#x204E; to '&#60;username&#62;'@'%' identified by '&#60;password&#62;'; </code></pre>
+E.g.: 
+<pre><code>grant all privileges on app_catalog&#46;&#x204E; to 'airavata'@'%' identified by 'airavata';</code></pre>
+<br>
 NOTE: Grant permission to every databased created above. % can be replaced by  'localhost' (if DB is also in the same server as airavata). If DB is in a different server give the server name.
 <br>