Changes for page MySQL Installation
Last modified by Thomas Mortagne on 2022/05/25
Change comment:
Added comment
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Objects (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. VincentMassol1 +XWiki.juannicolas
- XWiki.XWikiComments[10]
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +xwiki:XWiki.juannicolas - Comment
-
... ... @@ -1,0 +1,9 @@ 1 +running mysql -u root -e "grant all privileges on xwiki.* to xwiki@localhost identified by 'xwiki'" will give you problems due to xwiki requires to run CREATE, DELETE on mysql. That's why the documentation tell you to run mysql -u root -e "grant all privileges on *.* to xwiki@localhost identified by 'xwiki'" 2 + 3 +If you don't want to give full access to whole mysql schema you could run instead: 4 + 5 +mysql -u root -e "grant SELECT,CREATE,DELETE on *.* to xwiki@localhost identified by 'xwiki'" 6 + 7 +and then 8 + 9 +mysql -u root -e "grant all privileges on xwiki.* to xwiki@localhost identified by 'xwiki'" - Date
-
... ... @@ -1,0 +1,1 @@ 1 +2014-03-10 23:36:40.411