动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息

本月文章推荐
.Oracle9i 資料庫管理實務講座(一).
.以Oracle为例说明如何通过ODBC将.
.Oracle&Linux--完美的组合.
.SQLPlus 使用技巧.
.Oracle中压缩数据节省空间和提高.
.SQL模拟达芬奇密码中文站首页数字.
.Oracle DBA如何管理DB2.
.oracle中读写blob字段的问题.
.如何移数据库文件.
.IDE 磁盘性能调整及其测试方法.
.如何自动获取Oracle数据库启动时.
.Oracle 10g数据库中如何分析响应.
.Oracle 10g + SQL SERVER 2000 透.
.Oracle的字符集问题.
.Oracle 软件结构小结.
.Oracle的操作符优化技术初步.
.Oracle OpenWorld 2005(图).
.教你快速掌握“外连接”的两种标.
.用GRUB来引导软盘映象——节约软.
.Oracle 10g Installer 创建临时文.

oracle 10G 安装 for Linux86

发表日期:2008-2-9 |



   Configuring Linux for the Installation of Oracle Database 10gPurpose
In this lesson, you learn how to configure Linux and prepare for the installation of Oracle Database 10g.
Topics
This lesson covers the following topics:

OverviewPrerequisitesChecking the Hardware RequirementsConfiguring the Kernel and Creating the oracle User
Viewing Screenshots
Place the cursor on this icon to display all the screenshots in the lesson. You can also place the cursor on each individual icon in the following steps to see only the screenshot that is associated with that step.
Overview
Back to List

The lesson prepares the Linux operating system for the installation of Oracle Database 10g.

Prerequisites
Back to Topic List

Before starting this lesson, you should have:

1.
Installed an Oracle Database 10g certified version of Linux on a platform certified for that version of Linux. To see the latest certification information, use Metalink and select Certify & Availability. You can also use OTN.

 



Checking the Hardware Requirements
Back to Topic List

The system on which you install Linux must meet the following requirements:


512 MB of physical random Access memory (RAM)

1 GB of swap space (or twice the size of RAM)

Swap space between one and two times the size of RAM (on systems with 2 GB or more of RAM)

400 MB of disk space in the /tmp Directory

2.1 GB of disk space for the Oracle software and Sample Schema Database

Configuring the Kernel and Creating the oracle User
Back to Topic List

To configure the system, follow these steps (written for Bourne, Korn, and bash shells):

1.
Open a terminal window and log in as the root user.

 
2.
The following local UNIX groups and user must exist on the system:

Groups: oinstall and dba
User: oracle

Optionally, the oper group can be created.

Group: oper

We now create the three groups oinstall, dba, and oper:

/usr/sbin/groupadd oinstall/usr/sbin/groupadd dba/usr/sbin/groupadd oper



 
3.
Create the operating system user oracle:

/usr/sbin/useradd -g oinstall -G dba,oper oracle




4.
Enter the following command to set the passWord of the oracle user:

/usr/bin/passwd oracle



 

5.
With an editor of your choosing, open /home/oracle/.bash_profile. If you are using another shell, please add the entries to the appropriate file.

umask 022PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/binLD_LIBRARY_PATH=/usr/lib:/usr/X11R6/lib ORACLE_BASE=/u01/app/oracleORACLE_HOME=$ORACLE_BASE/prodUCt/10.1.0/db_1ORACLE_SID=orclPATH=$ORACLE_HOME/bin:$PATHeXPort PATH LD_LIBRARY_PATHexport ORACLE_BASE ORACLE_HOME ORACLE_SID



 
6.
Create the directory for the software installation and assign ownership to oracle:oinstall. In the example, you use /u01/app/oracle.

mkdir -p /u01/app/oraclechown -R oracle:oinstall /u01/appchmod -R 775 /u01/app



 
7.
Set required kernel parameters:

Parameter Value---------------------------- -----------------kernel.semmsl 250kernel.semmns 3200kernel.semopm 100kernel.semmni 128kernel.shmall 2097152kernel.shmmax 2147483648kernel.shmmni 4096fs.file-max 65536net.ipv4.ip_local_port_range 1024 65000

Open the /etc/sysctl.conf file in any text editor and add lines similar to the following:

kernel.sem = 250 32000 100 128
kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000

With specified values for these parameters in the /etc/sysctl.conf file, the values persist when you reboot the system.



 
8.
The kernel changes made previously take effect with each reboot.

Issue this command to set the kernel parameters:

/sbin/sysctl -p



 
9.
Log in as operating system user oracle. You must install the software from an X Window System workstation, an X terminal, or a PC or other system with X server software installed.

 

Installing Oracle Database 10g on LinuxPurpose
In this lesson, you learn how to install Oracle Database 10g on Linux.
Topics
This lesson covers the following topics:

OverviewPrerequisitesInstalling Oracle Database 10g on Linux
Viewing Screenshots
Place the cursor on this icon to display all the screenshots in the lesson. You can also place the cursor on each individual icon in the following steps to see only the screenshot that is associated with that step.
Overview
Back to List

Using the Oracle Universal Installer, you install the Oracle Database 10g software and create a database.

Prerequisites
Back to Topic List

Before starting this lesson, you should have:

1.
Completed the Configuring Linux for the Installation of Oracle Database 10g lesson.

 




Installing Oracle Database 10g on Linux
Back to Topic List

To install the Oracle software, you must use the GUI installer.

1.
Log in to the Linux box as user oracle and mount the Oracle Database 10g CD. Change directory to the CD and execute the script /mnt/cdrom/runInstaller from your home directory:


/mnt/cdrom/runInstaller



 



 
2.
At the Welcome window, click Next.



 
3.
You need to specify your Inventory directory. The location should be set to /u01/app/oracle/oraInventory. Accept the default Operating System group name, oinstall. Then click Next.



 
4.
The following window appears. Leave this window open.



 
5.
You need to execute orainstRoot.sh as the root user. Open a terminal window and enter the following commands:

su<rootpassword>cd /u01/app/oracle/oraInventory./orainstRoot.shexitexit



 
6.
Switch back to the Universal Installer window and click Continue.



 
7.
At the Specify File Locations window, change the path to /u01/app/oracle/product/10.1.0/db_1. Then click Next.



 
8.
Make sure the Installation Type Enterprise Edition is selected and click Next.



 
9.
The installer now verifies that the system meets all the minimum requirements for installing and configuring the chosen product. Please correct any reported issues before continuing. When the check successfully completes, click Next.



 
10.
You want to create a starter database. Make sure that Create a starter database and General Purpose are both selected. Then click Next.



 
11.
Enter orcl.oracle.com in the Global Database Name field, and select the Create database with example schemas check box. Then click Next. If you plan to perform any of the multilingual lessons, you should select Unicode standard UTF-8 AL32UTF8 as the database character set.



 
12.
The Select Database Management Option window enables you to choose between Database Control or Grid Control of your database. In this example, you accept the default, which is Database Control. Click Next.



 
13.
Specify the database file location as /u01/app/oracle/oradata and click Next.



 
14.
In the Specify Backup and Recovery Options window, you do not want to enable automated backups at this time. Accept the default and click Next.



 
15.
Enter and confirm a password for all accounts, and then click Next.



 
16.
Review the Summary window to verify what is to be installed. Then click Install.



 

17.
The progress window appears.



 
18.
The Configuration Assistants window appears.



 
19.
Your database is now being created.



 
20.
When the database is created, click OK.



 
21.
When the Setup Privileges window appears, open a new terminal window.



 
22.
You need to execute root.sh as the root user. From your terminal window, enter the following commands:

cd $ORACLE_BASE/product/10.1.0/db_1su<rootpassword>./root.shexitexit



 
23.
The End of Installation summary appears. The ports shown in the summary can be found in $ORACLE_BASE/product/10.1.0/db_1/portlist.ini. Click OK.



 
24.
Click Yes to exit.



 


Place the cursor on this icon to hide all screenshots.
上一篇:oracle产品服务和技术级别介绍 人气:544
下一篇:ORACLE 9.2.0.4 PATCHES 安装! 人气:724
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-12-2 OpenPNE中文 v2.12.5 for win 中
2008-12-2 谷秋精品课程软件课程版 v2.3
2008-12-2 晴天电影系统(带一键迅雷/自定义
2008-12-2 QQip138闪字程序
2008-12-2 SmartWeb企业智能建站系统 v1.0.2
2008-12-2 梦想不死个人主页 v2009
2008-12-2 开良ASP小偷程序生成器 v1.1
2008-12-2 toolxp.cnalexa世界排名查询 php
2008-12-2 腾讯留言板 v1.3
2008-11-29 Tencent Traveler 4.4
2008-11-29 龙卷风网络收音机 v3.0.0.0
2008-11-29 Intel Chipset Software Install
2008-11-29 TweakVI 1.0 Build 1100
2008-11-29 Opera 9.62 Build 10469
2008-11-29 MPlayer WW编译版 SVN-r28044(20
2008-11-29 NetTools网络工具v1.0.0破解版
2008-11-29 3DGallery三维体验1.1破解版
2008-11-29 SecretBook保密本v1.0破解版
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | OPEN参数生成器 | 弹出式窗口代码产生器 | 密码登录生成器 | 在线按钮生成器 | Meta标签生成器 | 多色彩特效字代码生成器 | 网页代码调试器 | 在线FTP登陆 | Flash取色器 | 配色代码对照表 | 配色辞典 | CSS生成器 | 广告代码 | 框架网页代码生成器 | js/vbs加密 | md5加密 | 进制转换 | UTF-8 转换工具 | 在线调色板 | Html转换js | Html转换asp | Html转换php | Html转换perl
实用工具:汉字翻译拼音 | 拼音字典 | 符号对照表 | 个税计算 | 实时汇率查询换算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 | 国家代码与域名缩写 | 文字加密解密 | 元素周期表 | 健康查询 | 世界时间 | 万年历 | 二十四节气 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2009 www.knowsky.com All rights reserved | 沪ICP备05001343号