Oracle Database 19c Installation On Oracle Linux 8 and 9 step by step Bangla

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ส.ค. 2024
  • Welcome to Amazing World In this comprehensive tutorial, we guide you through the process of installing Oracle Database 19c on Oracle Linux 8 and 9, all explained in Bangla.
    What's Covered:
    Introduction: Get to know the essentials of Oracle Database 19c and why it's a powerful choice.
    System Requirements: Ensure your system is ready for a seamless installation.
    Oracle Linux 8 and 9 Installation: Step-by-step guide on installing Oracle Linux for a robust database environment.
    Oracle Database 19c Installation: Navigate through the Oracle Database installation process, breaking down each step in detail.
    Configuration Tips: Learn important configurations to optimize your Oracle Database performance.
    Why Watch?
    Detailed step-by-step instructions.
    Bangla language support for better understanding.
    Tips and best practices for a smooth installation.
    📁 Resources:
    Instruction File-1 drive.google.c...
    Alternative Link-
    drive.google.c...
    MS Word File ( Converted PDF)- Link: drive.google.c...
    Useful Links: Oracle Database 19c download: www.oracle.com...
    Oracle Linux 8 and 9 download: yum.oracle.com...
    Thanks for Watching!
    If you found this tutorial helpful, please like, share, and leave your comments below. We appreciate your support!
    About Kernel • Linux kernel Bangla 1 Red hat linux 9 installation step by step • Red hat linux 9 instal... Oracle Database 19c Installation On Oracle Linux 8 • Oracle Database 19c In... Oracle Database 19c Installation, Environment, Toad and TNS ora configuration • Oracle Database 19c In...
    #oracledatabase #OracleLinux #banglatutorial #techguide #stepbysteptutorial

ความคิดเห็น • 9

  • @AmazingWorld827
    @AmazingWorld827  3 หลายเดือนก่อน

    STEP-1 Set Host IP and name
    =================================================================================================
    Show host name
    #cat /etc/hosts
    #vi /etc/hosts
    192.168.33.6 rezaul.com rezaul
    i for insart
    Enter for go down
    without save
    q!

    For save file
    esc
    Shift :
    #:wq!
    Show host name again
    #cat /etc/hosts
    STEP-2 (dnf Install)
    =============================================================================================
    #dnf install -y oracle-database-preinstall-19c
    #yum update -y
    Problem and Trouble Shoot (dnf install does not work)
    {{ Prob: dnf install -y oracle-database-preinstall-19c
    Last metadata expiration check: 0:06:40 ago on Thu 27 Oct 2022 11:55:30 AM PKT.
    No match for argument: oracle-database-preinstall-19c
    Error: Unable to find a match: oracle-database-preinstall-19c)
    Solved: curl -o oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm yum.oracle.com/repo/OracleLinux/OL8/appstream/x86_64/getPackage/oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm
    yum -y localinstall oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm
    It will take almost 30 minutes (depend on net speed)
    STEP-3 (dnf Install)
    ===============================================================================================
    The following packages are listed as required. Don't worry if some don't install. It won't prevent the installation.
    dnf install -y bc
    dnf install -y binutils
    #dnf install -y compat-libcap1
    dnf install -y compat-libstdc++-33
    #dnf install -y dtrace-modules
    #dnf install -y dtrace-modules-headers
    #dnf install -y dtrace-modules-provider-headers
    #dnf install -y dtrace-utils
    dnf install -y elfutils-libelf
    dnf install -y elfutils-libelf-devel
    dnf install -y fontconfig-devel
    dnf install -y glibc
    dnf install -y glibc-devel
    dnf install -y ksh
    dnf install -y libaio
    dnf install -y libaio-devel
    #dnf install -y libdtrace-ctf-devel
    dnf install -y libXrender
    dnf install -y libXrender-devel
    dnf install -y libX11
    dnf install -y libXau
    dnf install -y libXi
    dnf install -y libXtst
    dnf install -y libgcc
    dnf install -y librdmacm-devel
    dnf install -y libstdc++
    dnf install -y libstdc++-devel
    dnf install -y libxcb
    dnf install -y make
    dnf install -y net-tools # Clusterware
    dnf install -y nfs-utils # ACFS
    dnf install -y python # ACFS
    dnf install -y python-configshell # ACFS
    dnf install -y python-rtslib # ACFS
    dnf install -y python-six # ACFS
    dnf install -y targetcli # ACFS
    dnf install -y smartmontools
    dnf install -y sysstat
    STEP-4
    ===============================================================================
    #dnf install -y unixODBC
    STEP-5
    =================================================================================
    dnf install -y glibc-headers
    dnf install -y ipmiutil
    dnf install -y libnsl2
    dnf install -y libnsl2-devel
    dnf install -y net-tools
    dnf install -y nfs-utils
    STEP-6 (New for OL8)
    ====================================================================================
    dnf install -y libnsl
    dnf install -y libnsl.i686
    dnf install -y libnsl2
    dnf install -y libnsl2.i686
    STEP-7 : Create the new groups and users.
    ======================================================================================
    groupadd -g 54321 oinstall
    groupadd -g 54322 dba
    groupadd -g 54323 oper
    STEP-8: Create oracle users
    ======================================================================================
    useradd -u 54321 -g oinstall -G dba,oper oracle

    STEP-9: Set user password
    ========================================================================================
    passwd oracle
    STEP-10
    ===========================================================================================
    Additional Setup
    Set the password for the "oracle" user. (Set secure Linux to
    permissive by editing the "/etc/selinux/config" file, making sure
    the SELINUX flag is set as follows. )
    Go Terminal and edit file
    vi /etc/selinux/config

    SELINUX=permissive [Change IT]
    then esc and save
    #:wq!
    then exit
    STEP-11
    =============================================================================
    #setenforce Permissive
    STEP-12 : Firewall stop
    ===============================================================================
    systemctl stop firewalld
    systemctl disable firewalld
    STEP-13 : Create Group
    ==============================================================================
    mkdir -p /u01/app/oracle/product/19.0.0/dbhome_1
    mkdir -p /u02/oradata
    chown -R oracle:oinstall /u01 /u02
    chmod -R 775 /u01 /u02
    ===========================================================================
    ---mkdir -p /u01/app/oracle/product/19.0.0/dbhome_1
    ---mkdir -p /u01/app/oracle/oradata
    ---chown -R oracle:oinstall /u01
    ---chown -R oracle:oinstall /u01 /u01/app/oracle/oradata
    ---chmod -R 775 /u01
    ---chmod -R 775 /u01 /app/oracle/oradata
    STEP-14 : Create a "scripts" directory.
    ===================================================================================
    mkdir /home/oracle/scripts
    STEP-15 : Create an environment fileCreate a "scripts" directory.
    =========================================================================================
    #cat > /home/oracle/scripts/setEnv.sh /home/oracle/.bash_profile
    STEP-17
    =====================================================================================
    (Create a "start_all.sh" and "stop_all.sh" script that can be called from a startup/shutdown service. Make sure the ownership and permissions are correct.)
    #cat > /home/oracle/scripts/start_all.sh

  • @mybeautifulbangladesh1
    @mybeautifulbangladesh1 6 หลายเดือนก่อน +1

    MasaAllah 💝 🎉❤

  • @AmazingWorld827
    @AmazingWorld827  3 หลายเดือนก่อน +1

    Now Script open for everyone

  • @AmazingWorld827
    @AmazingWorld827  6 หลายเดือนก่อน

    এখানে ভিডিও এডিট করতে গিয়ে একটা মিসÑটেক হয়েছে STEP-17 ও STEP-18 দেখা-নো হয়নি।
    =====================================================================================
    Step-17 ((Create a "start_all.sh" and "stop_all.sh" script that can be called from a startup/shutdown service. Make sure the ownership and permissions are correct.)
    #cat > /home/oracle/scripts/start_all.sh

  • @metyazidan9509
    @metyazidan9509 3 หลายเดือนก่อน

    Hello vai ami install korchi cent os e
    Issue asle comment korbo😊

  • @hoanglong5139
    @hoanglong5139 4 หลายเดือนก่อน +1

    I need file txt bro