一、U盘启动盘制作。
1.download software 【UltraISO】。
2.download OS file 【[Linux.5.4].rhel-server-5.4-i386-dvd.iso】。
3.copy 【boot.iso】 from iso file,detail directory【/images/boot.iso】。
4.open boot.iso by UltraISO。
5.refrence operation by images。
PS:写入硬盘映像时会自动读出U盘,另外请选择USB-HDD+方式。
6.write after the success ,copy OS file to U disk。
7.reboot the computer,set the first start item is usb startup。
8.in the installation process ,please select 【 Hard disk--> sdb】。
二、安装Oracle。
zip:unzip **.zip
tar.gz:tar -zxvf **.tar.gz
bin:make **.bin
rpm:rpm -i **.rpm
edit file:vi fileName --> insert
copy contents:shift + insert
save file:esc-->:wq
don't save:esc-->q!
基础命令就列这几个,其他的自己查吧,生于忧患而死于安乐。
1.download oracle 【10201_database_linux32.zip】。
2.check package。
【rpm -q gcc make binutils openmotif】
what if missing package you need installed。
3.edit sysctl.conf。
【vi /etc/sysctl.conf】
add the following contents in the last line
***********************************************************************
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default = 1048576
net.core.rmem_max = 1048576
net.core.wmem_default = 262144
net.core.wmem_max = 262144
***********************************************************************
4.operation command let the kernel parameters effect。
【su - root】
【sysctl -p】
5.edit limits.conf。
【vi /etc/security/limits.conf】
add the following contents in the last line
***********************************************************************
soft nproc 2047
hard nproc 16384
soft nofile 1024
hard nofile 65536
***********************************************************************
6.edit login file。
【vi /etc/pam.d/login】
add the following contents in the last line
***********************************************************************
session required /lib/security/pam_limits.so
***********************************************************************
7.close selinux。
【vi /etc/selinux/confg】
set secure linux disabled
SELINUX=disabled
8.edit hosts file。
【vi /etc/hosts】
delete 127.0.0.1 line
ip address computeName localhost
9.edit OS version。
【vi /etc/redhat-release】
update 5.4 to other (4 or other)
10.addgroup and user。
【groupadd oinstall】
【groupadd dba】
【useradd -g oinstall -G dba oracle】
【passwd oracle】
11.create install directory and authorized。
【mkdir -p /u01/app/oracle/product/10.2.0/db_1】
【chown -R oracle.oinstall /u01】
12.edit【.bash_profile】 file in the oracle user base directory。
【cd /home/oracle】
【vi .bash_profile】
add following contents in the last line。
************************************************************************
# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR
ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1; export ORACLE_HOME
ORACLE_SID=orcl; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=$PATH:$ORACLE_HOME/bin; export PATH
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JREORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib; export CLASSPATH
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
************************************************************************
13.extract installation file to /tmp and authorized。
【cp 10201_database_linux32.zip /tmp】
【cd /tmp】
【unzip 10201_database_linux32.zip】
【chmod -R 775 /tmp/database】
14.install Oracle 10g。
1>.open a teminal with root and execute following command
【xhost +】
2>.open another teminal with oracle user and execute following command
【export LANG=en_US】
3>.start install
【cd /tmp/database】
【./runinstaller】
PS:安装到最后处理sqlplus时,系统会要求用root账户执行两个脚本,这时可以在刚才的第一个终端(root)上按提示找到要执行的脚本然后执行后继续操作,如果安装失败,请检查是否开启1521端口。
相关推荐
mac for jdk1.6 jdk6 安装版 里面有两个jdk1.6的安装包,都可以用 如果电脑上安装有1.7,1.8等高版本jdk就不要再下安装包了,安装包安装会报错 命令是这个:brew install java6或 brew install homebrew/cask-...
java jdbc oracle (JDK1.6)驱动
Oracle 11g、PL/SQL Developer、JDK 1.6 和 Tomcat 6.0 是四个在IT行业中至关重要的软件组件,尤其对于企业级Java应用的开发和部署而言。接下来,我们将深入探讨这些软件的功能、安装过程以及它们如何协同工作。 ...
【标题】"Tomcat 8.5.20与JDK 1.7、1.8及1.6的兼容性解析" 在IT行业中,Tomcat作为一款广泛应用的开源Java Servlet容器,对于Java Web应用程序的部署和运行起着至关重要的作用。本篇将详细讨论Tomcat 8.5.20版本与...
### jdk1.6与绿色版tomcat5.5安装配置详解 #### 一、安装配置JDK 1.6.0_17 **1.1 下载JDK** 由于JDK 1.6.0_17的安装包较大,通常需要从官方网站或其他可靠来源下载。本教程中提到的绿色版本JDK可以更方便地进行...
IBM JDK 1.6是IBM公司为Java开发者提供的一个针对Linux 64位操作系统的Java开发工具包。这个版本的JDK是Java平台标准版(Java SE)的一部分,主要用于开发和运行Java应用程序、Web应用程序以及企业级应用。IBM JDK与...
### Linux安装JDK1.6 #### 知识点概览 - **下载与准备**:获取JDK1.6的安装包,并将其放置在适当的目录。 - **权限设置**:确保安装文件具有执行权限。 - **安装过程**:通过RPM包管理器安装JDK1.6。 - **环境变量...
JDK1.6是Oracle公司发布的一个早期版本,虽然现在已有更新的版本如JDK 8、11或17,但有些老旧的项目可能仍依赖于这个版本。本文将深入探讨JDK1.6的特点、用途以及免安装版的优缺点。 首先,JDK1.6包含了Java编译器...
Java开发工具包(JDK)1.6 64位和Tomcat 6.0.45 64位是两个关键组件,用于在Windows x64操作系统上构建和部署Java应用程序,特别是Web应用程序。以下是关于这两个组件及其相关知识点的详细说明: 1. **Java ...
IBM JDK1.6 安装版
1. **JAVA_HOME**:这个环境变量指向JDK的安装目录,例如解压后的JDK1.6文件夹路径。设置JAVA_HOME可以帮助其他依赖于Java的程序找到JDK的位置。 2. **PATH**:在PATH环境变量中添加%JAVA_HOME%\bin,这样系统就能...
它支持Oracle数据库的版本从10g Release 2 (10.2.0.4.0) 到12c Release 1 (12.1.0.2.0)。由于JDK 1.6已经不再受到官方支持,所以在新的开发环境中可能需要考虑升级JDK版本。 ojdbc7.jar:此驱动适用于JDK 1.7及以上...
这个Demo项目展示了如何在较旧的环境,如JDK 1.6和Tomcat 6上运行SpringBoot 1.5.6的Web程序。尽管SpringBoot通常建议使用更新的Java版本和内置的Tomcat服务器,但有时由于兼容性或遗留系统的需求,可能需要在较低...
linux安装JDK1.6以及tomcat
1. **编译器优化**:JDK 1.6的编译器进行了显著优化,名为“Client Compiler”和“Server Compiler”的两种编译模式提供更好的性能适应性。Server Compiler在多线程应用中表现出色,而Client Compiler适合轻量级的...
1. **下载和安装JDK1.6**:确保操作系统中已经安装并配置了正确的JDK版本,这是运行Tomcat的前提。 2. **解压Tomcat7**:将压缩包解压到指定目录,通常是`C:\Program Files\Apache Software Foundation`。 3. **配置...
根据提供的标题、描述以及部分内容,我们可以总结出与JDK1.6百度云下载相关的几个重要知识点: ### 一、JDK1.6简介 Java Development Kit(简称JDK)是Sun Microsystems公司针对Java语言开发的一套开发工具包,它...
1. **下载JDK1.6安装包**:首先访问Oracle官方网站或其他可信来源下载适用于Linux系统的JDK1.6安装包。确保选择适合您Linux系统架构(例如i586或x86_64)的版本。 2. **上传至服务器**:通过FTP工具或其他方式将...