Read the Docs build information Build id: 3975602 Project: canonical-charmed-mysql Version: 8.4 Commit: 3ad86f8427b0b3aaf0712ec0baf7f747a3544e36 Date: 2026-04-30T12:26:42.274134Z State: finished Success: True [rtd-command-info] start-time: 2026-04-30T12:26:43.085975Z, end-time: 2026-04-30T12:26:43.641510Z, duration: 0, exit-code: 0 git clone --depth 1 https://github.com/canonical/mysql-operators . Cloning into '.'... [rtd-command-info] start-time: 2026-04-30T12:26:43.735672Z, end-time: 2026-04-30T12:26:44.730294Z, duration: 0, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 refs/heads/8.4/edge:refs/remotes/origin/8.4/edge From https://github.com/canonical/mysql-operators * [new tag] mysql-k8s/rev393 -> mysql-k8s/rev393 * [new tag] mysql-k8s/rev394 -> mysql-k8s/rev394 * [new tag] mysql-k8s/rev395 -> mysql-k8s/rev395 * [new tag] mysql-k8s/rev402 -> mysql-k8s/rev402 * [new tag] mysql-k8s/rev403 -> mysql-k8s/rev403 * [new tag] mysql-k8s/rev404 -> mysql-k8s/rev404 * [new tag] mysql-k8s/rev406 -> mysql-k8s/rev406 * [new tag] mysql-k8s/rev407 -> mysql-k8s/rev407 * [new tag] mysql-k8s/rev408 -> mysql-k8s/rev408 * [new tag] mysql/rev486 -> mysql/rev486 * [new tag] mysql/rev487 -> mysql/rev487 * [new tag] mysql/rev488 -> mysql/rev488 * [new tag] mysql/rev495 -> mysql/rev495 * [new tag] mysql/rev496 -> mysql/rev496 * [new tag] mysql/rev497 -> mysql/rev497 * [new tag] mysql/rev498 -> mysql/rev498 * [new tag] mysql/rev499 -> mysql/rev499 * [new tag] mysql/rev500 -> mysql/rev500 * [new tag] v8.4/1.10.0 -> v8.4/1.10.0 * [new tag] v8.4/1.11.0 -> v8.4/1.11.0 * [new tag] v8.4/1.12.0 -> v8.4/1.12.0 * [new tag] v8.4/1.13.0 -> v8.4/1.13.0 * [new tag] v8.4/1.14.0 -> v8.4/1.14.0 * [new tag] v8.4/1.15.0 -> v8.4/1.15.0 * [new tag] v8.4/1.16.0 -> v8.4/1.16.0 * [new tag] v8.4/1.17.0 -> v8.4/1.17.0 * [new tag] v8.4/1.18.0 -> v8.4/1.18.0 * [new tag] v8.4/1.19.0 -> v8.4/1.19.0 * [new tag] v8.4/1.2.0 -> v8.4/1.2.0 * [new tag] v8.4/1.20.0 -> v8.4/1.20.0 * [new tag] v8.4/1.21.0 -> v8.4/1.21.0 * [new tag] v8.4/1.22.0 -> v8.4/1.22.0 * [new tag] v8.4/1.23.0 -> v8.4/1.23.0 * [new tag] v8.4/1.24.0 -> v8.4/1.24.0 * [new tag] v8.4/1.25.0 -> v8.4/1.25.0 * [new tag] v8.4/1.26.0 -> v8.4/1.26.0 * [new tag] v8.4/1.27.0 -> v8.4/1.27.0 * [new tag] v8.4/1.28.0 -> v8.4/1.28.0 * [new tag] v8.4/1.29.0 -> v8.4/1.29.0 * [new tag] v8.4/1.3.0 -> v8.4/1.3.0 * [new tag] v8.4/1.30.0 -> v8.4/1.30.0 * [new tag] v8.4/1.4.0 -> v8.4/1.4.0 * [new tag] v8.4/1.5.0 -> v8.4/1.5.0 * [new tag] v8.4/1.6.0 -> v8.4/1.6.0 * [new tag] v8.4/1.7.0 -> v8.4/1.7.0 * [new tag] v8.4/1.8.0 -> v8.4/1.8.0 * [new tag] v8.4/1.9.0 -> v8.4/1.9.0 [rtd-command-info] start-time: 2026-04-30T12:26:45.378070Z, end-time: 2026-04-30T12:26:45.453232Z, duration: 0, exit-code: 0 git checkout --force origin/8.4/edge Note: switching to 'origin/8.4/edge'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 3ad86f8 [DPE-9672] Document storage types (#282) [rtd-command-info] start-time: 2026-04-30T12:26:45.541293Z, end-time: 2026-04-30T12:26:45.579730Z, duration: 0, exit-code: 0 cat .readthedocs.yaml # .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-24.04 tools: python: "3.11" jobs: post_checkout: - git fetch --unshallow || true # Cancel building pull requests when there aren't changed in the docs directory. # If there are no changes (git diff exits with 0) we force the command to return with 183. # This is a special exit code on Read the Docs that will cancel the build immediately. # https://docs.readthedocs.io/en/stable/build-customization.html#cancel-build-based-on-a-condition - | if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/8.4/edge -- 'docs/' '.readthedocs.yaml'; then exit 183; fi # Build documentation in the docs/ directory with Sphinx sphinx: builder: dirhtml configuration: docs/conf.py fail_on_warning: true # If using Sphinx, optionally build your docs in additional formats such as PDF formats: - pdf # Optionally declare the Python requirements required to build your docs python: install: - requirements: docs/requirements.txt [rtd-command-info] start-time: 2026-04-30T12:26:45.676426Z, end-time: 2026-04-30T12:26:47.202914Z, duration: 1, exit-code: 0 git fetch --unshallow || true From https://github.com/canonical/mysql-operators * [new tag] mysql-k8s/rev355 -> mysql-k8s/rev355 * [new tag] mysql-k8s/rev356 -> mysql-k8s/rev356 * [new tag] mysql-k8s/rev357 -> mysql-k8s/rev357 * [new tag] mysql/rev455 -> mysql/rev455 * [new tag] mysql/rev456 -> mysql/rev456 * [new tag] mysql/rev457 -> mysql/rev457 * [new tag] v8.4/1.0.0 -> v8.4/1.0.0 * [new tag] v8.4/1.1.0 -> v8.4/1.1.0 [rtd-command-info] start-time: 2026-04-30T12:26:47.291220Z, end-time: 2026-04-30T12:26:47.328363Z, duration: 0, exit-code: 0 if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && git diff --quiet origin/8.4/edge -- 'docs/' '.readthedocs.yaml'; then exit 183; fi [rtd-command-info] start-time: 2026-04-30T12:26:51.813607Z, end-time: 2026-04-30T12:26:51.866522Z, duration: 0, exit-code: 0 asdf global python 3.11.14 [rtd-command-info] start-time: 2026-04-30T12:26:52.224032Z, end-time: 2026-04-30T12:26:52.821504Z, duration: 0, exit-code: 0 python -mvirtualenv $READTHEDOCS_VIRTUALENV_PATH created virtual environment CPython3.11.14.final.0-64 in 368ms creator CPython3Posix(dest=/home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4, clear=False, no_vcs_ignore=False, global=False) seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/docs/.local/share/virtualenv) added seed packages: pip==23.1, setuptools==67.6.1, wheel==0.40.0 activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator [rtd-command-info] start-time: 2026-04-30T12:26:52.915702Z, end-time: 2026-04-30T12:26:57.830035Z, duration: 4, exit-code: 0 python -m pip install --upgrade --no-cache-dir pip setuptools Requirement already satisfied: pip in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (23.1) Collecting pip Downloading pip-26.1-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 18.8 MB/s eta 0:00:00 Requirement already satisfied: setuptools in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (67.6.1) Collecting setuptools Downloading setuptools-82.0.1-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 34.2 MB/s eta 0:00:00 Installing collected packages: setuptools, pip Attempting uninstall: setuptools Found existing installation: setuptools 67.6.1 Uninstalling setuptools-67.6.1: Successfully uninstalled setuptools-67.6.1 Attempting uninstall: pip Found existing installation: pip 23.1 Uninstalling pip-23.1: Successfully uninstalled pip-23.1 Successfully installed pip-26.1 setuptools-82.0.1 [rtd-command-info] start-time: 2026-04-30T12:26:57.937040Z, end-time: 2026-04-30T12:27:02.149334Z, duration: 4, exit-code: 0 python -m pip install --upgrade --no-cache-dir sphinx Collecting sphinx Downloading sphinx-9.0.4-py3-none-any.whl.metadata (5.8 kB) Collecting sphinxcontrib-applehelp>=1.0.7 (from sphinx) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-devhelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-htmlhelp>=2.0.6 (from sphinx) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-jsmath>=1.0.1 (from sphinx) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl.metadata (1.4 kB) Collecting sphinxcontrib-qthelp>=1.0.6 (from sphinx) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl.metadata (2.3 kB) Collecting sphinxcontrib-serializinghtml>=1.1.9 (from sphinx) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl.metadata (2.4 kB) Collecting Jinja2>=3.1 (from sphinx) Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) Collecting Pygments>=2.17 (from sphinx) Downloading pygments-2.20.0-py3-none-any.whl.metadata (2.5 kB) Collecting docutils<0.23,>=0.20 (from sphinx) Downloading docutils-0.22.4-py3-none-any.whl.metadata (15 kB) Collecting snowballstemmer>=2.2 (from sphinx) Downloading snowballstemmer-3.0.1-py3-none-any.whl.metadata (7.9 kB) Collecting babel>=2.13 (from sphinx) Downloading babel-2.18.0-py3-none-any.whl.metadata (2.2 kB) Collecting alabaster>=0.7.14 (from sphinx) Downloading alabaster-1.0.0-py3-none-any.whl.metadata (2.8 kB) Collecting imagesize>=1.3 (from sphinx) Downloading imagesize-2.0.0-py2.py3-none-any.whl.metadata (1.5 kB) Collecting requests>=2.30.0 (from sphinx) Downloading requests-2.33.1-py3-none-any.whl.metadata (4.8 kB) Collecting roman-numerals>=1.0.0 (from sphinx) Downloading roman_numerals-4.1.0-py3-none-any.whl.metadata (3.3 kB) Collecting packaging>=23.0 (from sphinx) Downloading packaging-26.2-py3-none-any.whl.metadata (3.5 kB) Collecting MarkupSafe>=2.0 (from Jinja2>=3.1->sphinx) Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.7 kB) Collecting charset_normalizer<4,>=2 (from requests>=2.30.0->sphinx) Downloading charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (40 kB) Collecting idna<4,>=2.5 (from requests>=2.30.0->sphinx) Downloading idna-3.13-py3-none-any.whl.metadata (8.0 kB) Collecting urllib3<3,>=1.26 (from requests>=2.30.0->sphinx) Downloading urllib3-2.6.3-py3-none-any.whl.metadata (6.9 kB) Collecting certifi>=2023.5.7 (from requests>=2.30.0->sphinx) Downloading certifi-2026.4.22-py3-none-any.whl.metadata (2.5 kB) Downloading sphinx-9.0.4-py3-none-any.whl (3.9 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.9/3.9 MB 183.1 MB/s 0:00:00 Downloading docutils-0.22.4-py3-none-any.whl (633 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 633.2/633.2 kB 1.1 GB/s 0:00:00 Downloading alabaster-1.0.0-py3-none-any.whl (13 kB) Downloading babel-2.18.0-py3-none-any.whl (10.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.2/10.2 MB 518.6 MB/s 0:00:00 Downloading imagesize-2.0.0-py2.py3-none-any.whl (9.4 kB) Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) Downloading markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22 kB) Downloading packaging-26.2-py3-none-any.whl (100 kB) Downloading pygments-2.20.0-py3-none-any.whl (1.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 933.9 MB/s 0:00:00 Downloading requests-2.33.1-py3-none-any.whl (64 kB) Downloading charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (214 kB) Downloading idna-3.13-py3-none-any.whl (68 kB) Downloading urllib3-2.6.3-py3-none-any.whl (131 kB) Downloading certifi-2026.4.22-py3-none-any.whl (135 kB) Downloading roman_numerals-4.1.0-py3-none-any.whl (7.7 kB) Downloading snowballstemmer-3.0.1-py3-none-any.whl (103 kB) Downloading sphinxcontrib_applehelp-2.0.0-py3-none-any.whl (119 kB) Downloading sphinxcontrib_devhelp-2.0.0-py3-none-any.whl (82 kB) Downloading sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl (98 kB) Downloading sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl (5.1 kB) Downloading sphinxcontrib_qthelp-2.0.0-py3-none-any.whl (88 kB) Downloading sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl (92 kB) Installing collected packages: urllib3, sphinxcontrib-serializinghtml, sphinxcontrib-qthelp, sphinxcontrib-jsmath, sphinxcontrib-htmlhelp, sphinxcontrib-devhelp, sphinxcontrib-applehelp, snowballstemmer, roman-numerals, Pygments, packaging, MarkupSafe, imagesize, idna, docutils, charset_normalizer, certifi, babel, alabaster, requests, Jinja2, sphinx Successfully installed Jinja2-3.1.6 MarkupSafe-3.0.3 Pygments-2.20.0 alabaster-1.0.0 babel-2.18.0 certifi-2026.4.22 charset_normalizer-3.4.7 docutils-0.22.4 idna-3.13 imagesize-2.0.0 packaging-26.2 requests-2.33.1 roman-numerals-4.1.0 snowballstemmer-3.0.1 sphinx-9.0.4 sphinxcontrib-applehelp-2.0.0 sphinxcontrib-devhelp-2.0.0 sphinxcontrib-htmlhelp-2.1.0 sphinxcontrib-jsmath-1.0.1 sphinxcontrib-qthelp-2.0.0 sphinxcontrib-serializinghtml-2.0.0 urllib3-2.6.3 [rtd-command-info] start-time: 2026-04-30T12:27:02.250953Z, end-time: 2026-04-30T12:27:09.916403Z, duration: 7, exit-code: 0 python -m pip install --exists-action=w --no-cache-dir -r docs/requirements.txt Collecting canonical-sphinx~=0.6 (from -r docs/requirements.txt (line 2)) Downloading canonical_sphinx-0.6.0-py3-none-any.whl.metadata (5.8 kB) Collecting myst-parser~=4.0 (from -r docs/requirements.txt (line 5)) Downloading myst_parser-4.0.1-py3-none-any.whl.metadata (5.5 kB) Collecting sphinx-autobuild (from -r docs/requirements.txt (line 6)) Downloading sphinx_autobuild-2025.8.25-py3-none-any.whl.metadata (8.5 kB) Collecting sphinx-design (from -r docs/requirements.txt (line 7)) Downloading sphinx_design-0.7.0-py3-none-any.whl.metadata (5.5 kB) Collecting sphinx-notfound-page (from -r docs/requirements.txt (line 8)) Downloading sphinx_notfound_page-1.1.0-py3-none-any.whl.metadata (2.9 kB) Collecting sphinx-reredirects (from -r docs/requirements.txt (line 9)) Downloading sphinx_reredirects-1.1.0-py3-none-any.whl.metadata (4.7 kB) Collecting sphinx-tabs (from -r docs/requirements.txt (line 10)) Downloading sphinx_tabs-3.5.0-py3-none-any.whl.metadata (6.6 kB) Collecting sphinxcontrib-jquery (from -r docs/requirements.txt (line 11)) Downloading sphinxcontrib_jquery-4.1-py2.py3-none-any.whl.metadata (2.6 kB) Collecting sphinxext-opengraph (from -r docs/requirements.txt (line 12)) Downloading sphinxext_opengraph-0.13.0-py3-none-any.whl.metadata (2.7 kB) Collecting sphinx-rerediraffe (from -r docs/requirements.txt (line 13)) Downloading sphinx_rerediraffe-0.0.3-py3-none-any.whl.metadata (3.2 kB) Collecting sphinx-config-options>=0.1.0 (from -r docs/requirements.txt (line 16)) Downloading sphinx_config_options-0.1.1-py3-none-any.whl.metadata (3.1 kB) Collecting sphinx-contributor-listing>=0.1.0 (from -r docs/requirements.txt (line 17)) Downloading sphinx_contributor_listing-0.1.0-py3-none-any.whl.metadata (2.7 kB) Collecting sphinx-filtered-toctree>=0.1.0 (from -r docs/requirements.txt (line 18)) Downloading sphinx_filtered_toctree-0.1.0-py3-none-any.whl.metadata (1.8 kB) Collecting sphinx-related-links>=0.1.2 (from -r docs/requirements.txt (line 19)) Downloading sphinx_related_links-0.1.2-py3-none-any.whl.metadata (2.5 kB) Collecting sphinx-roles>=0.1.0 (from -r docs/requirements.txt (line 20)) Downloading sphinx_roles-0.1.0-py3-none-any.whl.metadata (1.5 kB) Collecting sphinx-terminal>=1.0.2 (from -r docs/requirements.txt (line 21)) Downloading sphinx_terminal-1.0.3-py3-none-any.whl.metadata (2.9 kB) Collecting sphinx-ubuntu-images>=0.1.0 (from -r docs/requirements.txt (line 22)) Downloading sphinx_ubuntu_images-0.2.0-py3-none-any.whl.metadata (4.5 kB) Collecting sphinx-youtube-links>=0.1.0 (from -r docs/requirements.txt (line 23)) Downloading sphinx_youtube_links-0.1.0-py3-none-any.whl.metadata (1.5 kB) Requirement already satisfied: packaging in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from -r docs/requirements.txt (line 26)) (26.2) Collecting sphinx-last-updated-by-git (from -r docs/requirements.txt (line 28)) Downloading sphinx_last_updated_by_git-0.3.8-py3-none-any.whl.metadata (7.1 kB) Collecting sphinx-sitemap (from -r docs/requirements.txt (line 29)) Downloading sphinx_sitemap-2.9.0-py3-none-any.whl.metadata (3.4 kB) Collecting sphinxcontrib-mermaid (from -r docs/requirements.txt (line 30)) Downloading sphinxcontrib_mermaid-2.0.1-py3-none-any.whl.metadata (2.4 kB) Collecting sphinx-new-tab-link (from -r docs/requirements.txt (line 31)) Downloading sphinx_new_tab_link-0.8.1-py3-none-any.whl.metadata (3.7 kB) Collecting rst2html (from -r docs/requirements.txt (line 34)) Downloading rst2html-2020.7.4.tar.gz (1.5 kB) Installing build dependencies: started Installing build dependencies: finished with status 'done' Getting requirements to build wheel: started Getting requirements to build wheel: finished with status 'done' Preparing metadata (pyproject.toml): started Preparing metadata (pyproject.toml): finished with status 'done' Collecting vale (from -r docs/requirements.txt (line 35)) Downloading vale-3.13.0.0-py3-none-any.whl.metadata (3.0 kB) Collecting sphinxcontrib-svg2pdfconverter[CairoSVG] (from -r docs/requirements.txt (line 27)) Downloading sphinxcontrib_svg2pdfconverter-2.1.0-py3-none-any.whl.metadata (3.3 kB) Requirement already satisfied: Sphinx>=7.1.2 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (9.0.4) Collecting furo (from canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading furo-2025.12.19-py3-none-any.whl.metadata (4.9 kB) Collecting linkify-it-py (from canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading linkify_it_py-2.1.0-py3-none-any.whl.metadata (8.5 kB) Collecting docutils<0.22,>=0.19 (from myst-parser~=4.0->-r docs/requirements.txt (line 5)) Downloading docutils-0.21.2-py3-none-any.whl.metadata (2.8 kB) Requirement already satisfied: jinja2 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from myst-parser~=4.0->-r docs/requirements.txt (line 5)) (3.1.6) Collecting markdown-it-py~=3.0 (from myst-parser~=4.0->-r docs/requirements.txt (line 5)) Downloading markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB) Collecting mdit-py-plugins>=0.4.1,~=0.4 (from myst-parser~=4.0->-r docs/requirements.txt (line 5)) Downloading mdit_py_plugins-0.5.0-py3-none-any.whl.metadata (2.8 kB) Collecting pyyaml (from myst-parser~=4.0->-r docs/requirements.txt (line 5)) Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (2.4 kB) Collecting Sphinx>=7.1.2 (from canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading sphinx-8.2.3-py3-none-any.whl.metadata (7.0 kB) Collecting mdurl~=0.1 (from markdown-it-py~=3.0->myst-parser~=4.0->-r docs/requirements.txt (line 5)) Downloading mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB) Requirement already satisfied: sphinxcontrib-applehelp>=1.0.7 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.0.0) Requirement already satisfied: sphinxcontrib-devhelp>=1.0.6 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.0.0) Requirement already satisfied: sphinxcontrib-htmlhelp>=2.0.6 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.1.0) Requirement already satisfied: sphinxcontrib-jsmath>=1.0.1 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (1.0.1) Requirement already satisfied: sphinxcontrib-qthelp>=1.0.6 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.0.0) Requirement already satisfied: sphinxcontrib-serializinghtml>=1.1.9 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.0.0) Requirement already satisfied: Pygments>=2.17 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.20.0) Requirement already satisfied: snowballstemmer>=2.2 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (3.0.1) Requirement already satisfied: babel>=2.13 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.18.0) Requirement already satisfied: alabaster>=0.7.14 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (1.0.0) Requirement already satisfied: imagesize>=1.3 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.0.0) Requirement already satisfied: requests>=2.30.0 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.33.1) Collecting roman-numerals-py>=1.0.0 (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading roman_numerals_py-4.1.0-py3-none-any.whl.metadata (561 bytes) Collecting colorama>=0.4.6 (from sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) Collecting starlette>=0.35 (from sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading starlette-1.0.0-py3-none-any.whl.metadata (6.3 kB) Collecting uvicorn>=0.25 (from sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading uvicorn-0.46.0-py3-none-any.whl.metadata (6.7 kB) Collecting watchfiles>=0.20 (from sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading watchfiles-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.9 kB) Collecting websockets>=11 (from sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.metadata (6.8 kB) Collecting Sphinx>=7.1.2 (from canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading sphinx-7.4.7-py3-none-any.whl.metadata (6.1 kB) Collecting alabaster~=0.7.14 (from Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading alabaster-0.7.16-py3-none-any.whl.metadata (2.9 kB) Collecting GitPython (from sphinx-contributor-listing>=0.1.0->-r docs/requirements.txt (line 17)) Downloading gitpython-3.1.49-py3-none-any.whl.metadata (14 kB) Collecting beautifulsoup4 (from sphinx-related-links>=0.1.2->-r docs/requirements.txt (line 19)) Downloading beautifulsoup4-4.14.3-py3-none-any.whl.metadata (3.8 kB) Collecting sphinx-copybutton>=0.5.2 (from sphinx-terminal>=1.0.2->-r docs/requirements.txt (line 21)) Downloading sphinx_copybutton-0.5.2-py3-none-any.whl.metadata (3.2 kB) Collecting cairosvg>=1.0 (from sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading cairosvg-2.9.0-py3-none-any.whl.metadata (2.7 kB) Collecting sphinxcontrib-extdevhelper-kasane (from sphinx-new-tab-link->-r docs/requirements.txt (line 31)) Downloading sphinxcontrib_extdevhelper_kasane-0.2.1-py3-none-any.whl.metadata (1.6 kB) Collecting cairocffi (from cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading cairocffi-1.7.1-py3-none-any.whl.metadata (3.3 kB) Collecting cssselect2 (from cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading cssselect2-0.9.0-py3-none-any.whl.metadata (2.9 kB) Collecting defusedxml (from cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading defusedxml-0.7.1-py2.py3-none-any.whl.metadata (32 kB) Collecting pillow (from cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.metadata (8.8 kB) Collecting tinycss2 (from cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading tinycss2-1.5.1-py3-none-any.whl.metadata (3.0 kB) Requirement already satisfied: MarkupSafe>=2.0 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from jinja2->myst-parser~=4.0->-r docs/requirements.txt (line 5)) (3.0.3) Requirement already satisfied: charset_normalizer<4,>=2 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from requests>=2.30.0->Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (3.4.7) Requirement already satisfied: idna<4,>=2.5 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from requests>=2.30.0->Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (3.13) Requirement already satisfied: urllib3<3,>=1.26 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from requests>=2.30.0->Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2.6.3) Requirement already satisfied: certifi>=2023.5.7 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from requests>=2.30.0->Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (2026.4.22) Collecting anyio<5,>=3.6.2 (from starlette>=0.35->sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading anyio-4.13.0-py3-none-any.whl.metadata (4.5 kB) Collecting typing-extensions>=4.10.0 (from starlette>=0.35->sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading typing_extensions-4.15.0-py3-none-any.whl.metadata (3.3 kB) Collecting click>=7.0 (from uvicorn>=0.25->sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading click-8.3.3-py3-none-any.whl.metadata (2.6 kB) Collecting h11>=0.8 (from uvicorn>=0.25->sphinx-autobuild->-r docs/requirements.txt (line 6)) Downloading h11-0.16.0-py3-none-any.whl.metadata (8.3 kB) Collecting soupsieve>=1.6.1 (from beautifulsoup4->sphinx-related-links>=0.1.2->-r docs/requirements.txt (line 19)) Downloading soupsieve-2.8.3-py3-none-any.whl.metadata (4.6 kB) Collecting cffi>=1.1.0 (from cairocffi->cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (2.6 kB) Collecting pycparser (from cffi>=1.1.0->cairocffi->cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading pycparser-3.0-py3-none-any.whl.metadata (8.2 kB) Collecting webencodings (from cssselect2->cairosvg>=1.0->sphinxcontrib-svg2pdfconverter[CairoSVG]->-r docs/requirements.txt (line 27)) Downloading webencodings-0.5.1-py2.py3-none-any.whl.metadata (2.1 kB) Collecting sphinx-basic-ng>=1.0.0.beta2 (from furo->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading sphinx_basic_ng-1.0.0b2-py3-none-any.whl.metadata (1.5 kB) Collecting accessible-pygments>=0.0.5 (from furo->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading accessible_pygments-0.0.5-py3-none-any.whl.metadata (10 kB) Collecting gitdb<5,>=4.0.1 (from GitPython->sphinx-contributor-listing>=0.1.0->-r docs/requirements.txt (line 17)) Downloading gitdb-4.0.12-py3-none-any.whl.metadata (1.2 kB) Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->GitPython->sphinx-contributor-listing>=0.1.0->-r docs/requirements.txt (line 17)) Downloading smmap-5.0.3-py3-none-any.whl.metadata (4.6 kB) Collecting uc-micro-py (from linkify-it-py->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) Downloading uc_micro_py-2.0.0-py3-none-any.whl.metadata (2.2 kB) Requirement already satisfied: roman-numerals==4.1.0 in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/envs/8.4/lib/python3.11/site-packages (from roman-numerals-py>=1.0.0->Sphinx>=7.1.2->canonical-sphinx~=0.6->-r docs/requirements.txt (line 2)) (4.1.0) Downloading canonical_sphinx-0.6.0-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 92.4 MB/s 0:00:00 Downloading myst_parser-4.0.1-py3-none-any.whl (84 kB) Downloading docutils-0.21.2-py3-none-any.whl (587 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 587.4/587.4 kB 977.4 MB/s 0:00:00 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) Downloading mdit_py_plugins-0.5.0-py3-none-any.whl (57 kB) Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) Downloading sphinx_autobuild-2025.8.25-py3-none-any.whl (12 kB) Downloading sphinx_design-0.7.0-py3-none-any.whl (2.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.2/2.2 MB 280.8 MB/s 0:00:00 Downloading sphinx_notfound_page-1.1.0-py3-none-any.whl (8.2 kB) Downloading sphinx_reredirects-1.1.0-py3-none-any.whl (6.4 kB) Downloading sphinx_tabs-3.5.0-py3-none-any.whl (9.9 kB) Downloading sphinxcontrib_jquery-4.1-py2.py3-none-any.whl (121 kB) Downloading sphinxext_opengraph-0.13.0-py3-none-any.whl (1.0 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 1.1 GB/s 0:00:00 Downloading sphinx_rerediraffe-0.0.3-py3-none-any.whl (8.1 kB) Downloading sphinx_config_options-0.1.1-py3-none-any.whl (23 kB) Downloading sphinx-7.4.7-py3-none-any.whl (3.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.4/3.4 MB 223.3 MB/s 0:00:00 Downloading alabaster-0.7.16-py3-none-any.whl (13 kB) Downloading sphinx_contributor_listing-0.1.0-py3-none-any.whl (19 kB) Downloading sphinx_filtered_toctree-0.1.0-py3-none-any.whl (16 kB) Downloading sphinx_related_links-0.1.2-py3-none-any.whl (19 kB) Downloading sphinx_roles-0.1.0-py3-none-any.whl (17 kB) Downloading sphinx_terminal-1.0.3-py3-none-any.whl (20 kB) Downloading sphinx_ubuntu_images-0.2.0-py3-none-any.whl (29 kB) Downloading sphinx_youtube_links-0.1.0-py3-none-any.whl (17 kB) Downloading sphinxcontrib_svg2pdfconverter-2.1.0-py3-none-any.whl (9.3 kB) Downloading sphinx_last_updated_by_git-0.3.8-py3-none-any.whl (8.6 kB) Downloading sphinx_sitemap-2.9.0-py3-none-any.whl (6.2 kB) Downloading sphinxcontrib_mermaid-2.0.1-py3-none-any.whl (14 kB) Downloading sphinx_new_tab_link-0.8.1-py3-none-any.whl (5.6 kB) Downloading vale-3.13.0.0-py3-none-any.whl (5.9 kB) Downloading cairosvg-2.9.0-py3-none-any.whl (45 kB) Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) Downloading sphinx_copybutton-0.5.2-py3-none-any.whl (13 kB) Downloading starlette-1.0.0-py3-none-any.whl (72 kB) Downloading anyio-4.13.0-py3-none-any.whl (114 kB) Downloading typing_extensions-4.15.0-py3-none-any.whl (44 kB) Downloading uvicorn-0.46.0-py3-none-any.whl (70 kB) Downloading click-8.3.3-py3-none-any.whl (110 kB) Downloading h11-0.16.0-py3-none-any.whl (37 kB) Downloading watchfiles-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456 kB) Downloading websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (184 kB) Downloading beautifulsoup4-4.14.3-py3-none-any.whl (107 kB) Downloading soupsieve-2.8.3-py3-none-any.whl (37 kB) Downloading cairocffi-1.7.1-py3-none-any.whl (75 kB) Downloading cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (215 kB) Downloading cssselect2-0.9.0-py3-none-any.whl (15 kB) Downloading defusedxml-0.7.1-py2.py3-none-any.whl (25 kB) Downloading furo-2025.12.19-py3-none-any.whl (339 kB) Downloading accessible_pygments-0.0.5-py3-none-any.whl (1.4 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.4/1.4 MB 205.7 MB/s 0:00:00 Downloading sphinx_basic_ng-1.0.0b2-py3-none-any.whl (22 kB) Downloading gitpython-3.1.49-py3-none-any.whl (212 kB) Downloading gitdb-4.0.12-py3-none-any.whl (62 kB) Downloading smmap-5.0.3-py3-none-any.whl (24 kB) Downloading linkify_it_py-2.1.0-py3-none-any.whl (19 kB) Downloading pillow-12.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (7.1 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.1/7.1 MB 427.3 MB/s 0:00:00 Downloading pycparser-3.0-py3-none-any.whl (48 kB) Downloading pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (806 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 806.6/806.6 kB 993.7 MB/s 0:00:00 Downloading sphinxcontrib_extdevhelper_kasane-0.2.1-py3-none-any.whl (3.9 kB) Downloading tinycss2-1.5.1-py3-none-any.whl (28 kB) Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) Downloading uc_micro_py-2.0.0-py3-none-any.whl (6.4 kB) Building wheels for collected packages: rst2html Building wheel for rst2html (pyproject.toml): started Building wheel for rst2html (pyproject.toml): finished with status 'done' Created wheel for rst2html: filename=rst2html-2020.7.4-py3-none-any.whl size=1472 sha256=d2dadf128c1425da78f9596af445f97ad40b3b33a2caf0dbb16155a92aa07b06 Stored in directory: /tmp/pip-ephem-wheel-cache-jmk0mzjx/wheels/39/db/0e/0697082eb1b53bdad9f5019b5a590c54e0ec7aac2ec19c6360 Successfully built rst2html Installing collected packages: webencodings, websockets, vale, uc-micro-py, typing-extensions, tinycss2, soupsieve, smmap, pyyaml, pycparser, pillow, mdurl, h11, docutils, defusedxml, colorama, click, alabaster, accessible-pygments, uvicorn, Sphinx, rst2html, markdown-it-py, linkify-it-py, gitdb, cssselect2, cffi, beautifulsoup4, anyio, watchfiles, starlette, sphinxext-opengraph, sphinxcontrib-svg2pdfconverter, sphinxcontrib-mermaid, sphinxcontrib-jquery, sphinxcontrib-extdevhelper-kasane, sphinx-youtube-links, sphinx-ubuntu-images, sphinx-tabs, sphinx-roles, sphinx-reredirects, sphinx-rerediraffe, sphinx-related-links, sphinx-notfound-page, sphinx-last-updated-by-git, sphinx-filtered-toctree, sphinx-design, sphinx-copybutton, sphinx-config-options, sphinx-basic-ng, mdit-py-plugins, GitPython, cairocffi, sphinx-terminal, sphinx-sitemap, sphinx-new-tab-link, sphinx-contributor-listing, sphinx-autobuild, myst-parser, furo, cairosvg, canonical-sphinx Attempting uninstall: docutils Found existing installation: docutils 0.22.4 Uninstalling docutils-0.22.4: Successfully uninstalled docutils-0.22.4 Attempting uninstall: alabaster Found existing installation: alabaster 1.0.0 Uninstalling alabaster-1.0.0: Successfully uninstalled alabaster-1.0.0 Attempting uninstall: Sphinx Found existing installation: Sphinx 9.0.4 Uninstalling Sphinx-9.0.4: Successfully uninstalled Sphinx-9.0.4 Successfully installed GitPython-3.1.49 Sphinx-7.4.7 accessible-pygments-0.0.5 alabaster-0.7.16 anyio-4.13.0 beautifulsoup4-4.14.3 cairocffi-1.7.1 cairosvg-2.9.0 canonical-sphinx-0.6.0 cffi-2.0.0 click-8.3.3 colorama-0.4.6 cssselect2-0.9.0 defusedxml-0.7.1 docutils-0.21.2 furo-2025.12.19 gitdb-4.0.12 h11-0.16.0 linkify-it-py-2.1.0 markdown-it-py-3.0.0 mdit-py-plugins-0.5.0 mdurl-0.1.2 myst-parser-4.0.1 pillow-12.2.0 pycparser-3.0 pyyaml-6.0.3 rst2html-2020.7.4 smmap-5.0.3 soupsieve-2.8.3 sphinx-autobuild-2025.8.25 sphinx-basic-ng-1.0.0b2 sphinx-config-options-0.1.1 sphinx-contributor-listing-0.1.0 sphinx-copybutton-0.5.2 sphinx-design-0.7.0 sphinx-filtered-toctree-0.1.0 sphinx-last-updated-by-git-0.3.8 sphinx-new-tab-link-0.8.1 sphinx-notfound-page-1.1.0 sphinx-related-links-0.1.2 sphinx-rerediraffe-0.0.3 sphinx-reredirects-1.1.0 sphinx-roles-0.1.0 sphinx-sitemap-2.9.0 sphinx-tabs-3.5.0 sphinx-terminal-1.0.3 sphinx-ubuntu-images-0.2.0 sphinx-youtube-links-0.1.0 sphinxcontrib-extdevhelper-kasane-0.2.1 sphinxcontrib-jquery-4.1 sphinxcontrib-mermaid-2.0.1 sphinxcontrib-svg2pdfconverter-2.1.0 sphinxext-opengraph-0.13.0 starlette-1.0.0 tinycss2-1.5.1 typing-extensions-4.15.0 uc-micro-py-2.0.0 uvicorn-0.46.0 vale-3.13.0.0 watchfiles-1.1.1 webencodings-0.5.1 websockets-16.0 [rtd-command-info] start-time: 2026-04-30T12:27:10.096763Z, end-time: 2026-04-30T12:27:10.134842Z, duration: 0, exit-code: 0 cat docs/conf.py import datetime import os import yaml # Configuration for the Sphinx documentation builder. # All configuration specific to your project should be done in this file. # # If you're new to Sphinx and don't want any advanced or custom features, # just go through the items marked 'TODO'. # # A complete list of built-in Sphinx configuration values: # https://www.sphinx-doc.org/en/master/usage/configuration.html # # Our starter pack uses the custom Canonical Sphinx extension # to keep all documentation based on it consistent and on brand: # https://github.com/canonical/canonical-sphinx ####################### # Project information # ####################### # Project name # # TODO: Update with the official name of your project or product project = "Charmed MySQL" author = "Canonical Ltd." # The year in the copyright statement defaults to the current year, so # individual document versions show when they were built. # TODO: If the date must be a range, like in a software license, replace # 2026 with the starting year of development and use: # copyright = f"2025-{datetime.date.today().year}" # copyright = f"{datetime.date.today().year}" # Sidebar documentation title; best kept reasonably short # # TODO: To include a version number, add it here (hardcoded or automated). # # TODO: To disable the title, set to an empty string. html_title = project + " 8.4" + " documentation" # Documentation website URL # # TODO: Update with the official URL of your docs or leave empty if unsure. # # NOTE: The Open Graph Protocol (OGP) enhances page display in a social graph # and is used by social media platforms; see https://ogp.me/ ogp_site_url = "https://canonical-charmed-mysql.readthedocs-hosted.com/" # Preview name of the documentation website # # TODO: To use a different name for the project in previews, update as needed. ogp_site_name = project # Preview image URL # # TODO: To customise the preview image, update as needed. ogp_image = "https://assets.ubuntu.com/v1/cc828679-docs_illustration.svg" # Product favicon; shown in bookmarks, browser tabs, etc. # TODO: To customise the favicon, uncomment and update as needed. # html_favicon = '.sphinx/_static/favicon.png' # Dictionary of values to pass into the Sphinx context for all pages: # https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_context html_context = { # Product page URL; can be different from product docs URL # # TODO: Change to your product website URL, # dropping the 'https://' prefix, e.g. 'ubuntu.com/lxd'. # # TODO: If there's no such website, # remove the {{ product_page }} link from the page header template # (usually .sphinx/_templates/header.html; also, see README.rst). "product_page": "canonical.com/data/mysql", # Product tag image; the orange part of your logo, shown in the page header # # TODO: To add a tag image, uncomment and update as needed. # 'product_tag': '_static/tag.png', # Your Discourse instance URL # # TODO: Change to your Discourse instance URL or leave empty. # # NOTE: If set, adding ':discourse: 123' to an .rst file # will add a link to Discourse topic 123 at the bottom of the page. "discourse": "https://discourse.charmhub.io", # Your Mattermost channel URL # # TODO: Change to your Mattermost channel URL or leave empty. "mattermost": "", # Your Matrix channel URL # # TODO: Change to your Matrix channel URL or leave empty. "matrix": "https://matrix.to/#/#charmhub-data-platform:ubuntu.com", # Your documentation GitHub repository URL # # TODO: Change to your documentation GitHub repository URL or leave empty. # # NOTE: If set, links for viewing the documentation source files # and creating GitHub issues are added at the bottom of each page. "github_url": "https://github.com/canonical/mysql-operators", # Docs branch in the repo; used in links for viewing the source files # # TODO: To customise the branch, uncomment and update as needed. 'repo_default_branch': '8.4/edge', # Docs location in the repo; used in links for viewing the source files "repo_folder": "/docs/", # TODO: To enable or disable the Previous / Next buttons at the bottom of pages # Valid options: none, prev, next, both "sequential_nav": "none", # TODO: To enable listing contributors on individual pages, set to True "display_contributors": True, # Required for feedback button 'github_issues': 'enabled', # Inherit the author value "author": author, # The starter pack uses CC-BY-SA as the license # # TODO: If your docs need another license, specify it instead of 'CC-BY-SA'. # For the name, we recommend using the standard shorthand identifier from # https://spdx.org/licenses # # For the URL, link directly to the license statement, typically found on # the product's home page or in its GitHub project. # # TODO: If your documentation is a part of the code repository of your project, # it inherits the code license instead; specify it instead of 'CC-BY-SA'. "license": { "name": "Apache License 2.0", "url": "https://github.com/canonical/mysql-operators/blob/8.4/edge/LICENSE", }, } # html_extra_path = [] # Allow opt-in build of the OpenAPI "Hello" example so docs stay clean by default. # if os.getenv("OPENAPI", ""): # tags.add("openapi") # html_extra_path.append("how-to/assets/openapi.yaml") # TODO: To enable the edit button on pages, uncomment and change the link to a # public repository on GitHub or Launchpad. Any of the following link domains # are accepted: # - https://github.com/example-org/example" # - https://launchpad.net/example # - https://git.launchpad.net/example # html_theme_options = { 'source_edit_link': 'https://github.com/canonical/mysql-operators', } # Project slug; see https://meta.discourse.org/t/what-is-category-slug/87897 # # TODO: If your documentation is hosted on https://docs.ubuntu.com/, # uncomment and update as needed. # slug = '' ####################### # Sitemap configuration: https://sphinx-sitemap.readthedocs.io/ ####################### # Use RTD canonical URL to ensure duplicate pages have a specific canonical URL html_baseurl = os.environ.get("READTHEDOCS_CANONICAL_URL", "/") # sphinx-sitemap uses html_baseurl to generate the full URL for each page: sitemap_url_scheme = '{link}' # Include `lastmod` dates in the sitemap: sitemap_show_lastmod = True # Exclude generated pages from the sitemap: sitemap_excludes = [ '404/', 'genindex/', 'search/', ] # TODO: Add more pages to sitemap_excludes if needed. Wildcards are supported. # For example, to exclude module pages generated by autodoc, add '_modules/*'. ################################ # Template and asset locations # ################################ # html_static_path = ["_static"] templates_path = ["_templates"] ############# # Redirects # ############# # Add redirects to the 'redirects.txt' file # https://sphinxext-rediraffe.readthedocs.io/en/latest/ # To set up redirects in the Read the Docs project dashboard: # https://docs.readthedocs.io/en/stable/guides/redirects.html rediraffe_redirects = "redirects.txt" # Strips '/index.html' from destination URLs when building with 'dirhtml' rediraffe_dir_only = True ########################### # Link checker exceptions # ########################### # A regex list of URLs that are ignored by 'make linkcheck' # # TODO: Remove or adjust the ACME entry after you update the contributing guide linkcheck_ignore = [ "http://127.0.0.1:8000", "https://github.com/canonical/ACME/*", "https://matrix.to/*", "https://portal.azure.com/*", "https://dev.mysql.com/*", "https://www.mysql.com/*", "https://www.terraform.io/*", ] # A regex list of URLs where anchors are ignored by 'make linkcheck' linkcheck_anchors_ignore_for_url = [r"https://github\.com/.*"] # give linkcheck multiple tries on failure linkcheck_timeout = 90 linkcheck_retries = 3 ######################## # Configuration extras # ######################## # Custom MyST syntax extensions; see # https://myst-parser.readthedocs.io/en/latest/syntax/optional.html # # NOTE: By default, the following MyST extensions are enabled: # substitution, deflist, linkify myst_enable_extensions = set() # Enables MyST references via standard anchors myst_heading_anchors = 3 # Custom Sphinx extensions; see # https://www.sphinx-doc.org/en/master/usage/extensions/index.html # NOTE: The canonical_sphinx extension is required for the starter pack. extensions = [ "canonical_sphinx", "notfound.extension", "sphinx_design", "sphinx_reredirects", "sphinx_tabs.tabs", "sphinxcontrib.jquery", "sphinxext.opengraph", "sphinx_config_options", "sphinx_contributor_listing", "sphinx_filtered_toctree", "sphinx_related_links", "sphinx_roles", "sphinx_terminal", "sphinx_ubuntu_images", "sphinx_youtube_links", "sphinxcontrib.cairosvgconverter", "sphinx_last_updated_by_git", "sphinx.ext.intersphinx", "sphinx_sitemap", "sphinx_new_tab_link", "sphinxcontrib.mermaid" ] new_tab_link_show_external_link_icon = True # Excludes files or directories from processing exclude_patterns = [ ".venv*", ] # Adds custom CSS files, located under 'html_static_path' html_css_files = [ "https://assets.ubuntu.com/v1/d86746ef-cookie_banner.css", ] # Adds custom JavaScript files, located under 'html_static_path' html_js_files = [ "https://assets.ubuntu.com/v1/287a5e8f-bundle.js", ] # Specifies a reST snippet to be appended to each .rst file rst_epilog = """ .. include:: /reuse/links.txt .. include:: /reuse/substitutions.txt """ # Feedback button at the top; enabled by default # # TODO: To disable the button, uncomment this. # disable_feedback_button = True # Your manpage URL # # TODO: To enable manpage links, uncomment and replace {codename} with required # release, preferably an LTS release (e.g. noble). Do *not* substitute # {section} or {page}; these will be replaced by sphinx at build time # # NOTE: If set, adding ':manpage:' to an .rst file # adds a link to the corresponding man section at the bottom of the page. # manpages_url = 'https://manpages.ubuntu.com/manpages/{codename}/en/' + \ # 'man{section}/{page}.{section}.html' # Specifies a reST snippet to be prepended to each .rst file # This defines a :center: role that centers table cell content. # This defines a :h2: role that styles content for use with PDF generation. rst_prolog = """ .. role:: center :class: align-center .. role:: h2 :class: hclass2 .. role:: woke-ignore :class: woke-ignore .. role:: vale-ignore :class: vale-ignore """ # Workaround for https://github.com/canonical/canonical-sphinx/issues/34 if "discourse_prefix" not in html_context and "discourse" in html_context: html_context["discourse_prefix"] = f"{html_context['discourse']}/t/" # Workaround for substitutions.yaml if os.path.exists('./reuse/substitutions.yaml'): with open('./reuse/substitutions.yaml', 'r') as fd: myst_substitutions = yaml.safe_load(fd.read()) # Add configuration for intersphinx mapping # intersphinx_mapping = {} [rtd-command-info] start-time: 2026-04-30T12:27:10.219155Z, end-time: 2026-04-30T12:27:17.884916Z, duration: 7, exit-code: 0 python -m sphinx -T -W --keep-going -b dirhtml -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/html Running Sphinx v7.4.7 loading translations [en]... done sphinx_design found. sphinx_design is now configured. sphinx_tabs.tabs found. sphinx_tabs.tabs is now configured. sphinx_reredirects found. sphinx_reredirects is now configured. canonical.youtube-links not found. canonical.youtube-links will not be configured. canonical.related-links not found. canonical.related-links will not be configured. canonical.custom-rst-roles not found. canonical.custom-rst-roles will not be configured. canonical.terminal-output not found. canonical.terminal-output will not be configured. canonical.contributor-listing not found. canonical.contributor-listing will not be configured. sphinx_copybutton found. sphinx_copybutton is now configured. sphinxext.opengraph found. sphinxext.opengraph is now configured. sphinxcontrib.jquery found. sphinxcontrib.jquery is now configured. notfound.extension found. notfound.extension is now configured. sphinxcontrib.cairosvgconverter found. sphinxcontrib.cairosvgconverter is now configured. sphinx_last_updated_by_git found. sphinx_last_updated_by_git is now configured. matplotlib is not installed, social cards will not be generated making output directory... done myst v4.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'substitution', 'linkify', 'deflist'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_sort=True, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) building [mo]: targets for 0 po files that are out of date writing output... building [dirhtml]: targets for 92 source files that are out of date updating environment: [new config] 92 added, 0 changed, 0 removed reading sources... [ 1%] explanation/architecture reading sources... [ 2%] explanation/flowcharts reading sources... [ 3%] explanation/index reading sources... [ 4%] explanation/interfaces-and-endpoints reading sources... [ 5%] explanation/logs/audit-logs reading sources... [ 7%] explanation/logs/index reading sources... [ 8%] explanation/roles reading sources... [ 9%] explanation/security/cryptography reading sources... [ 10%] explanation/security/index reading sources... [ 11%] explanation/self-healing reading sources... [ 12%] explanation/users reading sources... [ 13%] how-to/access-mysql-shell reading sources... [ 14%] how-to/back-up-and-restore/configure-s3-aws reading sources... [ 15%] how-to/back-up-and-restore/configure-s3-radosgw reading sources... [ 16%] how-to/back-up-and-restore/create-a-backup reading sources... [ 17%] how-to/back-up-and-restore/index reading sources... [ 18%] how-to/back-up-and-restore/migrate-a-cluster reading sources... [ 20%] how-to/back-up-and-restore/restore-a-backup reading sources... [ 21%] how-to/cluster-cluster-replication/clients reading sources... [ 22%] how-to/cluster-cluster-replication/deploy reading sources... [ 23%] how-to/cluster-cluster-replication/index reading sources... [ 24%] how-to/cluster-cluster-replication/recovery reading sources... [ 25%] how-to/cluster-cluster-replication/removal reading sources... [ 26%] how-to/cluster-cluster-replication/switchover-failover reading sources... [ 27%] how-to/contribute reading sources... [ 28%] how-to/data-migration/index reading sources... [ 29%] how-to/data-migration/migrate-data-from-8.0-to-8.4 reading sources... [ 30%] how-to/data-migration/migrate-data-via-backup-restore reading sources... [ 32%] how-to/data-migration/migrate-data-via-mydumper reading sources... [ 33%] how-to/data-migration/migrate-data-via-mysqldump reading sources... [ 34%] how-to/data-migration/migrate-data-via-mysqlsh reading sources... [ 35%] how-to/deploy/airgapped reading sources... [ 36%] how-to/deploy/index reading sources... [ 37%] how-to/deploy/juju-spaces reading sources... [ 38%] how-to/deploy/juju-storage reading sources... [ 39%] how-to/deploy/k8s-clouds/aks reading sources... [ 40%] how-to/deploy/k8s-clouds/canonical-k8s reading sources... [ 41%] how-to/deploy/k8s-clouds/eks reading sources... [ 42%] how-to/deploy/k8s-clouds/gke reading sources... [ 43%] how-to/deploy/k8s-clouds/index reading sources... [ 45%] how-to/deploy/k8s-clouds/microk8s reading sources... [ 46%] how-to/deploy/multi-az/gce reading sources... [ 47%] how-to/deploy/multi-az/gke reading sources... [ 48%] how-to/deploy/multi-az/index reading sources... [ 49%] how-to/deploy/terraform/charm-module reading sources... [ 50%] how-to/deploy/terraform/index reading sources... [ 51%] how-to/deploy/terraform/product-module reading sources... [ 52%] how-to/deploy/vm-clouds/aws-ec2 reading sources... [ 53%] how-to/deploy/vm-clouds/azure reading sources... [ 54%] how-to/deploy/vm-clouds/gce reading sources... [ 55%] how-to/deploy/vm-clouds/index reading sources... [ 57%] how-to/deploy/vm-clouds/lxd reading sources... [ 58%] how-to/deploy/vm-clouds/maas reading sources... [ 59%] how-to/deploy/vm-clouds/sunbeam reading sources... [ 60%] how-to/external-network-access reading sources... [ 61%] how-to/index reading sources... [ 62%] how-to/integrate-with-applications reading sources... [ 63%] how-to/manage-passwords reading sources... [ 64%] how-to/monitoring/enable-alert-rules reading sources... [ 65%] how-to/monitoring/enable-monitoring reading sources... [ 66%] how-to/monitoring/enable-tracing reading sources... [ 67%] how-to/monitoring/index reading sources... [ 68%] how-to/primary-switchover reading sources... [ 70%] how-to/refresh/index reading sources... [ 71%] how-to/refresh/multi-cluster/index reading sources... [ 72%] how-to/refresh/multi-cluster/refresh-multi-cluster reading sources... [ 73%] how-to/refresh/multi-cluster/roll-back-multi-cluster reading sources... [ 74%] how-to/refresh/single-cluster/index reading sources... [ 75%] how-to/refresh/single-cluster/refresh-single-cluster reading sources... [ 76%] how-to/refresh/single-cluster/roll-back-single-cluster reading sources... [ 77%] how-to/refresh/upgrade-juju reading sources... [ 78%] how-to/scale reading sources... [ 79%] how-to/tls/disable-tls reading sources... [ 80%] how-to/tls/enable-tls reading sources... [ 82%] how-to/tls/index reading sources... [ 83%] index reading sources... [ 84%] reference/alert-rules reading sources... [ 85%] reference/charm-statuses reading sources... [ 86%] reference/charm-testing reading sources... [ 87%] reference/contacts reading sources... [ 88%] reference/index reading sources... [ 89%] reference/plugins-extensions reading sources... [ 90%] reference/profiles reading sources... [ 91%] reference/release-notes/index reading sources... [ 92%] reference/release-notes/k8s/index reading sources... [ 93%] reference/release-notes/vm/index reading sources... [ 95%] reference/system-requirements reading sources... [ 96%] reference/troubleshooting/index reading sources... [ 97%] reference/troubleshooting/known-scenarios reading sources... [ 98%] reference/troubleshooting/recover-from-quorum-loss reading sources... [ 99%] reference/troubleshooting/sos-report reading sources... [100%] tutorial getting Git timestamps for source files... [ 4%] explanation getting Git timestamps for source files... [ 9%] explanation/logs getting Git timestamps for source files... [ 13%] explanation/security getting Git timestamps for source files... [ 17%] how-to getting Git timestamps for source files... [ 22%] how-to/back-up-and-restore getting Git timestamps for source files... [ 26%] how-to/cluster-cluster-replication getting Git timestamps for source files... [ 30%] how-to/data-migration getting Git timestamps for source files... [ 35%] how-to/deploy getting Git timestamps for source files... [ 39%] how-to/deploy/k8s-clouds getting Git timestamps for source files... [ 43%] how-to/deploy/multi-az getting Git timestamps for source files... [ 48%] how-to/deploy/terraform getting Git timestamps for source files... [ 52%] how-to/deploy/vm-clouds getting Git timestamps for source files... [ 57%] how-to/monitoring getting Git timestamps for source files... [ 61%] how-to/refresh getting Git timestamps for source files... [ 65%] how-to/refresh/multi-cluster getting Git timestamps for source files... [ 70%] how-to/refresh/single-cluster getting Git timestamps for source files... [ 74%] how-to/tls getting Git timestamps for source files... [ 78%] . getting Git timestamps for source files... [ 83%] reference getting Git timestamps for source files... [ 87%] reference/release-notes getting Git timestamps for source files... [ 91%] reference/release-notes/k8s getting Git timestamps for source files... [ 96%] reference/release-notes/vm getting Git timestamps for source files... [100%] reference/troubleshooting getting Git timestamps for dependencies... [ 50%] how-to/monitoring getting Git timestamps for dependencies... [100%] how-to/refresh/single-cluster looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done copying assets... copying static files... done copying extra files... done copying assets: done writing output... [ 1%] explanation/architecture writing output... [ 2%] explanation/flowcharts writing output... [ 3%] explanation/index writing output... [ 4%] explanation/interfaces-and-endpoints writing output... [ 5%] explanation/logs/audit-logs writing output... [ 7%] explanation/logs/index writing output... [ 8%] explanation/roles writing output... [ 9%] explanation/security/cryptography writing output... [ 10%] explanation/security/index writing output... [ 11%] explanation/self-healing writing output... [ 12%] explanation/users writing output... [ 13%] how-to/access-mysql-shell writing output... [ 14%] how-to/back-up-and-restore/configure-s3-aws writing output... [ 15%] how-to/back-up-and-restore/configure-s3-radosgw writing output... [ 16%] how-to/back-up-and-restore/create-a-backup writing output... [ 17%] how-to/back-up-and-restore/index writing output... [ 18%] how-to/back-up-and-restore/migrate-a-cluster writing output... [ 20%] how-to/back-up-and-restore/restore-a-backup writing output... [ 21%] how-to/cluster-cluster-replication/clients writing output... [ 22%] how-to/cluster-cluster-replication/deploy writing output... [ 23%] how-to/cluster-cluster-replication/index writing output... [ 24%] how-to/cluster-cluster-replication/recovery writing output... [ 25%] how-to/cluster-cluster-replication/removal writing output... [ 26%] how-to/cluster-cluster-replication/switchover-failover writing output... [ 27%] how-to/contribute writing output... [ 28%] how-to/data-migration/index writing output... [ 29%] how-to/data-migration/migrate-data-from-8.0-to-8.4 writing output... [ 30%] how-to/data-migration/migrate-data-via-backup-restore writing output... [ 32%] how-to/data-migration/migrate-data-via-mydumper writing output... [ 33%] how-to/data-migration/migrate-data-via-mysqldump writing output... [ 34%] how-to/data-migration/migrate-data-via-mysqlsh writing output... [ 35%] how-to/deploy/airgapped writing output... [ 36%] how-to/deploy/index writing output... [ 37%] how-to/deploy/juju-spaces writing output... [ 38%] how-to/deploy/juju-storage writing output... [ 39%] how-to/deploy/k8s-clouds/aks writing output... [ 40%] how-to/deploy/k8s-clouds/canonical-k8s writing output... [ 41%] how-to/deploy/k8s-clouds/eks writing output... [ 42%] how-to/deploy/k8s-clouds/gke writing output... [ 43%] how-to/deploy/k8s-clouds/index writing output... [ 45%] how-to/deploy/k8s-clouds/microk8s writing output... [ 46%] how-to/deploy/multi-az/gce writing output... [ 47%] how-to/deploy/multi-az/gke writing output... [ 48%] how-to/deploy/multi-az/index writing output... [ 49%] how-to/deploy/terraform/charm-module writing output... [ 50%] how-to/deploy/terraform/index writing output... [ 51%] how-to/deploy/terraform/product-module writing output... [ 52%] how-to/deploy/vm-clouds/aws-ec2 writing output... [ 53%] how-to/deploy/vm-clouds/azure writing output... [ 54%] how-to/deploy/vm-clouds/gce writing output... [ 55%] how-to/deploy/vm-clouds/index writing output... [ 57%] how-to/deploy/vm-clouds/lxd writing output... [ 58%] how-to/deploy/vm-clouds/maas writing output... [ 59%] how-to/deploy/vm-clouds/sunbeam writing output... [ 60%] how-to/external-network-access writing output... [ 61%] how-to/index writing output... [ 62%] how-to/integrate-with-applications writing output... [ 63%] how-to/manage-passwords writing output... [ 64%] how-to/monitoring/enable-alert-rules writing output... [ 65%] how-to/monitoring/enable-monitoring writing output... [ 66%] how-to/monitoring/enable-tracing writing output... [ 67%] how-to/monitoring/index writing output... [ 68%] how-to/primary-switchover writing output... [ 70%] how-to/refresh/index writing output... [ 71%] how-to/refresh/multi-cluster/index writing output... [ 72%] how-to/refresh/multi-cluster/refresh-multi-cluster writing output... [ 73%] how-to/refresh/multi-cluster/roll-back-multi-cluster writing output... [ 74%] how-to/refresh/single-cluster/index writing output... [ 75%] how-to/refresh/single-cluster/refresh-single-cluster writing output... [ 76%] how-to/refresh/single-cluster/roll-back-single-cluster writing output... [ 77%] how-to/refresh/upgrade-juju writing output... [ 78%] how-to/scale writing output... [ 79%] how-to/tls/disable-tls writing output... [ 80%] how-to/tls/enable-tls writing output... [ 82%] how-to/tls/index writing output... [ 83%] index writing output... [ 84%] reference/alert-rules writing output... [ 85%] reference/charm-statuses writing output... [ 86%] reference/charm-testing writing output... [ 87%] reference/contacts writing output... [ 88%] reference/index writing output... [ 89%] reference/plugins-extensions writing output... [ 90%] reference/profiles writing output... [ 91%] reference/release-notes/index writing output... [ 92%] reference/release-notes/k8s/index writing output... [ 93%] reference/release-notes/vm/index writing output... [ 95%] reference/system-requirements writing output... [ 96%] reference/troubleshooting/index writing output... [ 97%] reference/troubleshooting/known-scenarios writing output... [ 98%] reference/troubleshooting/recover-from-quorum-loss writing output... [ 99%] reference/troubleshooting/sos-report writing output... [100%] tutorial generating indices... genindex done writing additional pages... search done copying images... [ 33%] how-to/monitoring/alert-rules-grafana.png copying images... [ 67%] how-to/monitoring/pushover-web-client.jpeg copying images... [100%] how-to/monitoring/mysql-vm-trace.png dumping search index in English (code: en)... done dumping object inventory... done sphinx-sitemap: sitemap.xml was generated for URL https://canonical-charmed-mysql.readthedocs-hosted.com/8.4/ in /home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/checkouts/8.4/_readthedocs/html/sitemap.xml build succeeded. The HTML pages are in ../_readthedocs/html. [rtd-command-info] start-time: 2026-04-30T12:27:18.005245Z, end-time: 2026-04-30T12:27:22.676643Z, duration: 4, exit-code: 0 python -m sphinx -T -b latex -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/pdf Running Sphinx v7.4.7 loading translations [en]... done sphinx_design found. sphinx_design is now configured. sphinx_tabs.tabs found. sphinx_tabs.tabs is now configured. sphinx_reredirects found. sphinx_reredirects is now configured. canonical.youtube-links not found. canonical.youtube-links will not be configured. canonical.related-links not found. canonical.related-links will not be configured. canonical.custom-rst-roles not found. canonical.custom-rst-roles will not be configured. canonical.terminal-output not found. canonical.terminal-output will not be configured. canonical.contributor-listing not found. canonical.contributor-listing will not be configured. sphinx_copybutton found. sphinx_copybutton is now configured. sphinxext.opengraph found. sphinxext.opengraph is now configured. sphinxcontrib.jquery found. sphinxcontrib.jquery is now configured. notfound.extension found. notfound.extension is now configured. sphinxcontrib.cairosvgconverter found. sphinxcontrib.cairosvgconverter is now configured. sphinx_last_updated_by_git found. sphinx_last_updated_by_git is now configured. matplotlib is not installed, social cards will not be generated making output directory... done loading pickled environment... done myst v4.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'substitution', 'deflist', 'linkify'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_sort=True, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) building [mo]: targets for 0 po files that are out of date writing output... building [latex]: all documents updating environment: 0 added, 0 changed, 0 removed reading sources... getting Git timestamps for source files... getting Git timestamps for dependencies... looking for now-outdated files... none found copying TeX support files... copying TeX support files... done processing charmedmysql.tex... index tutorial how-to/index how-to/deploy/index how-to/deploy/vm-clouds/index how-to/deploy/vm-clouds/lxd how-to/deploy/vm-clouds/sunbeam how-to/deploy/vm-clouds/maas how-to/deploy/vm-clouds/aws-ec2 how-to/deploy/vm-clouds/gce how-to/deploy/vm-clouds/azure how-to/deploy/k8s-clouds/index how-to/deploy/k8s-clouds/canonical-k8s how-to/deploy/k8s-clouds/microk8s how-to/deploy/k8s-clouds/gke how-to/deploy/k8s-clouds/eks how-to/deploy/k8s-clouds/aks how-to/deploy/terraform/index how-to/deploy/terraform/charm-module how-to/deploy/terraform/product-module how-to/deploy/airgapped how-to/deploy/multi-az/index how-to/deploy/multi-az/gce how-to/deploy/multi-az/gke how-to/deploy/juju-spaces how-to/deploy/juju-storage how-to/integrate-with-applications how-to/scale how-to/manage-passwords how-to/access-mysql-shell how-to/tls/index how-to/tls/enable-tls how-to/tls/disable-tls how-to/external-network-access how-to/primary-switchover how-to/back-up-and-restore/index how-to/back-up-and-restore/configure-s3-aws how-to/back-up-and-restore/configure-s3-radosgw how-to/back-up-and-restore/create-a-backup how-to/back-up-and-restore/restore-a-backup how-to/back-up-and-restore/migrate-a-cluster how-to/monitoring/index how-to/monitoring/enable-monitoring how-to/monitoring/enable-alert-rules how-to/monitoring/enable-tracing how-to/refresh/index how-to/refresh/upgrade-juju how-to/refresh/single-cluster/index how-to/refresh/single-cluster/refresh-single-cluster how-to/refresh/single-cluster/roll-back-single-cluster how-to/refresh/multi-cluster/index how-to/refresh/multi-cluster/refresh-multi-cluster how-to/refresh/multi-cluster/roll-back-multi-cluster how-to/cluster-cluster-replication/index how-to/cluster-cluster-replication/deploy how-to/cluster-cluster-replication/clients how-to/cluster-cluster-replication/switchover-failover how-to/cluster-cluster-replication/recovery how-to/cluster-cluster-replication/removal how-to/data-migration/index how-to/data-migration/migrate-data-from-8.0-to-8.4 how-to/data-migration/migrate-data-via-mysqldump how-to/data-migration/migrate-data-via-mysqlsh how-to/data-migration/migrate-data-via-mydumper how-to/data-migration/migrate-data-via-backup-restore how-to/contribute reference/index reference/release-notes/index reference/release-notes/vm/index reference/release-notes/k8s/index reference/system-requirements reference/profiles reference/charm-testing reference/troubleshooting/index reference/troubleshooting/known-scenarios reference/troubleshooting/recover-from-quorum-loss reference/troubleshooting/sos-report reference/charm-statuses reference/alert-rules reference/plugins-extensions reference/contacts explanation/index explanation/architecture explanation/interfaces-and-endpoints explanation/users explanation/roles explanation/logs/index explanation/logs/audit-logs explanation/self-healing explanation/security/index explanation/security/cryptography explanation/flowcharts resolving references... WARNING: Could not fetch remote image: upload://kyNPhsHr7GHyFouEpp7sxPytb6g.png [No connection adapters were found for 'upload://kyNPhsHr7GHyFouEpp7sxPytb6g.png'] WARNING: Could not fetch remote image: upload://44dY32yFYSybmvypdEgDtj0lFid.png [No connection adapters were found for 'upload://44dY32yFYSybmvypdEgDtj0lFid.png'] WARNING: Could not fetch remote image: upload://g458TLPPqGIISCFHKdfUwXRepeZ.png [No connection adapters were found for 'upload://g458TLPPqGIISCFHKdfUwXRepeZ.png'] WARNING: Could not fetch remote image: upload://putAO5NyHdaeWE6jXI8X1hZHTYv.png [No connection adapters were found for 'upload://putAO5NyHdaeWE6jXI8X1hZHTYv.png'] WARNING: Could not fetch remote image: upload://4t1wS2BwCYgBfrdR1MdOBbUALJ1.png [No connection adapters were found for 'upload://4t1wS2BwCYgBfrdR1MdOBbUALJ1.png'] WARNING: Could not fetch remote image: upload://bB5lCMIHtL1KToftKQVv7z86aoi.png [No connection adapters were found for 'upload://bB5lCMIHtL1KToftKQVv7z86aoi.png'] done writing... WARNING: command 'mmdc' cannot be run (needed for mermaid output), check the mermaid_cmd setting done copying images... [ 11%] https://asciinema.org/a/580608.svg copying images... [ 22%] how-to/monitoring/alert-rules-grafana.png copying images... [ 33%] how-to/monitoring/pushover-web-client.jpeg copying images... [ 44%] how-to/monitoring/mysql-vm-trace.png copying images... [ 56%] https://img.shields.io/badge/%E2%9C%93-brightgreen copying images... [ 67%] https://img.shields.io/badge/critical-red copying images... [ 78%] https://img.shields.io/badge/warning-yellow copying images... [ 89%] https://img.shields.io/badge/info-blue copying images... [100%] https://img.icons8.com/color/20/checkmark--v1.png sphinx-sitemap: No pages generated for sitemap.xml build succeeded, 7 warnings. The LaTeX files are in ../_readthedocs/pdf. Run 'make' in that directory to run these through (pdf)latex (use `make latexpdf' here to do that automatically). [rtd-command-info] start-time: 2026-04-30T12:27:23.309257Z, end-time: 2026-04-30T12:27:23.349814Z, duration: 0, exit-code: 0 cat latexmkrc $latex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; $pdflatex = 'xelatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; $lualatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; $xelatex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; $makeindex = 'internal xindy ' . $ENV{'XINDYOPTS'} . ' %O -o %D %S'; sub xindy { my @args = @_; if (-z $args[-1]) { # create an empty .ind file if .idx is empty open(FH, ">" . $args[-2]); close(FH); return 0; } else { return system("xindy", @args); } } add_cus_dep( "glo", "gls", 0, "makeglo" ); sub makeglo { return system( "makeindex -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); } [rtd-command-info] start-time: 2026-04-30T12:27:23.439888Z, end-time: 2026-04-30T12:27:48.704909Z, duration: 25, exit-code: 0 latexmk -r latexmkrc -pdf -f -dvi- -ps- -jobname=canonical-charmed-mysql -interaction=nonstopmode Use of uninitialized value in concatenation (.) or string at (eval 10) line 1. Use of uninitialized value in concatenation (.) or string at (eval 10) line 2. Use of uninitialized value in concatenation (.) or string at (eval 10) line 3. Use of uninitialized value in concatenation (.) or string at (eval 10) line 4. Use of uninitialized value in concatenation (.) or string at (eval 10) line 5. Latexmk: A user -r option asked me to process an rc file an extra time. Name of file = 'latexmkrc' Abs. path = '/home/docs/checkouts/readthedocs.org/user_builds/canonical-charmed-mysql/checkouts/8.4/_readthedocs/pdf/latexmkrc' I'll not process it Rc files read: /etc/LatexMk latexmkrc Latexmk: This is Latexmk, John Collins, 31 Jan. 2024. Version 4.83. No existing .aux file, so I'll make a simple one, and require run of *latex. Latexmk: applying rule 'pdflatex'... Rule 'pdflatex': Reasons for rerun Category 'other': Rerun of 'pdflatex' forced or previously required: Reason or flag: 'Initial setup' ------------ Run number 1 of rule 'pdflatex' ------------ ------------ Running 'xelatex -interaction=nonstopmode -recorder --jobname="canonical-charmed-mysql" "charmedmysql.tex"' ------------ This is XeTeX, Version 3.141592653-2.6-0.999995 (TeX Live 2023/Debian) (preloaded format=xelatex) restricted \write18 enabled. entering extended mode (./charmedmysql.tex LaTeX2e <2023-11-01> patch level 1 L3 programming layer <2024-01-22> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2023/05/17 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo))) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty Package cmap Warning: pdftex not detected - exiting. ) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xetex.def))) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/polyglossia.sty (/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty) (/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex)))) (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-latex.lde)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-english.ldf) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def) (/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx)) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-xetex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def (/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty)) (./sphinxmessages.sty) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex))) (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered .code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de f)))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet ric.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod e.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari thmetics.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation s.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t ex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex)) ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 .sty) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 .sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty) (/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty (/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex Library (tcolorbox): 'tcbraster.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex Library (tcolorbox): 'tcbskins.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibrarytopaths.code.tex))) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.te x)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex Library (tcolorbox): 'tcbskinsjigsaw.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex Library (tcolorbox): 'tcbbreakable.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pdfcol/pdfcol.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex Library (tcolorbox): 'tcbhooks.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex Library (tcolorbox): 'tcbtheorems.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex Library (tcolorbox): 'tcbfitting.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex Library (tcolorbox): 'tcblistingsutf8.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex Library (tcolorbox): 'tcblistings.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex Library (tcolorbox): 'tcblistingscore.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex Library (tcolorbox): 'tcbprocessing.code.tex' version '6.2.0' )))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex Library (tcolorbox): 'tcbexternal.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex Library (tcolorbox): 'tcbmagazine.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex Library (tcolorbox): 'tcbvignette.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibraryfadings.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code .tex))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex Library (tcolorbox): 'tcbposter.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage2e.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpagemodern.sty) )) (/usr/share/texlive/texmf-dist/tex/latex/tabto-ltx/tabto.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty) (/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty) (/usr/share/texlive/texmf-dist/tex/latex/changepage/changepage.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) Writing index file canonical-charmed-mysql.idx (./canonical-charmed-mysql.aux) (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5-utex-helper. sty (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomefree.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomebrands.fd))) *geometry* driver: auto-detecting *geometry* detected driver: xetex Package hyperref Warning: Rerun to get /PageLabels entry. (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Underfull \hbox (badness 10000) in alignment at lines 332--332 [][] Overfull \hbox (1.13809pt too wide) in paragraph at lines 332--333 [][] [1] No file canonical-charmed-mysql.toc. LaTeX Warning: Reference `LastPage' on page 1 undefined on input line 371. [1] LaTeX Warning: Reference `LastPage' on page 2 undefined on input line 434. [2] Chapter 1. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 447. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 447. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `tutorial:tutorial' on page 3 undefined on input line 451. LaTeX Warning: Reference `tutorial:tutorial' on page 3 undefined on input line 451. LaTeX Warning: Hyper reference `how-to/deploy/index:deploy' on page 3 undefined on input line 451. LaTeX Warning: Reference `how-to/deploy/index:deploy' on page 3 undefined on in put line 451. LaTeX Warning: Hyper reference `tutorial:scale-replicas' on page 3 undefined on input line 455. LaTeX Warning: Reference `tutorial:scale-replicas' on page 3 undefined on input line 455. LaTeX Warning: Hyper reference `how-to/manage-passwords:manage-passwords' on pa ge 3 undefined on input line 455. LaTeX Warning: Reference `how-to/manage-passwords:manage-passwords' on page 3 u ndefined on input line 455. LaTeX Warning: Hyper reference `how-to/back-up-and-restore/create-a-backup:crea te-a-backup' on page 3 undefined on input line 455. LaTeX Warning: Reference `how-to/back-up-and-restore/create-a-backup:create-a-b ackup' on page 3 undefined on input line 455. LaTeX Warning: Hyper reference `how-to/deploy/terraform/index:terraform' on pag e 3 undefined on input line 467. LaTeX Warning: Reference `how-to/deploy/terraform/index:terraform' on page 3 un defined on input line 467. LaTeX Warning: Hyper reference `how-to/deploy/airgapped:airgapped' on page 3 un defined on input line 467. LaTeX Warning: Reference `how-to/deploy/airgapped:airgapped' on page 3 undefine d on input line 467. LaTeX Warning: Hyper reference `how-to/deploy/multi-az/index:multi-az' on page 3 undefined on input line 467. LaTeX Warning: Reference `how-to/deploy/multi-az/index:multi-az' on page 3 unde fined on input line 467. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 3 undefined on input line 467. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 3 undefined on input line 467. LaTeX Warning: Hyper reference `how-to/deploy/juju-spaces:juju-spaces' on page 3 undefined on input line 471. LaTeX Warning: Reference `how-to/deploy/juju-spaces:juju-spaces' on page 3 unde fined on input line 471. LaTeX Warning: Hyper reference `how-to/tls/enable-tls:enable-tls' on page 3 und efined on input line 471. LaTeX Warning: Reference `how-to/tls/enable-tls:enable-tls' on page 3 undefined on input line 471. LaTeX Warning: Hyper reference `how-to/external-network-access:external-network -access' on page 3 undefined on input line 471. LaTeX Warning: Reference `how-to/external-network-access:external-network-acces s' on page 3 undefined on input line 471. LaTeX Warning: Hyper reference `how-to/refresh/index:refresh' on page 3 undefin ed on input line 475. LaTeX Warning: Reference `how-to/refresh/index:refresh' on page 3 undefined on input line 475. LaTeX Warning: Hyper reference `how-to/data-migration/migrate-data-via-backup-r estore:migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Reference `how-to/data-migration/migrate-data-via-backup-restore :migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 3 undefined on input line 479. LaTeX Warning: Hyper reference `reference/troubleshooting/known-scenarios:known -scenarios' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/known-scenarios:known-scena rios' on page 3 undefined on input line 479. LaTeX Warning: Hyper reference `explanation/logs/index:logs' on page 3 undefine d on input line 479. LaTeX Warning: Reference `explanation/logs/index:logs' on page 3 undefined on i nput line 479. LaTeX Warning: Hyper reference `explanation/interfaces-and-endpoints:interfaces -and-endpoints' on page 3 undefined on input line 491. LaTeX Warning: Reference `explanation/interfaces-and-endpoints:interfaces-and-e ndpoints' on page 3 undefined on input line 491. LaTeX Warning: Hyper reference `how-to/integrate-with-applications:integrate-wi th-applications' on page 3 undefined on input line 491. LaTeX Warning: Reference `how-to/integrate-with-applications:integrate-with-app lications' on page 3 undefined on input line 491. LaTeX Warning: Hyper reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 495. LaTeX Warning: Reference `LastPage' on page 3 undefined on input line 500. [3] Chapter 2. LaTeX Warning: Hyper reference `tutorial:tutorial' on page 4 undefined on input line 511. LaTeX Warning: Reference `tutorial:tutorial' on page 4 undefined on input line 511. LaTeX Warning: Hyper reference `how-to/index:how-to' on page 4 undefined on inp ut line 515. LaTeX Warning: Reference `how-to/index:how-to' on page 4 undefined on input lin e 515. LaTeX Warning: Hyper reference `reference/index:reference' on page 4 undefined on input line 519. LaTeX Warning: Reference `reference/index:reference' on page 4 undefined on inp ut line 519. LaTeX Warning: Hyper reference `explanation/index:explanation' on page 4 undefi ned on input line 523. LaTeX Warning: Reference `explanation/index:explanation' on page 4 undefined on input line 523. LaTeX Warning: Reference `LastPage' on page 4 undefined on input line 528. [4] Chapter 3. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 5 undefined on input line 610. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 5 undefined on input line 610. LaTeX Warning: Reference `LastPage' on page 5 undefined on input line 619. [5] LaTeX Warning: Hyper reference `how-to/deploy/index:deploy' on page 6 undefined on input line 641. LaTeX Warning: Reference `how-to/deploy/index:deploy' on page 6 undefined on in put line 641. LaTeX Warning: Reference `LastPage' on page 6 undefined on input line 713. [6] Underfull \hbox (badness 10000) in paragraph at lines 717--720 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][] [] [] [] [] [] [][][][][][][][][] [] [][][][][][][][][] [] [][ ][][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 7 undefined on input line 817. [7] LaTeX Warning: Reference `LastPage' on page 8 undefined on input line 893. [8] LaTeX Warning: Hyper reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `LastPage' on page 9 undefined on input line 976. [9] LaTeX Warning: Reference `LastPage' on page 10 undefined on input line 1088. [10] LaTeX Warning: Reference `LastPage' on page 11 undefined on input line 1145. [11] LaTeX Warning: Reference `LastPage' on page 12 undefined on input line 1218. [12] LaTeX Warning: Reference `LastPage' on page 13 undefined on input line 1281. [13] LaTeX Warning: Reference `LastPage' on page 14 undefined on input line 1371. [14] LaTeX Warning: Reference `LastPage' on page 15 undefined on input line 1422. [15] LaTeX Warning: Reference `LastPage' on page 16 undefined on input line 1515. [16] LaTeX Warning: Reference `LastPage' on page 17 undefined on input line 1572. [17] LaTeX Warning: Hyper reference `tutorial:access-the-integrated-database' on pag e 18 undefined on input line 1598. LaTeX Warning: Reference `tutorial:access-the-integrated-database' on page 18 u ndefined on input line 1598. LaTeX Warning: Reference `LastPage' on page 18 undefined on input line 1670. [18] Overfull \vbox (1.66681pt too high) detected at line 1726 LaTeX Warning: Reference `LastPage' on page 19 undefined on input line 1726. [19] LaTeX Warning: Reference `LastPage' on page 20 undefined on input line 1806. [20] LaTeX Warning: Reference `LastPage' on page 21 undefined on input line 1894. [21] LaTeX Warning: Hyper reference `tutorial:tutorial' on page 22 undefined on inpu t line 1948. LaTeX Warning: Reference `tutorial:tutorial' on page 22 undefined on input line 1948. Underfull \hbox (badness 10000) in paragraph at lines 1974--1977 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][] [] [][][][][][][] [][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][] [] [][][ ][][][][][][] [] [][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 22 undefined on input line 1980. [22] LaTeX Warning: Hyper reference `how-to/deploy/terraform/index:terraform' on pag e 23 undefined on input line 2000. LaTeX Warning: Reference `how-to/deploy/terraform/index:terraform' on page 23 u ndefined on input line 2000. LaTeX Warning: Hyper reference `tutorial:tutorial' on page 23 undefined on inpu t line 2022. LaTeX Warning: Reference `tutorial:tutorial' on page 23 undefined on input line 2022. LaTeX Warning: Reference `LastPage' on page 23 undefined on input line 2082. [23] LaTeX Warning: Hyper reference `tutorial:create-multipass-vm' on page 24 undefi ned on input line 2101. LaTeX Warning: Reference `tutorial:create-multipass-vm' on page 24 undefined on input line 2101. LaTeX Warning: Reference `LastPage' on page 24 undefined on input line 2161. [24] Overfull \hbox (3.299pt too wide) in paragraph at lines 2165--2168 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][]$| Overfull \hbox (16.45703pt too wide) in paragraph at lines 2224--2227 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][][][][]$| LaTeX Warning: Reference `LastPage' on page 25 undefined on input line 2239. [25] LaTeX Warning: Hyper reference `tutorial:tutorial' on page 26 undefined on inpu t line 2246. LaTeX Warning: Reference `tutorial:tutorial' on page 26 undefined on input line 2246. LaTeX Warning: Hyper reference `tutorial:tutorial' on page 26 undefined on inpu t line 2267. LaTeX Warning: Reference `tutorial:tutorial' on page 26 undefined on input line 2267. LaTeX Warning: Reference `LastPage' on page 26 undefined on input line 2322. [26] LaTeX Warning: Reference `LastPage' on page 27 undefined on input line 2396. [27] LaTeX Warning: Hyper reference `reference/charm-testing:charm-testing' on page 28 undefined on input line 2450. LaTeX Warning: Reference `reference/charm-testing:charm-testing' on page 28 und efined on input line 2450. LaTeX Warning: Reference `LastPage' on page 28 undefined on input line 2453. [28] LaTeX Warning: Reference `LastPage' on page 29 undefined on input line 2532. [29] LaTeX Warning: Reference `LastPage' on page 30 undefined on input line 2600. [30] LaTeX Warning: Reference `LastPage' on page 31 undefined on input line 2674. [31] LaTeX Warning: Hyper reference `how-to/index:how-to' on page 32 undefined on in put line 2717. LaTeX Warning: Reference `how-to/index:how-to' on page 32 undefined on input li ne 2717. LaTeX Warning: Reference `LastPage' on page 32 undefined on input line 2720. [32] LaTeX Warning: Reference `LastPage' on page 33 undefined on input line 2787. [33] LaTeX Warning: Reference `LastPage' on page 34 undefined on input line 2869. [34] LaTeX Warning: Reference `LastPage' on page 35 undefined on input line 2946. [35] LaTeX Warning: Reference `LastPage' on page 36 undefined on input line 3014. [36] Overfull \vbox (1.48517pt too high) detected at line 3077 LaTeX Warning: Reference `LastPage' on page 37 undefined on input line 3077. [37] LaTeX Warning: Hyper reference `how-to/index:how-to' on page 38 undefined on in put line 3097. LaTeX Warning: Reference `how-to/index:how-to' on page 38 undefined on input li ne 3097. LaTeX Warning: Reference `LastPage' on page 38 undefined on input line 3139. [38] LaTeX Warning: Reference `LastPage' on page 39 undefined on input line 3212. [39] LaTeX Warning: Reference `LastPage' on page 40 undefined on input line 3277. [40] LaTeX Warning: Reference `LastPage' on page 41 undefined on input line 3362. [41] Overfull \vbox (2.00815pt too high) detected at line 3432 LaTeX Warning: Reference `LastPage' on page 42 undefined on input line 3432. [42] LaTeX Warning: Reference `LastPage' on page 43 undefined on input line 3495. [43] LaTeX Warning: Hyper reference `how-to/index:how-to' on page 44 undefined on in put line 3527. LaTeX Warning: Reference `how-to/index:how-to' on page 44 undefined on input li ne 3527. LaTeX Warning: Reference `LastPage' on page 44 undefined on input line 3567. [44] LaTeX Warning: Reference `LastPage' on page 45 undefined on input line 3632. [45] LaTeX Warning: Reference `LastPage' on page 46 undefined on input line 3702. [46] Underfull \hbox (badness 10000) in paragraph at lines 3724--3727 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][][][][][] [] [][][][][][] [] [][][][] [] [][][][][][][][] [] [][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 47 undefined on input line 3787. [47] LaTeX Warning: Hyper reference `tutorial:tutorial' on page 48 undefined on inpu t line 3798. LaTeX Warning: Reference `tutorial:tutorial' on page 48 undefined on input line 3798. LaTeX Warning: Reference `LastPage' on page 48 undefined on input line 3861. [48] LaTeX Warning: Reference `LastPage' on page 49 undefined on input line 3933. [49] LaTeX Warning: Reference `LastPage' on page 50 undefined on input line 3992. [50] LaTeX Warning: Reference `LastPage' on page 51 undefined on input line 4060. [51] LaTeX Warning: Reference `LastPage' on page 52 undefined on input line 4154. [52] LaTeX Warning: Reference `LastPage' on page 53 undefined on input line 4243. [53] Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! LaTeX Warning: Reference `LastPage' on page 54 undefined on input line 4290. [54] LaTeX Warning: Reference `LastPage' on page 55 undefined on input line 4348. [55] LaTeX Warning: Reference `LastPage' on page 56 undefined on input line 4444. [56] LaTeX Warning: Reference `LastPage' on page 57 undefined on input line 4506. [57] LaTeX Warning: Reference `LastPage' on page 58 undefined on input line 4567. [58] LaTeX Warning: Reference `LastPage' on page 59 undefined on input line 4631. [59] LaTeX Warning: Reference `LastPage' on page 60 undefined on input line 4707. [60] LaTeX Warning: Hyper reference `how-to/deploy/vm-clouds/lxd:lxd' on page 61 und efined on input line 4710. LaTeX Warning: Reference `how-to/deploy/vm-clouds/lxd:lxd' on page 61 undefined on input line 4710. LaTeX Warning: Hyper reference `how-to/deploy/k8s-clouds/microk8s:microk8s' on page 61 undefined on input line 4710. LaTeX Warning: Reference `how-to/deploy/k8s-clouds/microk8s:microk8s' on page 6 1 undefined on input line 4710. LaTeX Warning: Hyper reference `how-to/deploy/index:deploy' on page 61 undefine d on input line 4710. LaTeX Warning: Reference `how-to/deploy/index:deploy' on page 61 undefined on i nput line 4710. LaTeX Warning: Reference `LastPage' on page 61 undefined on input line 4782. [61] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 62 undefin ed on input line 4822. LaTeX Warning: Reference `reference/contacts:contacts' on page 62 undefined on input line 4822. LaTeX Warning: Hyper reference `how-to/deploy/vm-clouds/lxd:lxd' on page 62 und efined on input line 4836. LaTeX Warning: Reference `how-to/deploy/vm-clouds/lxd:lxd' on page 62 undefined on input line 4836. LaTeX Warning: Hyper reference `how-to/deploy/k8s-clouds/microk8s:microk8s' on page 62 undefined on input line 4836. LaTeX Warning: Reference `how-to/deploy/k8s-clouds/microk8s:microk8s' on page 6 2 undefined on input line 4836. LaTeX Warning: Hyper reference `how-to/deploy/index:deploy' on page 62 undefine d on input line 4836. LaTeX Warning: Reference `how-to/deploy/index:deploy' on page 62 undefined on i nput line 4836. LaTeX Warning: Reference `LastPage' on page 62 undefined on input line 4853. [62] LaTeX Warning: Reference `LastPage' on page 63 undefined on input line 4932. [63] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/configure-s3-aws:con figure-s3-aws' on page 64 undefined on input line 4970. LaTeX Warning: Reference `how-to/back-up-and-restore/configure-s3-aws:configure -s3-aws' on page 64 undefined on input line 4970. LaTeX Warning: Reference `LastPage' on page 64 undefined on input line 5009. [64] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 65 undefin ed on input line 5025. LaTeX Warning: Reference `reference/contacts:contacts' on page 65 undefined on input line 5025. LaTeX Warning: Reference `LastPage' on page 65 undefined on input line 5104. [65] Underfull \hbox (badness 10000) in paragraph at lines 5167--5170 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 66 undefined on input line 5198. [66] Underfull \hbox (badness 10000) in paragraph at lines 5222--5225 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 67 undefined on input line 5281. [67] LaTeX Warning: Reference `LastPage' on page 68 undefined on input line 5360. [68] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `LastPage' on page 69 undefined on input line 5456. [69] LaTeX Warning: Hyper reference `how-to/deploy/vm-clouds/gce:gce' on page 70 und efined on input line 5495. LaTeX Warning: Reference `how-to/deploy/vm-clouds/gce:gce' on page 70 undefined on input line 5495. LaTeX Warning: Reference `LastPage' on page 70 undefined on input line 5514. [70] LaTeX Warning: Reference `LastPage' on page 71 undefined on input line 5573. [71] LaTeX Warning: Reference `LastPage' on page 72 undefined on input line 5637. [72] LaTeX Warning: Reference `LastPage' on page 73 undefined on input line 5704. [73] LaTeX Warning: Hyper reference `how-to/deploy/k8s-clouds/gke:gke' on page 74 un defined on input line 5716. LaTeX Warning: Reference `how-to/deploy/k8s-clouds/gke:gke' on page 74 undefine d on input line 5716. LaTeX Warning: Reference `LastPage' on page 74 undefined on input line 5770. [74] LaTeX Warning: Reference `LastPage' on page 75 undefined on input line 5823. [75] LaTeX Warning: Reference `LastPage' on page 76 undefined on input line 5888. [76] LaTeX Warning: Reference `LastPage' on page 77 undefined on input line 5956. [77] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/deploy:clust er-cluster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `how-to/cluster-cluster-replication/deploy:cluster-clu ster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `LastPage' on page 78 undefined on input line 6018. [78] LaTeX Warning: Reference `LastPage' on page 79 undefined on input line 6108. [79] LaTeX Warning: Reference `LastPage' on page 80 undefined on input line 6201. [80] LaTeX Warning: Reference `LastPage' on page 81 undefined on input line 6312. [81] LaTeX Warning: Reference `LastPage' on page 82 undefined on input line 6375. [82] LaTeX Warning: Reference `LastPage' on page 83 undefined on input line 6449. [83] Underfull \hbox (badness 10000) in paragraph at lines 6495--6498 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][] [] [][][][][][][][][][] [] [][][][][] [] [][][][][][] [] [][] [] [][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 84 undefined on input line 6507. [84] LaTeX Warning: Reference `LastPage' on page 85 undefined on input line 6597. [85] LaTeX Warning: Reference `LastPage' on page 86 undefined on input line 6666. [86] LaTeX Warning: Hyper reference `how-to/manage-passwords:manage-passwords' on pa ge 87 undefined on input line 6680. LaTeX Warning: Reference `how-to/manage-passwords:manage-passwords' on page 87 undefined on input line 6680. LaTeX Warning: Reference `LastPage' on page 87 undefined on input line 6736. [87] LaTeX Warning: Reference `LastPage' on page 88 undefined on input line 6805. [88] LaTeX Warning: Hyper reference `how-to/primary-switchover:primary-switchover' o n page 89 undefined on input line 6838. LaTeX Warning: Reference `how-to/primary-switchover:primary-switchover' on page 89 undefined on input line 6838. LaTeX Warning: Hyper reference `explanation/users:users' on page 89 undefined o n input line 6856. LaTeX Warning: Reference `explanation/users:users' on page 89 undefined on inpu t line 6856. LaTeX Warning: Reference `LastPage' on page 89 undefined on input line 6878. [89] LaTeX Warning: Reference `LastPage' on page 90 undefined on input line 6955. [90] LaTeX Warning: Hyper reference `explanation/users:users' on page 91 undefined o n input line 6959. LaTeX Warning: Reference `explanation/users:users' on page 91 undefined on inpu t line 6959. LaTeX Warning: Reference `LastPage' on page 91 undefined on input line 7027. [91] LaTeX Warning: Reference `LastPage' on page 92 undefined on input line 7099. [92] LaTeX Warning: Hyper reference `how-to/tls/enable-tls:enable-tls' on page 93 un defined on input line 7127. LaTeX Warning: Reference `how-to/tls/enable-tls:enable-tls' on page 93 undefine d on input line 7127. LaTeX Warning: Reference `LastPage' on page 93 undefined on input line 7161. [93] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 94 undefin ed on input line 7235. LaTeX Warning: Reference `reference/contacts:contacts' on page 94 undefined on input line 7235. LaTeX Warning: Reference `LastPage' on page 94 undefined on input line 7243. [94] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/switchover-f ailover:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Reference `how-to/cluster-cluster-replication/switchover-failove r:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 95 undefined on input line 7293. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 95 undefined on input line 7293. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 95 undefined on input line 7297. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 95 undefined on input line 7297. LaTeX Warning: Reference `LastPage' on page 95 undefined on input line 7314. [95] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/configure-s3-radosgw :configure-s3-radosgw' on page 96 undefined on input line 7339. LaTeX Warning: Reference `how-to/back-up-and-restore/configure-s3-radosgw:confi gure-s3-radosgw' on page 96 undefined on input line 7339. LaTeX Warning: Reference `LastPage' on page 96 undefined on input line 7381. [96] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/configure-s3-aws:con figure-s3-aws' on page 97 undefined on input line 7466. LaTeX Warning: Reference `how-to/back-up-and-restore/configure-s3-aws:configure -s3-aws' on page 97 undefined on input line 7466. LaTeX Warning: Reference `LastPage' on page 97 undefined on input line 7473. [97] LaTeX Warning: Reference `LastPage' on page 98 undefined on input line 7543. [98] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/configure-s3-aws:con figure-s3-aws' on page 99 undefined on input line 7595. LaTeX Warning: Reference `how-to/back-up-and-restore/configure-s3-aws:configure -s3-aws' on page 99 undefined on input line 7595. LaTeX Warning: Reference `LastPage' on page 99 undefined on input line 7619. [99] LaTeX Warning: Reference `LastPage' on page 100 undefined on input line 7695. [100] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/migrate-a-cluster:mi grate-a-cluster' on page 101 undefined on input line 7714. LaTeX Warning: Reference `how-to/back-up-and-restore/migrate-a-cluster:migrate- a-cluster' on page 101 undefined on input line 7714. LaTeX Warning: Hyper reference `how-to/scale:scale' on page 101 undefined on in put line 7721. LaTeX Warning: Reference `how-to/scale:scale' on page 101 undefined on input li ne 7721. LaTeX Warning: Hyper reference `how-to/back-up-and-restore/create-a-backup:crea te-a-backup' on page 101 undefined on input line 7725. LaTeX Warning: Reference `how-to/back-up-and-restore/create-a-backup:create-a-b ackup' on page 101 undefined on input line 7725. LaTeX Warning: Reference `LastPage' on page 101 undefined on input line 7770. [101] LaTeX Warning: Reference `LastPage' on page 102 undefined on input line 7834. [102] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/restore-a-backup:res tore-a-backup' on page 103 undefined on input line 7865. LaTeX Warning: Reference `how-to/back-up-and-restore/restore-a-backup:restore-a -backup' on page 103 undefined on input line 7865. LaTeX Warning: Hyper reference `how-to/scale:scale' on page 103 undefined on in put line 7876. LaTeX Warning: Reference `how-to/scale:scale' on page 103 undefined on input li ne 7876. LaTeX Warning: Hyper reference `how-to/back-up-and-restore/create-a-backup:crea te-a-backup' on page 103 undefined on input line 7880. LaTeX Warning: Reference `how-to/back-up-and-restore/create-a-backup:create-a-b ackup' on page 103 undefined on input line 7880. LaTeX Warning: Reference `LastPage' on page 103 undefined on input line 7914. [103] LaTeX Warning: Reference `LastPage' on page 104 undefined on input line 7983. [104] LaTeX Warning: Reference `LastPage' on page 105 undefined on input line 8073. [105] LaTeX Warning: Reference `LastPage' on page 106 undefined on input line 8153. [106] LaTeX Warning: Reference `LastPage' on page 107 undefined on input line 8211. [107] LaTeX Warning: Reference `LastPage' on page 108 undefined on input line 8262. [108] Overfull \hbox (14.036pt too wide) in paragraph at lines 8278--8284 [][][][][][][][][][][] LaTeX Warning: Reference `LastPage' on page 109 undefined on input line 8300. [109] LaTeX Warning: Hyper reference `reference/alert-rules:alert-rules' on page 110 undefined on input line 8316. LaTeX Warning: Reference `reference/alert-rules:alert-rules' on page 110 undefi ned on input line 8316. LaTeX Warning: Hyper reference `how-to/monitoring/enable-monitoring:enable-moni toring' on page 110 undefined on input line 8342. LaTeX Warning: Reference `how-to/monitoring/enable-monitoring:enable-monitoring ' on page 110 undefined on input line 8342. LaTeX Warning: Reference `LastPage' on page 110 undefined on input line 8353. [110] Missing character: There is no   (U+202F) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 111 undefined on input line 8437. [111] LaTeX Warning: Reference `LastPage' on page 112 undefined on input line 8470. [112] LaTeX Warning: Hyper reference `how-to/monitoring/enable-monitoring:enable-moni toring' on page 113 undefined on input line 8478. LaTeX Warning: Reference `how-to/monitoring/enable-monitoring:enable-monitoring ' on page 113 undefined on input line 8478. LaTeX Warning: Reference `LastPage' on page 113 undefined on input line 8571. [113] LaTeX Warning: Reference `LastPage' on page 114 undefined on input line 8659. [114] Overfull \vbox (1.24065pt too high) detected at line 8716 LaTeX Warning: Reference `LastPage' on page 115 undefined on input line 8716. [115] LaTeX Warning: Reference `LastPage' on page 116 undefined on input line 8747. [116] LaTeX Warning: Hyper reference `how-to/back-up-and-restore/migrate-a-cluster:mi grate-a-cluster' on page 117 undefined on input line 8870. LaTeX Warning: Reference `how-to/back-up-and-restore/migrate-a-cluster:migrate- a-cluster' on page 117 undefined on input line 8870. LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `LastPage' on page 117 undefined on input line 8881. [117] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/refresh-single-cl uster:refresh-single-cluster' on page 118 undefined on input line 8920. LaTeX Warning: Reference `how-to/refresh/single-cluster/refresh-single-cluster: refresh-single-cluster' on page 118 undefined on input line 8920. Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 118 undefined on input line 8943. [118] LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/refresh-single-cl uster:refresh-single-cluster' on page 119 undefined on input line 8977. LaTeX Warning: Reference `how-to/refresh/single-cluster/refresh-single-cluster: refresh-single-cluster' on page 119 undefined on input line 8977. LaTeX Warning: Reference `LastPage' on page 119 undefined on input line 9026. [119] LaTeX Warning: Reference `LastPage' on page 120 undefined on input line 9114. [120] LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/refresh-single-cl uster:refresh-single-cluster' on page 121 undefined on input line 9143. LaTeX Warning: Reference `how-to/refresh/single-cluster/refresh-single-cluster: refresh-single-cluster' on page 121 undefined on input line 9143. LaTeX Warning: Reference `LastPage' on page 121 undefined on input line 9180. [121] LaTeX Warning: Hyper reference `how-to/refresh/multi-cluster/refresh-multi-clus ter:refresh-multi-cluster' on page 122 undefined on input line 9196. LaTeX Warning: Reference `how-to/refresh/multi-cluster/refresh-multi-cluster:re fresh-multi-cluster' on page 122 undefined on input line 9196. LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Hyper reference `how-to/refresh/upgrade-juju:upgrade-juju' on pa ge 122 undefined on input line 9208. LaTeX Warning: Reference `how-to/refresh/upgrade-juju:upgrade-juju' on page 122 undefined on input line 9208. LaTeX Warning: Hyper reference `how-to/back-up-and-restore/create-a-backup:crea te-a-backup' on page 122 undefined on input line 9211. LaTeX Warning: Reference `how-to/back-up-and-restore/create-a-backup:create-a-b ackup' on page 122 undefined on input line 9211. LaTeX Warning: Reference `LastPage' on page 122 undefined on input line 9261. [122] LaTeX Warning: Hyper reference `how-to/scale:primary-vs-leader-unit' on page 12 3 undefined on input line 9311. LaTeX Warning: Reference `how-to/scale:primary-vs-leader-unit' on page 123 unde fined on input line 9311. LaTeX Warning: Reference `LastPage' on page 123 undefined on input line 9314. [123] LaTeX Warning: Reference `LastPage' on page 124 undefined on input line 9407. [124] LaTeX Warning: Reference `LastPage' on page 125 undefined on input line 9523. [125] LaTeX Warning: Reference `LastPage' on page 126 undefined on input line 9572. [126] LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/roll-back-single- cluster:roll-back-single-cluster' on page 127 undefined on input line 9633. LaTeX Warning: Reference `how-to/refresh/single-cluster/roll-back-single-cluste r:roll-back-single-cluster' on page 127 undefined on input line 9633. LaTeX Warning: Reference `LastPage' on page 127 undefined on input line 9636. [127] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 128 undefined on input line 9639. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 128 undefined on input line 9639. LaTeX Warning: Hyper reference `how-to/refresh/multi-cluster/refresh-multi-clus ter:refresh-multi-cluster' on page 128 undefined on input line 9658. LaTeX Warning: Reference `how-to/refresh/multi-cluster/refresh-multi-cluster:re fresh-multi-cluster' on page 128 undefined on input line 9658. LaTeX Warning: Reference `LastPage' on page 128 undefined on input line 9697. [128] Underfull \hbox (badness 10000) in paragraph at lines 9763--9766 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 129 undefined on input line 9775. [129] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 130 undefined on input line 9813. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 130 undefined on input line 9813. LaTeX Warning: Reference `LastPage' on page 130 undefined on input line 9850. [130] LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/refresh-single-cl uster:refresh-single-cluster' on page 131 undefined on input line 9873. LaTeX Warning: Reference `how-to/refresh/single-cluster/refresh-single-cluster: refresh-single-cluster' on page 131 undefined on input line 9873. LaTeX Warning: Hyper reference `how-to/refresh/single-cluster/roll-back-single- cluster:roll-back-single-cluster' on page 131 undefined on input line 9885. LaTeX Warning: Reference `how-to/refresh/single-cluster/roll-back-single-cluste r:roll-back-single-cluster' on page 131 undefined on input line 9885. LaTeX Warning: Hyper reference `how-to/refresh/multi-cluster/refresh-multi-clus ter:refresh-multi-cluster' on page 131 undefined on input line 9907. LaTeX Warning: Reference `how-to/refresh/multi-cluster/refresh-multi-cluster:re fresh-multi-cluster' on page 131 undefined on input line 9907. LaTeX Warning: Reference `LastPage' on page 131 undefined on input line 9910. [131] LaTeX Warning: Reference `LastPage' on page 132 undefined on input line 9982. [132] Underfull \hbox (badness 10000) in paragraph at lines 10012--10015 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 133 undefined on input line 10059. [133] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 134 undefined on input line 10062. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 134 undefined on input line 10062. ) Runaway argument? [t]{TTTT} \sphinxtoprule \par \sphinxAtStartPar \par &\sphinxstyletheadfamily \ ETC. ! File ended while scanning use of \TY@get@body. \par <*> charmedmysql.tex ! Emergency stop. <*> charmedmysql.tex Output written on canonical-charmed-mysql.pdf (134 pages). Transcript written on canonical-charmed-mysql.log. Latexmk: Missing input file 'canonical-charmed-mysql.toc' (or dependence on it) from following: No file canonical-charmed-mysql.toc. Latexmk: Getting log file 'canonical-charmed-mysql.log' Latexmk: Examining 'canonical-charmed-mysql.fls' Latexmk: Examining 'canonical-charmed-mysql.log' Latexmk: Index file 'canonical-charmed-mysql.idx' was written Latexmk: References changed. Latexmk: Log file says output to 'canonical-charmed-mysql.pdf' Latexmk: applying rule 'makeindex canonical-charmed-mysql.idx'... Rule 'makeindex canonical-charmed-mysql.idx': Reasons for rerun Category 'other': Rerun of 'makeindex canonical-charmed-mysql.idx' forced or previously required: Reason or flag: 'Initial set up of rule' ------------ Run number 1 of rule 'makeindex canonical-charmed-mysql.idx' ------------ ------------ Running 'internal xindy -o "canonical-charmed-mysql.ind" "canonical-charmed-mysql.idx"' ------------ Latexmk: calling xindy( -o "canonical-charmed-mysql.ind" "canonical-charmed-mysql.idx" ) Latexmk: applying rule 'pdflatex'... Rule 'pdflatex': Reasons for rerun Changed files or newly in use/created: canonical-charmed-mysql.aux canonical-charmed-mysql.ind canonical-charmed-mysql.toc ------------ Run number 2 of rule 'pdflatex' ------------ ------------ Running 'xelatex -interaction=nonstopmode -recorder --jobname="canonical-charmed-mysql" "charmedmysql.tex"' ------------ This is XeTeX, Version 3.141592653-2.6-0.999995 (TeX Live 2023/Debian) (preloaded format=xelatex) restricted \write18 enabled. entering extended mode (./charmedmysql.tex LaTeX2e <2023-11-01> patch level 1 L3 programming layer <2024-01-22> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2023/05/17 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo))) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty Package cmap Warning: pdftex not detected - exiting. ) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xetex.def))) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/polyglossia.sty (/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty) (/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex)))) (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-latex.lde)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-english.ldf) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def) (/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx)) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-xetex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def (/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty)) (./sphinxmessages.sty) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex))) (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered .code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de f)))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet ric.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod e.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari thmetics.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation s.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t ex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex)) ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 .sty) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 .sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty) (/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty (/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex Library (tcolorbox): 'tcbraster.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex Library (tcolorbox): 'tcbskins.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibrarytopaths.code.tex))) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.te x)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex Library (tcolorbox): 'tcbskinsjigsaw.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex Library (tcolorbox): 'tcbbreakable.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pdfcol/pdfcol.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex Library (tcolorbox): 'tcbhooks.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex Library (tcolorbox): 'tcbtheorems.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex Library (tcolorbox): 'tcbfitting.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex Library (tcolorbox): 'tcblistingsutf8.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex Library (tcolorbox): 'tcblistings.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex Library (tcolorbox): 'tcblistingscore.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex Library (tcolorbox): 'tcbprocessing.code.tex' version '6.2.0' )))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex Library (tcolorbox): 'tcbexternal.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex Library (tcolorbox): 'tcbmagazine.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex Library (tcolorbox): 'tcbvignette.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibraryfadings.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code .tex))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex Library (tcolorbox): 'tcbposter.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage2e.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpagemodern.sty) )) (/usr/share/texlive/texmf-dist/tex/latex/tabto-ltx/tabto.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty) (/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty) (/usr/share/texlive/texmf-dist/tex/latex/changepage/changepage.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) Writing index file canonical-charmed-mysql.idx (./canonical-charmed-mysql.aux) (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5-utex-helper. sty (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomefree.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomebrands.fd))) *geometry* driver: auto-detecting *geometry* detected driver: xetex (./canonical-charmed-mysql.out) (./canonical-charmed-mysql.out) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Underfull \hbox (badness 10000) in alignment at lines 332--332 [][] Overfull \hbox (1.13809pt too wide) in paragraph at lines 332--333 [][] [1] (./canonical-charmed-mysql.toc) LaTeX Warning: Reference `LastPage' on page 1 undefined on input line 371. [1] LaTeX Warning: Reference `LastPage' on page 2 undefined on input line 434. [2] Chapter 1. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 447. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 447. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 3 undefined on input line 467. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 3 undefined on input line 467. LaTeX Warning: Hyper reference `how-to/data-migration/migrate-data-via-backup-r estore:migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Reference `how-to/data-migration/migrate-data-via-backup-restore :migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 3 undefined on input line 479. LaTeX Warning: Hyper reference `reference/troubleshooting/known-scenarios:known -scenarios' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/known-scenarios:known-scena rios' on page 3 undefined on input line 479. LaTeX Warning: Hyper reference `explanation/logs/index:logs' on page 3 undefine d on input line 479. LaTeX Warning: Reference `explanation/logs/index:logs' on page 3 undefined on i nput line 479. LaTeX Warning: Hyper reference `explanation/interfaces-and-endpoints:interfaces -and-endpoints' on page 3 undefined on input line 491. LaTeX Warning: Reference `explanation/interfaces-and-endpoints:interfaces-and-e ndpoints' on page 3 undefined on input line 491. LaTeX Warning: Hyper reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 495. LaTeX Warning: Reference `LastPage' on page 3 undefined on input line 500. [3] Chapter 2. LaTeX Warning: Hyper reference `reference/index:reference' on page 4 undefined on input line 519. LaTeX Warning: Reference `reference/index:reference' on page 4 undefined on inp ut line 519. LaTeX Warning: Hyper reference `explanation/index:explanation' on page 4 undefi ned on input line 523. LaTeX Warning: Reference `explanation/index:explanation' on page 4 undefined on input line 523. LaTeX Warning: Reference `LastPage' on page 4 undefined on input line 528. [4] Chapter 3. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 5 undefined on input line 610. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 5 undefined on input line 610. LaTeX Warning: Reference `LastPage' on page 5 undefined on input line 619. [5] LaTeX Warning: Reference `LastPage' on page 6 undefined on input line 713. [6] Underfull \hbox (badness 10000) in paragraph at lines 717--720 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][] [] [] [] [] [] [][][][][][][][][] [] [][][][][][][][][] [] [][ ][][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 7 undefined on input line 817. [7] LaTeX Warning: Reference `LastPage' on page 8 undefined on input line 893. [8] LaTeX Warning: Hyper reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `LastPage' on page 9 undefined on input line 976. [9] LaTeX Warning: Reference `LastPage' on page 10 undefined on input line 1088. [10] LaTeX Warning: Reference `LastPage' on page 11 undefined on input line 1145. [11] LaTeX Warning: Reference `LastPage' on page 12 undefined on input line 1218. [12] LaTeX Warning: Reference `LastPage' on page 13 undefined on input line 1281. [13] LaTeX Warning: Reference `LastPage' on page 14 undefined on input line 1371. [14] LaTeX Warning: Reference `LastPage' on page 15 undefined on input line 1422. [15] LaTeX Warning: Reference `LastPage' on page 16 undefined on input line 1515. [16] LaTeX Warning: Reference `LastPage' on page 17 undefined on input line 1572. [17] LaTeX Warning: Reference `LastPage' on page 18 undefined on input line 1670. [18] Overfull \vbox (1.66681pt too high) detected at line 1726 LaTeX Warning: Reference `LastPage' on page 19 undefined on input line 1726. [19] LaTeX Warning: Reference `LastPage' on page 20 undefined on input line 1806. [20] LaTeX Warning: Reference `LastPage' on page 21 undefined on input line 1894. [21] Underfull \hbox (badness 10000) in paragraph at lines 1974--1977 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][] [] [][][][][][][] [][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][] [] [][][ ][][][][][][] [] [][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 22 undefined on input line 1980. [22] LaTeX Warning: Reference `LastPage' on page 23 undefined on input line 2082. [23] LaTeX Warning: Reference `LastPage' on page 24 undefined on input line 2161. [24] Overfull \hbox (3.299pt too wide) in paragraph at lines 2165--2168 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][]$| Overfull \hbox (16.45703pt too wide) in paragraph at lines 2224--2227 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][][][][]$| LaTeX Warning: Reference `LastPage' on page 25 undefined on input line 2239. [25] LaTeX Warning: Reference `LastPage' on page 26 undefined on input line 2322. [26] LaTeX Warning: Reference `LastPage' on page 27 undefined on input line 2396. [27] LaTeX Warning: Hyper reference `reference/charm-testing:charm-testing' on page 28 undefined on input line 2450. LaTeX Warning: Reference `reference/charm-testing:charm-testing' on page 28 und efined on input line 2450. LaTeX Warning: Reference `LastPage' on page 28 undefined on input line 2453. [28] LaTeX Warning: Reference `LastPage' on page 29 undefined on input line 2532. [29] LaTeX Warning: Reference `LastPage' on page 30 undefined on input line 2600. [30] LaTeX Warning: Reference `LastPage' on page 31 undefined on input line 2674. [31] LaTeX Warning: Reference `LastPage' on page 32 undefined on input line 2720. [32] LaTeX Warning: Reference `LastPage' on page 33 undefined on input line 2787. [33] LaTeX Warning: Reference `LastPage' on page 34 undefined on input line 2869. [34] LaTeX Warning: Reference `LastPage' on page 35 undefined on input line 2946. [35] LaTeX Warning: Reference `LastPage' on page 36 undefined on input line 3014. [36] Overfull \vbox (1.48517pt too high) detected at line 3077 LaTeX Warning: Reference `LastPage' on page 37 undefined on input line 3077. [37] LaTeX Warning: Reference `LastPage' on page 38 undefined on input line 3139. [38] LaTeX Warning: Reference `LastPage' on page 39 undefined on input line 3212. [39] LaTeX Warning: Reference `LastPage' on page 40 undefined on input line 3277. [40] LaTeX Warning: Reference `LastPage' on page 41 undefined on input line 3362. [41] Overfull \vbox (2.00815pt too high) detected at line 3432 LaTeX Warning: Reference `LastPage' on page 42 undefined on input line 3432. [42] LaTeX Warning: Reference `LastPage' on page 43 undefined on input line 3495. [43] LaTeX Warning: Reference `LastPage' on page 44 undefined on input line 3567. [44] LaTeX Warning: Reference `LastPage' on page 45 undefined on input line 3632. [45] LaTeX Warning: Reference `LastPage' on page 46 undefined on input line 3702. [46] Underfull \hbox (badness 10000) in paragraph at lines 3724--3727 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][][][][][] [] [][][][][][] [] [][][][] [] [][][][][][][][] [] [][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 47 undefined on input line 3787. [47] LaTeX Warning: Reference `LastPage' on page 48 undefined on input line 3861. [48] LaTeX Warning: Reference `LastPage' on page 49 undefined on input line 3933. [49] LaTeX Warning: Reference `LastPage' on page 50 undefined on input line 3992. [50] LaTeX Warning: Reference `LastPage' on page 51 undefined on input line 4060. [51] LaTeX Warning: Reference `LastPage' on page 52 undefined on input line 4154. [52] LaTeX Warning: Reference `LastPage' on page 53 undefined on input line 4243. [53] Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! LaTeX Warning: Reference `LastPage' on page 54 undefined on input line 4290. [54] LaTeX Warning: Reference `LastPage' on page 55 undefined on input line 4348. [55] LaTeX Warning: Reference `LastPage' on page 56 undefined on input line 4444. [56] LaTeX Warning: Reference `LastPage' on page 57 undefined on input line 4506. [57] LaTeX Warning: Reference `LastPage' on page 58 undefined on input line 4567. [58] LaTeX Warning: Reference `LastPage' on page 59 undefined on input line 4631. [59] LaTeX Warning: Reference `LastPage' on page 60 undefined on input line 4707. [60] LaTeX Warning: Reference `LastPage' on page 61 undefined on input line 4782. [61] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 62 undefin ed on input line 4822. LaTeX Warning: Reference `reference/contacts:contacts' on page 62 undefined on input line 4822. LaTeX Warning: Reference `LastPage' on page 62 undefined on input line 4853. [62] LaTeX Warning: Reference `LastPage' on page 63 undefined on input line 4932. [63] LaTeX Warning: Reference `LastPage' on page 64 undefined on input line 5009. [64] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 65 undefin ed on input line 5025. LaTeX Warning: Reference `reference/contacts:contacts' on page 65 undefined on input line 5025. LaTeX Warning: Reference `LastPage' on page 65 undefined on input line 5104. [65] Underfull \hbox (badness 10000) in paragraph at lines 5167--5170 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 66 undefined on input line 5198. [66] Underfull \hbox (badness 10000) in paragraph at lines 5222--5225 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 67 undefined on input line 5281. [67] LaTeX Warning: Reference `LastPage' on page 68 undefined on input line 5360. [68] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `LastPage' on page 69 undefined on input line 5456. [69] LaTeX Warning: Reference `LastPage' on page 70 undefined on input line 5514. [70] LaTeX Warning: Reference `LastPage' on page 71 undefined on input line 5573. [71] LaTeX Warning: Reference `LastPage' on page 72 undefined on input line 5637. [72] LaTeX Warning: Reference `LastPage' on page 73 undefined on input line 5704. [73] LaTeX Warning: Reference `LastPage' on page 74 undefined on input line 5770. [74] LaTeX Warning: Reference `LastPage' on page 75 undefined on input line 5823. [75] LaTeX Warning: Reference `LastPage' on page 76 undefined on input line 5888. [76] LaTeX Warning: Reference `LastPage' on page 77 undefined on input line 5956. [77] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/deploy:clust er-cluster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `how-to/cluster-cluster-replication/deploy:cluster-clu ster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `LastPage' on page 78 undefined on input line 6018. [78] LaTeX Warning: Reference `LastPage' on page 79 undefined on input line 6108. [79] LaTeX Warning: Reference `LastPage' on page 80 undefined on input line 6201. [80] LaTeX Warning: Reference `LastPage' on page 81 undefined on input line 6312. [81] LaTeX Warning: Reference `LastPage' on page 82 undefined on input line 6375. [82] LaTeX Warning: Reference `LastPage' on page 83 undefined on input line 6449. [83] Underfull \hbox (badness 10000) in paragraph at lines 6495--6498 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][] [] [][][][][][][][][][] [] [][][][][] [] [][][][][][] [] [][] [] [][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 84 undefined on input line 6507. [84] LaTeX Warning: Reference `LastPage' on page 85 undefined on input line 6597. [85] LaTeX Warning: Reference `LastPage' on page 86 undefined on input line 6666. [86] LaTeX Warning: Reference `LastPage' on page 87 undefined on input line 6736. [87] LaTeX Warning: Reference `LastPage' on page 88 undefined on input line 6805. [88] LaTeX Warning: Hyper reference `explanation/users:users' on page 89 undefined o n input line 6856. LaTeX Warning: Reference `explanation/users:users' on page 89 undefined on inpu t line 6856. LaTeX Warning: Reference `LastPage' on page 89 undefined on input line 6878. [89] LaTeX Warning: Reference `LastPage' on page 90 undefined on input line 6955. [90] LaTeX Warning: Hyper reference `explanation/users:users' on page 91 undefined o n input line 6959. LaTeX Warning: Reference `explanation/users:users' on page 91 undefined on inpu t line 6959. LaTeX Warning: Reference `LastPage' on page 91 undefined on input line 7027. [91] LaTeX Warning: Reference `LastPage' on page 92 undefined on input line 7099. [92] LaTeX Warning: Reference `LastPage' on page 93 undefined on input line 7161. [93] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 94 undefin ed on input line 7235. LaTeX Warning: Reference `reference/contacts:contacts' on page 94 undefined on input line 7235. LaTeX Warning: Reference `LastPage' on page 94 undefined on input line 7243. [94] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/switchover-f ailover:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Reference `how-to/cluster-cluster-replication/switchover-failove r:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 95 undefined on input line 7293. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 95 undefined on input line 7293. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 95 undefined on input line 7297. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 95 undefined on input line 7297. LaTeX Warning: Reference `LastPage' on page 95 undefined on input line 7314. [95] LaTeX Warning: Reference `LastPage' on page 96 undefined on input line 7381. [96] LaTeX Warning: Reference `LastPage' on page 97 undefined on input line 7473. [97] LaTeX Warning: Reference `LastPage' on page 98 undefined on input line 7543. [98] LaTeX Warning: Reference `LastPage' on page 99 undefined on input line 7619. [99] LaTeX Warning: Reference `LastPage' on page 100 undefined on input line 7695. [100] LaTeX Warning: Reference `LastPage' on page 101 undefined on input line 7770. [101] LaTeX Warning: Reference `LastPage' on page 102 undefined on input line 7834. [102] LaTeX Warning: Reference `LastPage' on page 103 undefined on input line 7914. [103] LaTeX Warning: Reference `LastPage' on page 104 undefined on input line 7983. [104] LaTeX Warning: Reference `LastPage' on page 105 undefined on input line 8073. [105] LaTeX Warning: Reference `LastPage' on page 106 undefined on input line 8153. [106] LaTeX Warning: Reference `LastPage' on page 107 undefined on input line 8211. [107] LaTeX Warning: Reference `LastPage' on page 108 undefined on input line 8262. [108] Overfull \hbox (14.036pt too wide) in paragraph at lines 8278--8284 [][][][][][][][][][][] LaTeX Warning: Reference `LastPage' on page 109 undefined on input line 8300. [109] LaTeX Warning: Hyper reference `reference/alert-rules:alert-rules' on page 110 undefined on input line 8316. LaTeX Warning: Reference `reference/alert-rules:alert-rules' on page 110 undefi ned on input line 8316. LaTeX Warning: Reference `LastPage' on page 110 undefined on input line 8353. [110] Missing character: There is no   (U+202F) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 111 undefined on input line 8437. [111] LaTeX Warning: Reference `LastPage' on page 112 undefined on input line 8470. [112] LaTeX Warning: Reference `LastPage' on page 113 undefined on input line 8571. [113] LaTeX Warning: Reference `LastPage' on page 114 undefined on input line 8659. [114] Overfull \vbox (1.24065pt too high) detected at line 8716 LaTeX Warning: Reference `LastPage' on page 115 undefined on input line 8716. [115] LaTeX Warning: Reference `LastPage' on page 116 undefined on input line 8747. [116] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `LastPage' on page 117 undefined on input line 8881. [117] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 118 undefined on input line 8943. [118] LaTeX Warning: Reference `LastPage' on page 119 undefined on input line 9026. [119] LaTeX Warning: Reference `LastPage' on page 120 undefined on input line 9114. [120] LaTeX Warning: Reference `LastPage' on page 121 undefined on input line 9180. [121] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Reference `LastPage' on page 122 undefined on input line 9261. [122] LaTeX Warning: Reference `LastPage' on page 123 undefined on input line 9314. [123] LaTeX Warning: Reference `LastPage' on page 124 undefined on input line 9407. [124] LaTeX Warning: Reference `LastPage' on page 125 undefined on input line 9523. [125] LaTeX Warning: Reference `LastPage' on page 126 undefined on input line 9572. [126] LaTeX Warning: Reference `LastPage' on page 127 undefined on input line 9636. [127] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 128 undefined on input line 9639. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 128 undefined on input line 9639. LaTeX Warning: Reference `LastPage' on page 128 undefined on input line 9697. [128] Underfull \hbox (badness 10000) in paragraph at lines 9763--9766 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 129 undefined on input line 9775. [129] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 130 undefined on input line 9813. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 130 undefined on input line 9813. LaTeX Warning: Reference `LastPage' on page 130 undefined on input line 9850. [130] LaTeX Warning: Reference `LastPage' on page 131 undefined on input line 9910. [131] LaTeX Warning: Reference `LastPage' on page 132 undefined on input line 9982. [132] Underfull \hbox (badness 10000) in paragraph at lines 10012--10015 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 133 undefined on input line 10059. [133] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 134 undefined on input line 10062. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 134 undefined on input line 10062. ) Runaway argument? [t]{TTTT} \sphinxtoprule \par \sphinxAtStartPar \par &\sphinxstyletheadfamily \ ETC. ! File ended while scanning use of \TY@get@body. \par <*> charmedmysql.tex ! Emergency stop. <*> charmedmysql.tex Output written on canonical-charmed-mysql.pdf (134 pages). Transcript written on canonical-charmed-mysql.log. Latexmk: Getting log file 'canonical-charmed-mysql.log' Latexmk: Examining 'canonical-charmed-mysql.fls' Latexmk: Examining 'canonical-charmed-mysql.log' Latexmk: Index file 'canonical-charmed-mysql.idx' was written Latexmk: Log file says output to 'canonical-charmed-mysql.pdf' Latexmk: applying rule 'pdflatex'... Rule 'pdflatex': Reasons for rerun Changed files or newly in use/created: canonical-charmed-mysql.out ------------ Run number 3 of rule 'pdflatex' ------------ ------------ Running 'xelatex -interaction=nonstopmode -recorder --jobname="canonical-charmed-mysql" "charmedmysql.tex"' ------------ This is XeTeX, Version 3.141592653-2.6-0.999995 (TeX Live 2023/Debian) (preloaded format=xelatex) restricted \write18 enabled. entering extended mode (./charmedmysql.tex LaTeX2e <2023-11-01> patch level 1 L3 programming layer <2024-01-22> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2023/05/17 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size11.clo))) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty Package cmap Warning: pdftex not detected - exiting. ) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-xetex.def))) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/polyglossia.sty (/usr/share/texlive/texmf-dist/tex/latex/etoolbox/etoolbox.sty) (/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex (/usr/share/texlive/texmf-dist/tex/generic/xkeyval/keyval.tex)))) (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-latex.lde)) (/usr/share/texlive/texmf-dist/tex/latex/polyglossia/gloss-english.ldf) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/xetex.def) (/usr/share/texlive/texmf-dist/tex/latex/graphics/mathcolor.ltx)) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/kvsetkeys/kvsetkeys.sty)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-xetex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def (/usr/share/texlive/texmf-dist/tex/generic/stringenc/stringenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty)) (./sphinxmessages.sty) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex))) (/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeyslibraryfiltered .code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-xetex.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-dvipdfmx.def (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de f)))) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet ric.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod e.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari thmetics.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code .tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation s.code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t ex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te x) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c ode.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex)) ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex ) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 .sty) (/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 .sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty) (/usr/share/texlive/texmf-dist/tex/latex/environ/environ.sty (/usr/share/texlive/texmf-dist/tex/latex/trimspaces/trimspaces.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex Library (tcolorbox): 'tcbraster.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex Library (tcolorbox): 'tcbskins.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers .code.tex) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex ) (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibrarytopaths.code.tex))) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill.image.sty (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzfill-common.sty) (/usr/share/texlive/texmf-dist/tex/latex/tikzfill/tikzlibraryfill.image.code.te x)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex Library (tcolorbox): 'tcbskinsjigsaw.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex Library (tcolorbox): 'tcbbreakable.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/pdfcol/pdfcol.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex Library (tcolorbox): 'tcbhooks.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex Library (tcolorbox): 'tcbtheorems.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex Library (tcolorbox): 'tcbfitting.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingsutf8.code.tex Library (tcolorbox): 'tcblistingsutf8.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistings.code.tex Library (tcolorbox): 'tcblistings.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg)) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcblistingscore.code.tex Library (tcolorbox): 'tcblistingscore.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbprocessing.code.tex Library (tcolorbox): 'tcbprocessing.code.tex' version '6.2.0' )))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbexternal.code.tex Library (tcolorbox): 'tcbexternal.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbmagazine.code.tex Library (tcolorbox): 'tcbmagazine.code.tex' version '6.2.0' ) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbvignette.code.tex Library (tcolorbox): 'tcbvignette.code.tex' version '6.2.0' (/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik zlibraryfadings.code.tex (/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code .tex))) (/usr/share/texlive/texmf-dist/tex/latex/tcolorbox/tcbposter.code.tex Library (tcolorbox): 'tcbposter.code.tex' version '6.2.0' )) (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpage2e.sty (/usr/share/texlive/texmf-dist/tex/latex/lastpage/lastpagemodern.sty) )) (/usr/share/texlive/texmf-dist/tex/latex/tabto-ltx/tabto.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty) (/usr/share/texlive/texmf-dist/tex/latex/titling/titling.sty) (/usr/share/texlive/texmf-dist/tex/latex/changepage/changepage.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/tabularx.sty) Writing index file canonical-charmed-mysql.idx (./canonical-charmed-mysql.aux) (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5.sty (/usr/share/texlive/texmf-dist/tex/latex/l3packages/l3keys2e/l3keys2e.sty) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/fontawesome5-utex-helper. sty (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomefree.fd) (/usr/share/texlive/texmf-dist/tex/latex/fontawesome5/tufontawesomebrands.fd))) *geometry* driver: auto-detecting *geometry* detected driver: xetex (./canonical-charmed-mysql.out) (./canonical-charmed-mysql.out) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Underfull \hbox (badness 10000) in alignment at lines 332--332 [][] Overfull \hbox (1.13809pt too wide) in paragraph at lines 332--333 [][] [1] (./canonical-charmed-mysql.toc) LaTeX Warning: Reference `LastPage' on page 1 undefined on input line 371. [1] LaTeX Warning: Reference `LastPage' on page 2 undefined on input line 434. [2] Chapter 1. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 447. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 447. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 3 undefined on input line 467. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 3 undefined on input line 467. LaTeX Warning: Hyper reference `how-to/data-migration/migrate-data-via-backup-r estore:migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Reference `how-to/data-migration/migrate-data-via-backup-restore :migrate-data-backup-restore' on page 3 undefined on input line 475. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 3 undefined on input line 479. LaTeX Warning: Hyper reference `reference/troubleshooting/known-scenarios:known -scenarios' on page 3 undefined on input line 479. LaTeX Warning: Reference `reference/troubleshooting/known-scenarios:known-scena rios' on page 3 undefined on input line 479. LaTeX Warning: Hyper reference `explanation/logs/index:logs' on page 3 undefine d on input line 479. LaTeX Warning: Reference `explanation/logs/index:logs' on page 3 undefined on i nput line 479. LaTeX Warning: Hyper reference `explanation/interfaces-and-endpoints:interfaces -and-endpoints' on page 3 undefined on input line 491. LaTeX Warning: Reference `explanation/interfaces-and-endpoints:interfaces-and-e ndpoints' on page 3 undefined on input line 491. LaTeX Warning: Hyper reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/users:users' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/roles:roles' on page 3 undefined on input line 495. LaTeX Warning: Hyper reference `explanation/architecture:architecture' on page 3 undefined on input line 495. LaTeX Warning: Reference `explanation/architecture:architecture' on page 3 unde fined on input line 495. LaTeX Warning: Reference `LastPage' on page 3 undefined on input line 500. [3] Chapter 2. LaTeX Warning: Hyper reference `reference/index:reference' on page 4 undefined on input line 519. LaTeX Warning: Reference `reference/index:reference' on page 4 undefined on inp ut line 519. LaTeX Warning: Hyper reference `explanation/index:explanation' on page 4 undefi ned on input line 523. LaTeX Warning: Reference `explanation/index:explanation' on page 4 undefined on input line 523. LaTeX Warning: Reference `LastPage' on page 4 undefined on input line 528. [4] Chapter 3. LaTeX Warning: Hyper reference `reference/system-requirements:system-requiremen ts' on page 5 undefined on input line 610. LaTeX Warning: Reference `reference/system-requirements:system-requirements' on page 5 undefined on input line 610. LaTeX Warning: Reference `LastPage' on page 5 undefined on input line 619. [5] LaTeX Warning: Reference `LastPage' on page 6 undefined on input line 713. [6] Underfull \hbox (badness 10000) in paragraph at lines 717--720 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][] [] [] [] [] [] [][][][][][][][][] [] [][][][][][][][][] [] [][ ][][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 7 undefined on input line 817. [7] LaTeX Warning: Reference `LastPage' on page 8 undefined on input line 893. [8] LaTeX Warning: Hyper reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `explanation/users:users' on page 9 undefined on input line 924. LaTeX Warning: Reference `LastPage' on page 9 undefined on input line 976. [9] LaTeX Warning: Reference `LastPage' on page 10 undefined on input line 1088. [10] LaTeX Warning: Reference `LastPage' on page 11 undefined on input line 1145. [11] LaTeX Warning: Reference `LastPage' on page 12 undefined on input line 1218. [12] LaTeX Warning: Reference `LastPage' on page 13 undefined on input line 1281. [13] LaTeX Warning: Reference `LastPage' on page 14 undefined on input line 1371. [14] LaTeX Warning: Reference `LastPage' on page 15 undefined on input line 1422. [15] LaTeX Warning: Reference `LastPage' on page 16 undefined on input line 1515. [16] LaTeX Warning: Reference `LastPage' on page 17 undefined on input line 1572. [17] LaTeX Warning: Reference `LastPage' on page 18 undefined on input line 1670. [18] Overfull \vbox (1.66681pt too high) detected at line 1726 LaTeX Warning: Reference `LastPage' on page 19 undefined on input line 1726. [19] LaTeX Warning: Reference `LastPage' on page 20 undefined on input line 1806. [20] LaTeX Warning: Reference `LastPage' on page 21 undefined on input line 1894. [21] Underfull \hbox (badness 10000) in paragraph at lines 1974--1977 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][] [] [][][][][][][] [][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][] [] [][][ ][][][][][][] [] [][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 22 undefined on input line 1980. [22] LaTeX Warning: Reference `LastPage' on page 23 undefined on input line 2082. [23] LaTeX Warning: Reference `LastPage' on page 24 undefined on input line 2161. [24] Overfull \hbox (3.299pt too wide) in paragraph at lines 2165--2168 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][]$| Overfull \hbox (16.45703pt too wide) in paragraph at lines 2224--2227 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][][][][][][][][] [] [][] [][][][][][][][][][][][][][][][][] [] [][][] [] [][] [] [][][][][][] [] [][][][ ][][][] [] [][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][][] [][][][][]$| LaTeX Warning: Reference `LastPage' on page 25 undefined on input line 2239. [25] LaTeX Warning: Reference `LastPage' on page 26 undefined on input line 2322. [26] LaTeX Warning: Reference `LastPage' on page 27 undefined on input line 2396. [27] LaTeX Warning: Hyper reference `reference/charm-testing:charm-testing' on page 28 undefined on input line 2450. LaTeX Warning: Reference `reference/charm-testing:charm-testing' on page 28 und efined on input line 2450. LaTeX Warning: Reference `LastPage' on page 28 undefined on input line 2453. [28] LaTeX Warning: Reference `LastPage' on page 29 undefined on input line 2532. [29] LaTeX Warning: Reference `LastPage' on page 30 undefined on input line 2600. [30] LaTeX Warning: Reference `LastPage' on page 31 undefined on input line 2674. [31] LaTeX Warning: Reference `LastPage' on page 32 undefined on input line 2720. [32] LaTeX Warning: Reference `LastPage' on page 33 undefined on input line 2787. [33] LaTeX Warning: Reference `LastPage' on page 34 undefined on input line 2869. [34] LaTeX Warning: Reference `LastPage' on page 35 undefined on input line 2946. [35] LaTeX Warning: Reference `LastPage' on page 36 undefined on input line 3014. [36] Overfull \vbox (1.48517pt too high) detected at line 3077 LaTeX Warning: Reference `LastPage' on page 37 undefined on input line 3077. [37] LaTeX Warning: Reference `LastPage' on page 38 undefined on input line 3139. [38] LaTeX Warning: Reference `LastPage' on page 39 undefined on input line 3212. [39] LaTeX Warning: Reference `LastPage' on page 40 undefined on input line 3277. [40] LaTeX Warning: Reference `LastPage' on page 41 undefined on input line 3362. [41] Overfull \vbox (2.00815pt too high) detected at line 3432 LaTeX Warning: Reference `LastPage' on page 42 undefined on input line 3432. [42] LaTeX Warning: Reference `LastPage' on page 43 undefined on input line 3495. [43] LaTeX Warning: Reference `LastPage' on page 44 undefined on input line 3567. [44] LaTeX Warning: Reference `LastPage' on page 45 undefined on input line 3632. [45] LaTeX Warning: Reference `LastPage' on page 46 undefined on input line 3702. [46] Underfull \hbox (badness 10000) in paragraph at lines 3724--3727 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][][][][][] [] [][][][][][] [] [][][][] [] [][][][][][][][] [] [][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 47 undefined on input line 3787. [47] LaTeX Warning: Reference `LastPage' on page 48 undefined on input line 3861. [48] LaTeX Warning: Reference `LastPage' on page 49 undefined on input line 3933. [49] LaTeX Warning: Reference `LastPage' on page 50 undefined on input line 3992. [50] LaTeX Warning: Reference `LastPage' on page 51 undefined on input line 4060. [51] LaTeX Warning: Reference `LastPage' on page 52 undefined on input line 4154. [52] LaTeX Warning: Reference `LastPage' on page 53 undefined on input line 4243. [53] Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! Missing character: There is no ℹ (U+2139) in font [UbuntuMono-R.ttf]/OT:script= latn;language=dflt;! LaTeX Warning: Reference `LastPage' on page 54 undefined on input line 4290. [54] LaTeX Warning: Reference `LastPage' on page 55 undefined on input line 4348. [55] LaTeX Warning: Reference `LastPage' on page 56 undefined on input line 4444. [56] LaTeX Warning: Reference `LastPage' on page 57 undefined on input line 4506. [57] LaTeX Warning: Reference `LastPage' on page 58 undefined on input line 4567. [58] LaTeX Warning: Reference `LastPage' on page 59 undefined on input line 4631. [59] LaTeX Warning: Reference `LastPage' on page 60 undefined on input line 4707. [60] LaTeX Warning: Reference `LastPage' on page 61 undefined on input line 4782. [61] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 62 undefin ed on input line 4822. LaTeX Warning: Reference `reference/contacts:contacts' on page 62 undefined on input line 4822. LaTeX Warning: Reference `LastPage' on page 62 undefined on input line 4853. [62] LaTeX Warning: Reference `LastPage' on page 63 undefined on input line 4932. [63] LaTeX Warning: Reference `LastPage' on page 64 undefined on input line 5009. [64] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 65 undefin ed on input line 5025. LaTeX Warning: Reference `reference/contacts:contacts' on page 65 undefined on input line 5025. LaTeX Warning: Reference `LastPage' on page 65 undefined on input line 5104. [65] Underfull \hbox (badness 10000) in paragraph at lines 5167--5170 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 66 undefined on input line 5198. [66] Underfull \hbox (badness 10000) in paragraph at lines 5222--5225 [][][][][]$[][][][][] [] [] [] [][][][][][][][][][][][][] [] [][][][][][] [] [] [][] [] [][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][] [] [][ ][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 67 undefined on input line 5281. [67] LaTeX Warning: Reference `LastPage' on page 68 undefined on input line 5360. [68] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 69 undefined on input line 5413. LaTeX Warning: Reference `LastPage' on page 69 undefined on input line 5456. [69] LaTeX Warning: Reference `LastPage' on page 70 undefined on input line 5514. [70] LaTeX Warning: Reference `LastPage' on page 71 undefined on input line 5573. [71] LaTeX Warning: Reference `LastPage' on page 72 undefined on input line 5637. [72] LaTeX Warning: Reference `LastPage' on page 73 undefined on input line 5704. [73] LaTeX Warning: Reference `LastPage' on page 74 undefined on input line 5770. [74] LaTeX Warning: Reference `LastPage' on page 75 undefined on input line 5823. [75] LaTeX Warning: Reference `LastPage' on page 76 undefined on input line 5888. [76] LaTeX Warning: Reference `LastPage' on page 77 undefined on input line 5956. [77] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/deploy:clust er-cluster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `how-to/cluster-cluster-replication/deploy:cluster-clu ster-deploy' on page 78 undefined on input line 6015. LaTeX Warning: Reference `LastPage' on page 78 undefined on input line 6018. [78] LaTeX Warning: Reference `LastPage' on page 79 undefined on input line 6108. [79] LaTeX Warning: Reference `LastPage' on page 80 undefined on input line 6201. [80] LaTeX Warning: Reference `LastPage' on page 81 undefined on input line 6312. [81] LaTeX Warning: Reference `LastPage' on page 82 undefined on input line 6375. [82] LaTeX Warning: Reference `LastPage' on page 83 undefined on input line 6449. [83] Underfull \hbox (badness 10000) in paragraph at lines 6495--6498 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][][][][][][][][][][][][] [] [][][][] [] [][][][] [] [][][][][][][][][][] [] [][][][][] [] [][][][][][] [] [][] [] [][][][][][] [ ] LaTeX Warning: Reference `LastPage' on page 84 undefined on input line 6507. [84] LaTeX Warning: Reference `LastPage' on page 85 undefined on input line 6597. [85] LaTeX Warning: Reference `LastPage' on page 86 undefined on input line 6666. [86] LaTeX Warning: Reference `LastPage' on page 87 undefined on input line 6736. [87] LaTeX Warning: Reference `LastPage' on page 88 undefined on input line 6805. [88] LaTeX Warning: Hyper reference `explanation/users:users' on page 89 undefined o n input line 6856. LaTeX Warning: Reference `explanation/users:users' on page 89 undefined on inpu t line 6856. LaTeX Warning: Reference `LastPage' on page 89 undefined on input line 6878. [89] LaTeX Warning: Reference `LastPage' on page 90 undefined on input line 6955. [90] LaTeX Warning: Hyper reference `explanation/users:users' on page 91 undefined o n input line 6959. LaTeX Warning: Reference `explanation/users:users' on page 91 undefined on inpu t line 6959. LaTeX Warning: Reference `LastPage' on page 91 undefined on input line 7027. [91] LaTeX Warning: Reference `LastPage' on page 92 undefined on input line 7099. [92] LaTeX Warning: Reference `LastPage' on page 93 undefined on input line 7161. [93] LaTeX Warning: Hyper reference `reference/contacts:contacts' on page 94 undefin ed on input line 7235. LaTeX Warning: Reference `reference/contacts:contacts' on page 94 undefined on input line 7235. LaTeX Warning: Reference `LastPage' on page 94 undefined on input line 7243. [94] LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/switchover-f ailover:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Reference `how-to/cluster-cluster-replication/switchover-failove r:cluster-cluster-switchover-failover' on page 95 undefined on input line 7282. LaTeX Warning: Hyper reference `how-to/cluster-cluster-replication/index:cluste r-cluster-replication' on page 95 undefined on input line 7293. LaTeX Warning: Reference `how-to/cluster-cluster-replication/index:cluster-clus ter-replication' on page 95 undefined on input line 7293. LaTeX Warning: Hyper reference `reference/troubleshooting/index:troubleshooting ' on page 95 undefined on input line 7297. LaTeX Warning: Reference `reference/troubleshooting/index:troubleshooting' on p age 95 undefined on input line 7297. LaTeX Warning: Reference `LastPage' on page 95 undefined on input line 7314. [95] LaTeX Warning: Reference `LastPage' on page 96 undefined on input line 7381. [96] LaTeX Warning: Reference `LastPage' on page 97 undefined on input line 7473. [97] LaTeX Warning: Reference `LastPage' on page 98 undefined on input line 7543. [98] LaTeX Warning: Reference `LastPage' on page 99 undefined on input line 7619. [99] LaTeX Warning: Reference `LastPage' on page 100 undefined on input line 7695. [100] LaTeX Warning: Reference `LastPage' on page 101 undefined on input line 7770. [101] LaTeX Warning: Reference `LastPage' on page 102 undefined on input line 7834. [102] LaTeX Warning: Reference `LastPage' on page 103 undefined on input line 7914. [103] LaTeX Warning: Reference `LastPage' on page 104 undefined on input line 7983. [104] LaTeX Warning: Reference `LastPage' on page 105 undefined on input line 8073. [105] LaTeX Warning: Reference `LastPage' on page 106 undefined on input line 8153. [106] LaTeX Warning: Reference `LastPage' on page 107 undefined on input line 8211. [107] LaTeX Warning: Reference `LastPage' on page 108 undefined on input line 8262. [108] Overfull \hbox (14.036pt too wide) in paragraph at lines 8278--8284 [][][][][][][][][][][] LaTeX Warning: Reference `LastPage' on page 109 undefined on input line 8300. [109] LaTeX Warning: Hyper reference `reference/alert-rules:alert-rules' on page 110 undefined on input line 8316. LaTeX Warning: Reference `reference/alert-rules:alert-rules' on page 110 undefi ned on input line 8316. LaTeX Warning: Reference `LastPage' on page 110 undefined on input line 8353. [110] Missing character: There is no   (U+202F) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 111 undefined on input line 8437. [111] LaTeX Warning: Reference `LastPage' on page 112 undefined on input line 8470. [112] LaTeX Warning: Reference `LastPage' on page 113 undefined on input line 8571. [113] LaTeX Warning: Reference `LastPage' on page 114 undefined on input line 8659. [114] Overfull \vbox (1.24065pt too high) detected at line 8716 LaTeX Warning: Reference `LastPage' on page 115 undefined on input line 8716. [115] LaTeX Warning: Reference `LastPage' on page 116 undefined on input line 8747. [116] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 117 undefined on input line 8876. LaTeX Warning: Reference `LastPage' on page 117 undefined on input line 8881. [117] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 118 undefined on input line 8891. Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! Missing character: There is no → (U+2192) in font [Ubuntu-R.ttf]/OT:script=latn ;language=dflt;! LaTeX Warning: Reference `LastPage' on page 118 undefined on input line 8943. [118] LaTeX Warning: Reference `LastPage' on page 119 undefined on input line 9026. [119] LaTeX Warning: Reference `LastPage' on page 120 undefined on input line 9114. [120] LaTeX Warning: Reference `LastPage' on page 121 undefined on input line 9180. [121] LaTeX Warning: Hyper reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Reference `reference/release-notes/index:release-notes' on page 122 undefined on input line 9205. LaTeX Warning: Reference `LastPage' on page 122 undefined on input line 9261. [122] LaTeX Warning: Reference `LastPage' on page 123 undefined on input line 9314. [123] LaTeX Warning: Reference `LastPage' on page 124 undefined on input line 9407. [124] LaTeX Warning: Reference `LastPage' on page 125 undefined on input line 9523. [125] LaTeX Warning: Reference `LastPage' on page 126 undefined on input line 9572. [126] LaTeX Warning: Reference `LastPage' on page 127 undefined on input line 9636. [127] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 128 undefined on input line 9639. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 128 undefined on input line 9639. LaTeX Warning: Reference `LastPage' on page 128 undefined on input line 9697. [128] Underfull \hbox (badness 10000) in paragraph at lines 9763--9766 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 129 undefined on input line 9775. [129] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 130 undefined on input line 9813. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 130 undefined on input line 9813. LaTeX Warning: Reference `LastPage' on page 130 undefined on input line 9850. [130] LaTeX Warning: Reference `LastPage' on page 131 undefined on input line 9910. [131] LaTeX Warning: Reference `LastPage' on page 132 undefined on input line 9982. [132] Underfull \hbox (badness 10000) in paragraph at lines 10012--10015 [][][][][]$[][][][][] [] [] [] [][][][][][] [] [][][] [] [][][][][][][][][] [] [][][][][][][][][][][][][][][][] [] [][][][] [] [][][][][][][][][][][][][][][][ ][][][][][][][][][][][][][][][][][][][][][][][][] [] LaTeX Warning: Reference `LastPage' on page 133 undefined on input line 10059. [133] LaTeX Warning: Hyper reference `reference/charm-statuses:charm-statuses' on pag e 134 undefined on input line 10062. LaTeX Warning: Reference `reference/charm-statuses:charm-statuses' on page 134 undefined on input line 10062. ) Runaway argument? [t]{TTTT} \sphinxtoprule \par \sphinxAtStartPar \par &\sphinxstyletheadfamily \ ETC. ! File ended while scanning use of \TY@get@body. \par <*> charmedmysql.tex ! Emergency stop. <*> charmedmysql.tex Output written on canonical-charmed-mysql.pdf (134 pages). Transcript written on canonical-charmed-mysql.log. Latexmk: ====Undefined refs and citations with line #s in .tex file: Reference `LastPage' on page 1 undefined on input line 371 Reference `LastPage' on page 2 undefined on input line 434 Reference `explanation/architecture:architecture' on page 3 undefined on input line 447 Reference `reference/system-requirements:system-requirements' on page 3 undefined on input line 447 Reference `reference/release-notes/index:release-notes' on page 3 undefined on input line 447 Reference `how-to/cluster-cluster-replication/index:cluster-cluster-replication' on page 3 undefined on input line 467 Reference `how-to/data-migration/migrate-data-via-backup-restore:migrate-data-backup-restore' on page 3 undefined on input line 475 And 171 more --- see log file 'canonical-charmed-mysql.log' Latexmk: Getting log file 'canonical-charmed-mysql.log' Latexmk: Examining 'canonical-charmed-mysql.fls' Latexmk: Examining 'canonical-charmed-mysql.log' Latexmk: Index file 'canonical-charmed-mysql.idx' was written Latexmk: Log file says output to 'canonical-charmed-mysql.pdf' Latexmk: Summary of warnings from last run of *latex: Latex failed to resolve 168 reference(s) =====Latex reported missing or unavailable character(s). =====See log file for details. Latexmk: Errors, in force_mode: so I tried finishing targets Collected error summary (may duplicate other messages): pdflatex: Command for 'pdflatex' gave return code 1 Refer to 'canonical-charmed-mysql.log' and/or above output for details