Oracle AI Database 26ai Software Only Installation and Configuration Step by Step - Part 1
Oracle AI Database 26ai Software Only Installation and Configuration Step by Step - Part 1 #26ai #database #databasetutorial #oracle
Install Oracle AI Database 26ai (23.26.1) for Linux x86-64 Step by Step: Here is the high level steps for the 26ai RDBMS binary installation: 1. Hardware Requirements The first thing we need to verify the hardware requirements -- Check Physical RAM. cat /proc/meminfo | grep Total -- Check Swap Space. cat /proc/meminfo |grep SwapTotal -- Check space available in /tmp df -h /tmp -- Check space for Oracle Software and pre-configured database. df -h /u01 -- Check CPU lscpu | grep -i "CPU(s):" | head -n 1 (or) nproc -- Check Memory free -g 2. Verify OS version uname -a (or) cat /etc/redhat-release 3. Download Software Download the Oracle software from OTN or eDelivery. https://www.oracle.com/database/techn... 4. Oracle Installation Prerequisites You can download the Oracle installation pre-requisites from oracle.com or you can install rpm package directly dnf install -y oracle-ai-database-preinstall-26ai validate the oracle user and reset the password: id oracle passwd oracle /etc/selinux/config SELINUX=permissive setenforce Permissive systemctl stop firewalld systemctl disable firewalld 5. Unzip RDBBS binary in to oracle home directory mkdir -p /u01/app/oracle/product/23.26.1.0/db_1 mkdir -p /u02/oradata chown -R oracle:oinstall /u01 /u02 chmod -R 775 /u01 /u02 Unzip software cd /u01/app/oracle/product/23.26.1.0/db_1 unzip LINUX.X64_2326100_db_home.zip 6. Installation: Interactive mode. ./runInstaller Run the root scripts when prompted. As a root user, execute the following script(s): 1. /u01/app/oraInventory/orainstRoot.sh 2. /u01/app/oracle/product/23.26.1.0/db_1/root.sh
Post a Comment: