Installing standard Python 3.9 binary on RHEL 9 at a standard or custom location
Cloudera Manager agents and Hue require Python 3.9 on RHEL 9. You must install Python 3.9.14 or higher on all cluster hosts before installing Cloudera Manager and adding services to your cluster. Follow the instructions in this topic to manually download, install, and build standard Python 3.9 binaries from source on RHEL 9 to install Python at a standard or custom location.
You must manually download, install, and build Python 3.9 from source to install Python at a custom location. You must also replace [***CUSTOM-INSTALL-PATH***] in the instructions with the custom path.
- gcc
- make
- openssl-devel
- bzip2-devel
- libffi-devel
- zlib-devel
yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel -y
- Enable Cloudera Manager to use Python 3.9 installed in a custom location
-
If you have installed Python 3.9 at a custom location, then you must either create a symbolic link using the alternatives command or by adding an environment variable to the Cloudera Manager Agent in the systemd service definition files with the full path to the Python 3.9 custom-built binary.
To use the alternatives command, get help by running the command alternatives --help. You should create symbolic links from either /usr/bin/python3.9 or /usr/local/bin/python3.9 to [***CUSTOM-INSTALL-PATH***]/bin/python3.9 where you installed the Python 3.9 package.
To add an environment variable to the Cloudera Manager Agent in the systemd service definition files perform the following steps:- SSH into the host system on which you installed Python 3.9 as a root user.
- Open the /usr/lib/systemd/system/cloudera-scm-supervisord.service file for editing.
- Add the following line in the
cloudera-scm-supervisord.service file
under the [Service]
section:
Environment=”PYTHONBIN=[***CUSTOM-INSTALL-PATH***]/bin/python3.9”
- Open the /usr/lib/systemd/system/cloudera-scm-agent.service file for editing.
- Add the following line in the
cloudera-scm-agent.service file under
the [Service]
section:
Environment=”PYTHONBIN=[***CUSTOM-INSTALL-PATH***]/bin/python3.9”
- Enable Hue to use Python 3.9 installed in a custom location
- If you have installed Python 3.9 in a custom location and you did not
configure alternatives, then you must prepend the custom path to the custom
bin directory in
Key: PATH
Value: [***CUSTOM-INSTALL-PATH***]:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin
separated by colon (:) as follows:
- Install the psycopg2-binary package
- Install the
psycopg2-binary
package after installing Python 3.9 for using PostgreSQL as a backend database for Hue.