forked from oraclebase/vagrant
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/oraclebase/vagrant
- Loading branch information
Showing
24 changed files
with
926 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Oracle 19c on Fedora 39 | ||
|
||
A simple Vagrant build for Oracle Database 19c on Fedora 39. | ||
|
||
## Required Software | ||
|
||
* [Vagrant](https://www.vagrantup.com/downloads.html) | ||
* [VirtualBox](https://www.virtualbox.org/wiki/Downloads) | ||
* [Oracle Database](https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle19c-linux-5462157.html) | ||
|
||
Place the Oracle database software in the "software" directory before calling the `vagrant up` command. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
# Variables | ||
var_box = 'oraclebase/fedora-39' | ||
var_vm_name = 'f39_19' | ||
var_mem_size = 6144 # More would be better. | ||
var_cpus = 2 | ||
var_non_rotational = 'on' # SSD | ||
var_disk1_name = './f39_19_u01.vdi' | ||
var_disk2_name = './f39_19_u02.vdi' | ||
var_disk_size = 100 | ||
var_public_ip = '192.168.56.140' | ||
|
||
# All Vagrant configuration is done below. The "2" in Vagrant.configure | ||
# configures the configuration version (we support older styles for | ||
# backwards compatibility). Please don't change it unless you know what | ||
# you're doing. | ||
Vagrant.configure("2") do |config| | ||
# The most common configuration options are documented and commented below. | ||
# For a complete reference, please see the online documentation at | ||
# https://docs.vagrantup.com. | ||
|
||
# Every Vagrant development environment requires a box. You can search for | ||
# boxes at https://vagrantcloud.com/search. | ||
config.vm.box = var_box | ||
|
||
# Disable automatic box update checking. If you disable this, then | ||
# boxes will only be checked for updates when the user runs | ||
# `vagrant box outdated`. This is not recommended. | ||
# config.vm.box_check_update = false | ||
|
||
# Create a forwarded port mapping which allows access to a specific port | ||
# within the machine from a port on the host machine. In the example below, | ||
# accessing "localhost:8080" will access port 80 on the guest machine. | ||
# NOTE: This will enable public access to the opened port | ||
# config.vm.network "forwarded_port", guest: 80, host: 8080 | ||
config.vm.network "forwarded_port", guest: 1521, host: 1521 | ||
config.vm.network "forwarded_port", guest: 5500, host: 5500 | ||
|
||
# Create a forwarded port mapping which allows access to a specific port | ||
# within the machine from a port on the host machine and only allow access | ||
# via 127.0.0.1 to disable public access | ||
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" | ||
|
||
# Create a private network, which allows host-only access to the machine | ||
# using a specific IP. | ||
config.vm.network "private_network", ip: var_public_ip | ||
|
||
# Create a public network, which generally matched to bridged network. | ||
# Bridged networks make the machine appear as another physical device on | ||
# your network. | ||
# config.vm.network "public_network" | ||
|
||
# Share an additional folder to the guest VM. The first argument is | ||
# the path on the host to the actual folder. The second argument is | ||
# the path on the guest to mount the folder. And the optional third | ||
# argument is a set of non-required options. | ||
# config.vm.synced_folder "../data", "/vagrant_data" | ||
|
||
# Provider-specific configuration so you can fine-tune various | ||
# backing providers for Vagrant. These expose provider-specific options. | ||
# Example for VirtualBox: | ||
# | ||
config.vm.provider "virtualbox" do |vb| | ||
vb.memory = var_mem_size | ||
vb.cpus = var_cpus | ||
vb.name = var_vm_name | ||
|
||
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', '0', '--nonrotational', var_non_rotational] | ||
|
||
unless File.exist?(var_disk1_name) | ||
vb.customize ['createhd', '--filename', var_disk1_name, '--size', var_disk_size * 1024] | ||
end | ||
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--nonrotational', var_non_rotational, '--medium', var_disk1_name] | ||
|
||
unless File.exist?(var_disk2_name) | ||
vb.customize ['createhd', '--filename', var_disk2_name, '--size', var_disk_size * 1024] | ||
end | ||
vb.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 2, '--device', 0, '--type', 'hdd', '--nonrotational', var_non_rotational, '--medium', var_disk2_name] | ||
end | ||
|
||
# Enable provisioning with a shell script. Additional provisioners such as | ||
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the | ||
# documentation for more information about their specific syntax and use. | ||
config.vm.provision "shell", inline: <<-SHELL | ||
sh /vagrant/scripts/setup.sh | ||
SHELL | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export ORACLE_BASE=/u01/app/oracle | ||
export ORA_INVENTORY=/u01/app/oraInventory | ||
export ORACLE_HOME_EXT=product/19.0.0/dbhome_1 | ||
export ORACLE_HOME=${ORACLE_BASE}/${ORACLE_HOME_EXT} | ||
|
||
export SOFTWARE_DIR=/u01/software | ||
export SCRIPTS_DIR=/home/oracle/scripts | ||
export DATA_DIR=/u02/oradata | ||
|
||
export ORACLE_SID=cdb1 | ||
export PDB_NAME=pdb1 | ||
export ORACLE_UNQNAME=${ORACLE_SID} | ||
|
||
export DB_SOFTWARE="LINUX.X64_193000_db_home.zip" | ||
export ORACLE_PASSWORD="oracle" | ||
export SYS_PASSWORD="SysPassword1" | ||
export PDB_PASSWORD="PdbPassword1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
#!/bin/bash | ||
echo "******************************************************************************" | ||
echo "Install OS Packages." `date` | ||
echo "******************************************************************************" | ||
echo "nameserver 8.8.8.8" >> /etc/resolv.conf | ||
|
||
dnf install -y dnf-utils zip unzip | ||
|
||
#dnf groupinstall "GNOME Desktop" -y | ||
#dnf groupinstall "Development Tools" -y | ||
#dnf groupinstall "Administration Tools" -y | ||
#dnf groupinstall "System Tools" -y | ||
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 | ||
|
||
# Added by me. | ||
yum install -y unixODBC | ||
|
||
# compat-libpthread-nonshared. | ||
dnf install -y libnsl2 | ||
dnf install -y libnsl2.i686 | ||
dnf install -y libxcrypt-compat | ||
dnf install -y https://rpmfind.net/linux/fedora/linux/development/rawhide/Everything/x86_64/os/Packages/c/compat-libpthread-nonshared-2.38.9000-19.fc40.x86_64.rpm | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Kernel parameters." `date` | ||
echo "******************************************************************************" | ||
cat > /etc/sysctl.d/98-oracle.conf <<EOF | ||
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 | ||
EOF | ||
|
||
/sbin/sysctl -p /etc/sysctl.d/98-oracle.conf | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Limits." `date` | ||
echo "******************************************************************************" | ||
cat > /etc/security/limits.d/oracle-database-server-19c-preinstall.conf <<EOF | ||
oracle soft nofile 1024 | ||
oracle hard nofile 65536 | ||
oracle soft nproc 16384 | ||
oracle hard nproc 16384 | ||
oracle soft stack 10240 | ||
oracle hard stack 32868 | ||
oracle hard memlock 134217728 | ||
oracle soft memlock 134217728 | ||
EOF | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Firewall." `date` | ||
echo "******************************************************************************" | ||
systemctl stop firewalld | ||
systemctl disable firewalld | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "SELinux." `date` | ||
echo "******************************************************************************" | ||
sed -i -e "s|SELINUX=enabled|SELINUX=permissive|g" /etc/selinux/config | ||
setenforce permissive | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "User setup." `date` | ||
echo "******************************************************************************" | ||
groupadd -g 54321 oinstall | ||
groupadd -g 54322 dba | ||
groupadd -g 54323 oper | ||
|
||
useradd -u 54321 -g oinstall -G dba,oper oracle | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Fix for Oracle on Fedora." `date` | ||
echo "******************************************************************************" | ||
rm -f /usr/lib64/libnsl.so.1 | ||
rm -f /usr/lib/libnsl.so.1 | ||
ln -s /usr/lib64/libnsl.so.3.0.0 /usr/lib64/libnsl.so.1 | ||
ln -s /usr/lib/libnsl.so.3.0.0 /usr/lib/libnsl.so.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
. /vagrant/config/install.env | ||
|
||
echo "******************************************************************************" | ||
echo "Create a listener.ora file if it doesn't already exist." `date` | ||
echo "******************************************************************************" | ||
if [ ! -f ${ORACLE_HOME}/network/admin/listener.ora ]; then | ||
echo "LISTENER = | ||
(DESCRIPTION_LIST = | ||
(DESCRIPTION = | ||
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1)) | ||
(ADDRESS = (PROTOCOL = TCP)(HOST = 0.0.0.0)(PORT = 1521)) | ||
) | ||
) | ||
USE_SID_AS_SERVICE_listener=on | ||
" > ${ORACLE_HOME}/network/admin/listener.ora | ||
fi | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Check if database already exists." `date` | ||
echo "******************************************************************************" | ||
if [ ! -d ${DATA_DIR}/${ORACLE_SID} ]; then | ||
|
||
echo "******************************************************************************" | ||
echo "The database files don't exist, so create a new database." `date` | ||
echo "******************************************************************************" | ||
lsnrctl start | ||
|
||
dbca -silent -createDatabase \ | ||
-templateName General_Purpose.dbc \ | ||
-gdbname ${ORACLE_SID} -sid ${ORACLE_SID} -responseFile NO_VALUE \ | ||
-characterSet AL32UTF8 \ | ||
-sysPassword ${SYS_PASSWORD} \ | ||
-systemPassword ${SYS_PASSWORD} \ | ||
-createAsContainerDatabase true \ | ||
-numberOfPDBs 1 \ | ||
-pdbName ${PDB_NAME} \ | ||
-pdbAdminPassword ${PDB_PASSWORD} \ | ||
-databaseType MULTIPURPOSE \ | ||
-memoryMgmtType auto_sga \ | ||
-totalMemory 1536 \ | ||
-storageType FS \ | ||
-datafileDestination "${DATA_DIR}" \ | ||
-redoLogFileSize 50 \ | ||
-emConfiguration NONE \ | ||
-ignorePreReqs | ||
|
||
echo "******************************************************************************" | ||
echo "Set the PDB to auto-start." `date` | ||
echo "******************************************************************************" | ||
sqlplus / as sysdba <<EOF | ||
alter system set db_create_file_dest='${DATA_DIR}'; | ||
alter pluggable database ${PDB_NAME} save state; | ||
alter system set local_listener='localhost'; | ||
exit; | ||
EOF | ||
|
||
|
||
echo "******************************************************************************" | ||
echo "Flip the auto-start flag." `date` | ||
echo "******************************************************************************" | ||
cp /etc/oratab /tmp | ||
sed -i -e "s|${ORACLE_SID}:${ORACLE_HOME}:N|${ORACLE_SID}:${ORACLE_HOME}:Y|g" /tmp/oratab | ||
cp -f /tmp/oratab /etc/oratab | ||
|
||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
. /vagrant/config/install.env | ||
|
||
echo "******************************************************************************" | ||
echo "Unzip software." `date` | ||
echo "******************************************************************************" | ||
mkdir -p ${ORACLE_HOME} | ||
cd ${ORACLE_HOME} | ||
unzip -oq /vagrant/software/${DB_SOFTWARE} | ||
|
||
# Fix suggested by Steven Kennedy. | ||
cd $ORACLE_HOME/lib/stubs | ||
mv libc.so libc.so.hide | ||
mv libc.so.6 libc.so.6.hide | ||
|
||
echo "******************************************************************************" | ||
echo "Do software-only installation." `date` | ||
echo "******************************************************************************" | ||
# Fake OS. | ||
export CV_ASSUME_DISTID=OEL7.8 | ||
|
||
${ORACLE_HOME}/runInstaller -ignorePrereq -waitforcompletion -silent \ | ||
-responseFile ${ORACLE_HOME}/install/response/db_install.rsp \ | ||
oracle.install.option=INSTALL_DB_SWONLY \ | ||
ORACLE_HOSTNAME=${ORACLE_HOSTNAME} \ | ||
UNIX_GROUP_NAME=oinstall \ | ||
INVENTORY_LOCATION=${ORA_INVENTORY} \ | ||
SELECTED_LANGUAGES=en,en_GB \ | ||
ORACLE_HOME=${ORACLE_HOME} \ | ||
ORACLE_BASE=${ORACLE_BASE} \ | ||
oracle.install.db.InstallEdition=EE \ | ||
oracle.install.db.OSDBA_GROUP=dba \ | ||
oracle.install.db.OSBACKUPDBA_GROUP=dba \ | ||
oracle.install.db.OSDGDBA_GROUP=dba \ | ||
oracle.install.db.OSKMDBA_GROUP=dba \ | ||
oracle.install.db.OSRACDBA_GROUP=dba \ | ||
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false \ | ||
DECLINE_SECURITY_UPDATES=true |
Oops, something went wrong.