ShadowJonathan commented on code in PR #610:
URL: 
https://github.com/apache/cloudstack-documentation/pull/610#discussion_r2627569511


##########
source/installguide/management-server/_pkg_install.rst:
##########
@@ -53,3 +53,22 @@ Install on Ubuntu
 
    sudo apt install cloudstack-management
 
+Install on Debian
+^^^^^^^^^^^^^^^^^
+
+
+.. parsed-literal::
+
+   sudo apt install cloudstack-management
+
+.. note::
+   MySQL Python connector is unavailable in Debian 12 (bookworm), please 
install the package provided by MySQL:

Review Comment:
   ```suggestion
      The MySQL Python connector is not available in Debian's package 
repository sources, please add MySQL's own package repository:
   ```



##########
source/installguide/management-server/_pkg_install.rst:
##########
@@ -53,3 +53,22 @@ Install on Ubuntu
 
    sudo apt install cloudstack-management
 
+Install on Debian
+^^^^^^^^^^^^^^^^^
+
+
+.. parsed-literal::
+
+   sudo apt install cloudstack-management
+
+.. note::
+   MySQL Python connector is unavailable in Debian 12 (bookworm), please 
install the package provided by MySQL:
+
+   .. code:: bash
+
+       wget https://dev.mysql.com/get/mysql-apt-config_0.8.36-1_all.deb -O 
/tmp/mysql-apt-config_0.8.36-1_all.deb
+       sudo apt install -y /tmp/mysql-apt-config_0.8.36-1_all.deb
+       sudo apt update
+       sudo apt install -y mysql-connector-python-py3

Review Comment:
   `mysql-connector-python-py3` will be resolvable as a dependency at this 
point, so this command isn't required.
   
   A side effect is that it'll mark this package as manually installed, meaning 
it'll stay behind on the system after someone uninstalls 
`cloudstack-management`.
   
   
   ```suggestion
   ```



##########
source/installguide/management-server/_pkg_install.rst:
##########
@@ -53,3 +53,22 @@ Install on Ubuntu
 
    sudo apt install cloudstack-management
 
+Install on Debian
+^^^^^^^^^^^^^^^^^
+
+
+.. parsed-literal::
+
+   sudo apt install cloudstack-management

Review Comment:
   I'd say to put this line *after* the note about the mysql python connector, 
else people will run this line before seeing the note about mysql's package 
repository.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to