Last modified by Alexandru Pentilescu on 2023/06/25 18:56

From version 6.1
edited by Alexandru Pentilescu
on 2022/06/08 21:08
Change comment: There is no comment for this version
To version 11.1
edited by Alexandru Pentilescu
on 2022/06/08 21:18
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -130,12 +130,26 @@
130 130  Please replace <database_password> and <mysql_root_password> with randomly generated long strings, preferrably containing a long sequence of lowercase, uppercase letters, digits and symbols. In my case, I chose 12 character long sequences for each of them. It's unlikely for a hacker to compromise your docker environment but it's still best practice to make the passwords as long and hard to guess as possible, as an extra layer of security.
131 131  
132 132  
133 -= First run of the container=
133 += First run of the container =
134 +
134 134  The first run is always the scariest. Start up the docker image and wait for everything to initialize:
136 +
135 135  {{code language="bash"}}
136 136  docker-compose up -d
137 137  {{/code}}
138 138  
141 +If you followed along just the way I described in this article, you shouldn't have any problems with this step. Note that XWiki takes a significant amount of time to initialize, around 10 minutes.
142 +
143 +Take your time and don't rush!
144 +
145 +When you want to see the status of your installation, visit the domain name pointing to your server at port 8081. In my case, I would visit http://pentilescu.com:8081/
146 +
147 +You might see a page indicating that XWiki is initializing, as well as a percentage counter indicating its progress. Let the server finish doing its thing.
148 +
149 +In the end, you should see an image like the one below:
150 +
151 +[[image:example.jpg]]
152 +
139 139  = External references =
140 140  
141 141  [[Official docker guide for installing XWiki>>https://github.com/xwiki/xwiki-docker/blob/master/README.md]]