当前位置: 技术问答>linux和unix
高分求救:装redhat7.2成功,装oracle8.1.7也成功,建数据库成功后,
来源: 互联网 发布时间:2014-12-13
本文导语: 请问这是什么原因,最重要的是有什么解决办法啊?我可不想再重装一次了,惨啊..(我用的是移动PC,只有光驱,没有软驱,没有建启动软盘),谁给我解决办法,我愿意送分送分.... | 给你一个安装步骤,...
请问这是什么原因,最重要的是有什么解决办法啊?我可不想再重装一次了,惨啊..(我用的是移动PC,只有光驱,没有软驱,没有建启动软盘),谁给我解决办法,我愿意送分送分....
|
给你一个安装步骤,你借鉴一下吧
1.创建oracle帐号
以root帐号登录,开启一个terminal窗口,创建oracle用户
[root@dbs /root]useradd oracle
[root@dbs /root]passwd oracle (设置oralce帐号的密码)
系统自动创建了/home/oracle目录,属主为oracle。我的Oracle就准备装
在此目录下
2.解压缩oracle8161_tar.gz
以root帐号登录,执行:
[root@dbs /root] cd /backup
[root@dbs /backup] tar zxvf oracle8161_tar.gz
在/backup/目录下生成Oralce8iR2目录,内含解包后的文件
3.设置oracle用户环境
使用oracle帐号登录,开启terminal窗口, 使用文本编辑器打开
/home/oracle/.bash_profile最后加
入如下环境变量的设置行:
ORACLE_HOME=/home/oracle; export ORACLE_HOME
LD_LIBRARY_PATH=/home/oracle/lib; export LD_LIBRARY_PATH
ORACLE_BASE=/home/oracle; export ORACLE_BASE
ORACLE_SID=ORCL; export ORACLE_SID
ORA_NLS33=/home/oracle/ocommon/nls/admin/data; export ORA_NLS33
NLS_LANG=american_america.zhs16cgb231280;export NLS_LANG
Log out,重新以oracle帐号登录,键入env指令查看刚才设置的环境变量。
[oracle@dbs oracle]env
4.创建oracle数据文件目录
我想把数据文件放在/home/oracle/data目录下,于是
[oracle@dbs oracle] mkdir data
5.安装Oracle 8i 数据库软件
(1)用oracle帐号登录,进入Xwindows,开启terminal窗口
(2)[oracle@dbs oracle] cd /backup/Oracle8iR2
(3)在oracle用户窗口下继续安装
[oracle@dbs Oralcle8iR2] ./runInstaller
在出现的基于JAVA的Oracle installer界面上,点击Next
(4) 在File Locations界面上,检查Destination Path为/home/oracle,点击Next
(5)在Unix Group Name窗口中,键入"oracle",点击Next;
(6)一个窗口会弹出,要求以root身份运行/home/oracle/orainstRoot.sh
(7)切换到terminal窗口,并切换到root身份运行如下:
[root@dbs /root] cd /home/oracle
[root@dbs oracle]./orainstRoot.sh
(8)返回刚才弹出的窗口,点击Retry
(9)在出现的"Available products"窗口上选择"Oracle8I enterprise edition8.1.6.1.0",点击Next
(10)下一个画面上选择Typical ,点击Next
(11)在Privileged Operating System Groups界面上,点击Next
(12)提示输入global database name, 输入 ORCL
验证ORACLE_SID为ORCL,点击Next
(13)提示输入db files localtion,输入/home/oracle/data,点击Next
(14)在最后的Summary窗口上,点击Install
(15)现在正式开始安装了,30分钟左右就完成
(16)在文件被拷贝和联接后,弹出一个要求运行root.sh的窗口,切换到root用户窗口,
[root@dbs oracle]./root.sh
在询问local bin directory时按下Enter键
(17)返回要求运行root.sh的窗口上,点击OK
(18)Oracle Net8 Configuration和Oracle Database Configuration Assistants启动,
安装Net8和创建数据库。 这一步花20分钟左右的时间。
(19)Oracle Database Configuration Assistants结束后,在弹出的完成数据库创建窗口上点击OK
(20)在End of Installation画面上,点击Exit ,在弹出的Do you reallywant to exit?
窗口上点击yes
现在所有的Oralce 8i Enterprise就安装好了! 可以使用Oracle数据库管理工具svrmgrl、
sql*plus来对安装好的数据库进行测试!
6.测试
[oracle@dbs oracle] svrmgrl
SVRMGR>connect internal
Connected.
SVRMGR> shutdown
Database closed.
SVRMGR>startup
SVRMGR> quit
Server Manager complete
关闭启动数据库正常。再用sqlplus试试
Enter user-name: scott
Enter password: tiger
Connected to:
Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
SQL> select * from emp
测试完毕,数据库成功安装
1.创建oracle帐号
以root帐号登录,开启一个terminal窗口,创建oracle用户
[root@dbs /root]useradd oracle
[root@dbs /root]passwd oracle (设置oralce帐号的密码)
系统自动创建了/home/oracle目录,属主为oracle。我的Oracle就准备装
在此目录下
2.解压缩oracle8161_tar.gz
以root帐号登录,执行:
[root@dbs /root] cd /backup
[root@dbs /backup] tar zxvf oracle8161_tar.gz
在/backup/目录下生成Oralce8iR2目录,内含解包后的文件
3.设置oracle用户环境
使用oracle帐号登录,开启terminal窗口, 使用文本编辑器打开
/home/oracle/.bash_profile最后加
入如下环境变量的设置行:
ORACLE_HOME=/home/oracle; export ORACLE_HOME
LD_LIBRARY_PATH=/home/oracle/lib; export LD_LIBRARY_PATH
ORACLE_BASE=/home/oracle; export ORACLE_BASE
ORACLE_SID=ORCL; export ORACLE_SID
ORA_NLS33=/home/oracle/ocommon/nls/admin/data; export ORA_NLS33
NLS_LANG=american_america.zhs16cgb231280;export NLS_LANG
Log out,重新以oracle帐号登录,键入env指令查看刚才设置的环境变量。
[oracle@dbs oracle]env
4.创建oracle数据文件目录
我想把数据文件放在/home/oracle/data目录下,于是
[oracle@dbs oracle] mkdir data
5.安装Oracle 8i 数据库软件
(1)用oracle帐号登录,进入Xwindows,开启terminal窗口
(2)[oracle@dbs oracle] cd /backup/Oracle8iR2
(3)在oracle用户窗口下继续安装
[oracle@dbs Oralcle8iR2] ./runInstaller
在出现的基于JAVA的Oracle installer界面上,点击Next
(4) 在File Locations界面上,检查Destination Path为/home/oracle,点击Next
(5)在Unix Group Name窗口中,键入"oracle",点击Next;
(6)一个窗口会弹出,要求以root身份运行/home/oracle/orainstRoot.sh
(7)切换到terminal窗口,并切换到root身份运行如下:
[root@dbs /root] cd /home/oracle
[root@dbs oracle]./orainstRoot.sh
(8)返回刚才弹出的窗口,点击Retry
(9)在出现的"Available products"窗口上选择"Oracle8I enterprise edition8.1.6.1.0",点击Next
(10)下一个画面上选择Typical ,点击Next
(11)在Privileged Operating System Groups界面上,点击Next
(12)提示输入global database name, 输入 ORCL
验证ORACLE_SID为ORCL,点击Next
(13)提示输入db files localtion,输入/home/oracle/data,点击Next
(14)在最后的Summary窗口上,点击Install
(15)现在正式开始安装了,30分钟左右就完成
(16)在文件被拷贝和联接后,弹出一个要求运行root.sh的窗口,切换到root用户窗口,
[root@dbs oracle]./root.sh
在询问local bin directory时按下Enter键
(17)返回要求运行root.sh的窗口上,点击OK
(18)Oracle Net8 Configuration和Oracle Database Configuration Assistants启动,
安装Net8和创建数据库。 这一步花20分钟左右的时间。
(19)Oracle Database Configuration Assistants结束后,在弹出的完成数据库创建窗口上点击OK
(20)在End of Installation画面上,点击Exit ,在弹出的Do you reallywant to exit?
窗口上点击yes
现在所有的Oralce 8i Enterprise就安装好了! 可以使用Oracle数据库管理工具svrmgrl、
sql*plus来对安装好的数据库进行测试!
6.测试
[oracle@dbs oracle] svrmgrl
SVRMGR>connect internal
Connected.
SVRMGR> shutdown
Database closed.
SVRMGR>startup
SVRMGR> quit
Server Manager complete
关闭启动数据库正常。再用sqlplus试试
Enter user-name: scott
Enter password: tiger
Connected to:
Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
SQL> select * from emp
测试完毕,数据库成功安装
|
应该跟oracle没关系,是你把引导区破坏了,如果你不会重写MBR,就得重新安装
|
windows启动盘启动后,运行fdisk /mbr重写引导区
|
用安装光盘启动,可以使用维护模式进入的