FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
devstack/provision.sql at master · Pearson-Advance/devstack · GitHub
Pearson-Advance
/
devstack
Public
forked from
openedx-unsupported/devstack
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
devstack
/
provision.sql
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (19 loc) · 991 Bytes
Breadcrumbs
devstack
/
provision.sql
Copy path
File metadata and controls
27 lines (19 loc) · 991 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
CREATE
DATABASE
IF
NOT EXISTS credentials;
GRANT
ALL
ON
credentials.
*
TO
'
credentials001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS discovery;
GRANT
ALL
ON
discovery.
*
TO
'
discov001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS ecommerce;
GRANT
ALL
ON
ecommerce.
*
TO
'
ecomm001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS edxmktg;
GRANT
ALL
ON
edxmktg.
*
TO
'
edxmktg001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS notes;
GRANT
ALL
ON
notes.
*
TO
'
notes001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS registrar;
GRANT
ALL
ON
registrar.
*
TO
'
registrar001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS xqueue;
GRANT
ALL
ON
xqueue.
*
TO
'
xqueue001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
CREATE
DATABASE
IF
NOT EXISTS edxapp;
CREATE
DATABASE
IF
NOT EXISTS edxapp_csmh;
GRANT
ALL
ON
edxapp.
*
TO
'
edxapp001
'
@
'
%
'
IDENTIFIED BY
'
password
'
;
GRANT
ALL
ON
edxapp_csmh.
*
TO
'
edxapp001
'
@
'
%
'
;
FLUSH PRIVILEGES;
Back
|
FazBrowse Home
|
New Git URL