It is not easy to install the Oracle10G Database Under Fedora8. After some time of exploration, I finally installed it successfully! Now let's share the entire process.
1. Download Software
10201_database_linux32.zip
2. decompress the file
Unzip 10201_database_linux32.zip3.Host Filevi/etc/hosts generally do not need to be modified, you can also configure the real ip address, the format is <IP-address> <fully-qualified-machine-name> <machine-name> 4.Set Kernel ParametersAdd the following lines to the/etc/sysctl. conf file: kernel. shmall = 2097152kernel. shmmax = 2147483648kernel. shmmni = 4096 # semaphores: semmsl, semmns, semopm, semmnikernel. sem = 250 32000 100 FS. file-max = 65536net. ipv4.ip _ local_port_range = 1024 65000net. core. rmem_default = 262144net. core. rmem_max = 262144net. core. wmem_default = 262144net. core. wmem_max = 262144Run the following command to change the current kernel parameters:/sbin/sysctl-pAdd the following lines to the/etc/security/limits. conf file:
* Soft nproc 2047 * hard nproc 16384 * soft nofile 1024 * hard nofile 65536
Add the following line to the/etc/pam. d/login file, if it does not already exist:
Session required/lib/security/pam_limits.so
Disable secure linux by editing the/etc/selinux/config file, making sure the SELINUX flag is set as follows:
SELINUX = disabled
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9 ..
- 11
- Next Page
|