Mail Filter Alert Monitors and filters incoming and unread emails based on user-defined keywords, displaying matches in a beautiful centralized dashboard in Thunderbird. Setup Mail Rule Mail Alert Dashboard
Posts
Oracle 11gR2 (11.2.0.4) Installation OL8 (Oracle Linux 8)
- Get link
- X
- Other Apps
Oracle Linux 8 is certified with 11.2.0.4 only. Below is the instructions to install 11.2.0.4 on OL8. Do a fresh installation of OL8 and perform OS patch. Hostname: orcldb1 Host IP: 192.168.0.113 1) vi /etc/hosts 192.168.0.113 orcldb1 2) vi /etc/sysconfig/selinux SELINUX=disabled setenforce disabled 3) Disable firewall systemctl stop firewalld systemctl disable firewalld 4) OS Setting groupadd -g 1100 oinstall groupadd -g 1200 asmadmin groupadd -g 1201 asmdba groupadd -g 1202 asmoper groupadd -g 1300 dba groupadd -g 1301 oper useradd -m -u 1101 -g oinstall -G dba,oper,asmdba -d /home/oracle -s /bin/bash -c "Oracle Software Owner" oracle passwd oracle mkdir -p /u01/app/oracle chown oracle:oinstall /u01/app/oracle chmod -R 775 /u01 cat >> /etc/security/limits.conf <<EOF grid soft nproc 2047 grid hard nproc 16384 grid soft nofile 1024 grid hard nofile 65536 oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 EOF cat >...