DBA Hub

📋Steps in this guide1/8

Oracle Database 12c Release 1 (12.1) Installation On Fedora 25 (F25)

A brief guide to installing Oracle 12c Release 1 (12.1) on Fedora 25 (F25).

oracle 12cconfigurationintermediate
by OracleDba
13 views
1

Download Software

Download the Oracle software from OTN or MOS depending on your support status.
2

Unpack Files

Unzip the files. You should now have a single directory called "database" containing installation files.

Code/Command (click line numbers to comment):

1
2
unzip linuxamd64_12102_database_1of2.zip
unzip linuxamd64_12102_database_2of2.zip
3

Hosts File

The "/etc/hosts" file must contain a fully qualified name for the server. For example. Set the correct hostname in the "/etc/hostname" file.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
<IP-address>  <fully-qualified-machine-name>  <machine-name>

127.0.0.1       localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.56.141  fedora25.localdomain  fedora25

fedora25.localdomain
4

Set Kernel Parameters

Add the following lines to the "/etc/sysctl.conf" file, or in a file called "/etc/sysctl.d/98-oracle.conf". Run one of the following commands to change the current kernel parameters, depending on which file you edited. Add the following lines to a file called "/etc/security/limits.d/oracle-rdbms-server-12cR1-preinstall.conf" file. Set SELinux to permissive by editing the "/etc/selinux/config" file, making sure the SELINUX flag is set as follows. The server will need a reboot for the change to take effect.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
fs.file-max = 6815744
kernel.sem = 250 32000 100 128
kernel.shmmni = 4096
kernel.shmall = 1073741824
kernel.shmmax = 4398046511104
kernel.panic_on_oops = 1
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
net.ipv4.conf.all.rp_filter = 2
net.ipv4.conf.default.rp_filter = 2
fs.aio-max-nr = 1048576
net.ipv4.ip_local_port_range = 9000 65500

/sbin/sysctl -p
# Or
/sbin/sysctl -p /etc/sysctl.d/98-oracle.conf

oracle   soft   nofile    1024
oracle   hard   nofile    65536
oracle   soft   nproc    16384
oracle   hard   nproc    16384
oracle   soft   stack    10240
oracle   hard   stack    32768
oracle   hard   memlock    134217728
oracle   soft   memlock    134217728

session    required     pam_limits.so

# systemctl stop firewalld
# systemctl disable firewalld

SELINUX=permissive
5

Setup

Before we consider the packages required by the Oracle installation, it's probably worth making sure some basic package groups are installed. If you have installed the suggested package groups, the majority of the necessary packages will already be installed. The following packages are listed as required, including the 32-bit version of some of the packages. Many of the packages should be installed already. Create the new groups and users. We are not going to use the extra groups, but include them if you do plan on using them. Create the directories in which the Oracle software will be installed. Putting mount points directly under root without mounting separate disks to them is typically a bad idea. It's done here for simplicity, but for a real installation "/" storage should be reserved for the OS. If you are using X Emulation, login as root and issue the following command. Edit the "/etc/redhat-release" file replacing the current release information "Fedora release 25 (Twenty Five)" with the following. Login as the oracle user and add the following lines at the end of the "/home/oracle/.bash_profile" file.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
dnf groupinstall "MATE Desktop" -y
dnf groupinstall "Development Tools" -y
dnf groupinstall "Administration Tools" -y
dnf groupinstall "System Tools" -y
dnf install firefox -y

dnf install binutils -y
dnf install compat-libstdc++-33 -y
dnf install compat-libstdc++-33.i686 -y
dnf install gcc -y
dnf install gcc-c++ -y
dnf install glibc -y
dnf install glibc.i686 -y
dnf install glibc-devel -y
dnf install glibc-devel.i686 -y
dnf install ksh -y
dnf install libgcc -y
dnf install libgcc.i686 -y
dnf install libstdc++ -y
dnf install libstdc++.i686 -y
dnf install libstdc++-devel -y
dnf install libstdc++-devel.i686 -y
dnf install libaio -y
dnf install libaio.i686 -y
dnf install libaio-devel -y
dnf install libaio-devel.i686 -y
dnf install libXext -y
dnf install libXext.i686 -y
dnf install libXtst -y
dnf install libXtst.i686 -y
dnf install libX11 -y
dnf install libX11.i686 -y
dnf install libXau -y
dnf install libXau.i686 -y
dnf install libxcb -y
dnf install libxcb.i686 -y
dnf install libXi -y
dnf install libXi.i686 -y
dnf install make -y
dnf install sysstat -y
dnf install unixODBC -y
dnf install unixODBC-devel -y
dnf install zlib-devel -y

groupadd -g 54321 oinstall
groupadd -g 54322 dba
groupadd -g 54323 oper
#groupadd -g 54324 backupdba
#groupadd -g 54325 dgdba
#groupadd -g 54326 kmdba
#groupadd -g 54327 asmdba
#groupadd -g 54328 asmoper
#groupadd -g 54329 asmadmin

useradd -u 54321 -g oinstall -G dba,oper oracle
passwd oracle

mkdir -p /u01/app/oracle/product/12.1.0.2/db_1
chown -R oracle:oinstall /u01
chmod -R 775 /u01

xhost +<machine-name>

redhat release 7

# Oracle Settings
export TMP=/tmp
export TMPDIR=$TMP

export ORACLE_HOSTNAME=fedora25.localdomain
export ORACLE_UNQNAME=cdb1
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.1.0.2/db_1
export ORACLE_SID=cdb1

export PATH=/usr/sbin:$PATH
export PATH=$ORACLE_HOME/bin:$PATH

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
6

Installation

Log into the oracle user. If you are using X emulation then set the DISPLAY environmental variable. Start the Oracle Universal Installer (OUI) by issuing the following command in the database directory. Proceed with the installation of your choice. Ignore any warnings about the system configuration. You can see the type of installation I performed by clicking on the links below to see screen shots of each stage. - Configure Security Updates - My Oracle Support Credentials - Select Installation Type - System Class - Grid Installation Options - Select Install Type - Typical Install Configuration - Create Inventory - Perform Prerequisite Checks - Summary - Install Product - Execute Configuration Scripts - Oracle Database Configuration - Database Configuration Assistant - Database Configuration Assistant Complete - Finish - Database Express 12c Login - Database Express 12c Dashboard The "Database Configuration Assistant Complete" screen displays the Database Express 12c URL, which will be something like "https://fedora25.localdomain:5500/em".

Code/Command (click line numbers to comment):

1
2
3
DISPLAY=<machine-name>:0.0; export DISPLAY

./runInstaller
7

Installation Problems

If you are doing this installation in a VM on a Mac/PC with a new-ish chipset, you may encounter some issues, especially around the Perl installation. If so, check out these notes. During the linking phase, you may see the following error. To fix it, run the following command as the "oracle" user, then click the "Retry" button. During the database creation as part of the installation, or after when using the DBCA, you may get the following error. To fix it, follow the instructions to rebuild Perl as described towards the end of this post by Laurent Leturgez . You will have to redo the database creation.

Code/Command (click line numbers to comment):

1
2
3
4
5
Error in invoking target 'irman ioracle' of makefile '/u01/app/oracle/product/12.1.0.2/db_1/rdbms/lib/ins_rdbms.mk'

cp  $ORACLE_HOME/javavm/jdk/jdk6/lib/libjavavm12.a $ORACLE_HOME/lib/

Error while executing "/u01/app/oracle/product/12.1.0.2/db_1/rdbms/admin/dbmssml.sql". Refer to "/u01/app/oracle/cfgtoollogs/dbca/orcl/dbmssml0.log" for more details. Error in Process: /u01/app/oracle/product/12.1.0.2/db_1/perl/bin/perl
8

Post Installation

Edit the "/etc/redhat-release" file restoring the original release information. Edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'. For more information see: Hope this helps. Regards Tim...

Code/Command (click line numbers to comment):

1
2
3
Fedora release 25 (Twenty Five)

cdb1:/u01/app/oracle/product/12.1.0.2/db_1:Y

Comments (0)

Please to add comments

No comments yet. Be the first to comment!