安装centos 5.1 和其他linux一样,默认安装,安装完成之后开启ftp
vi /etc/xinetd.d/gssftp
1.server_args = -l –a 去掉-a 改为server_args = -l
2.disable=yes改为disable=no
保存退出
如需用telnet
vi /etc/xinetd.d/krb5-telnet
将disable=yes,改为disable=no,保存退出
然后把服务重启service xinetd restart
1如果命令不存在 加上路径/sbin/service xinetd restart
2如果命令未知 就去下载安装yum -y install xinetd*然后service xinetd restart就ok了。
到时可以远程上传文件。
安装oracle:
由于oracle 官方不提供redhat 5和centos所有版本的文档,所以你肯定要修改检查版本信息时的文件。
以下提供3种方法
1.修改解压文件里的文件。路径解压路径/install/oraparam.ini文件,在里面的
[Certified Versions]
Linux=redhat-3,redhat-4等等,之后添加centos-5这样就可以通过版本检查了(但是本人尝试的时候失败了,不推荐这个方法,知道在这里有进行操作系统匹配就行了)
2替代/etc/redhat-release (for 5.1,by default :CentOS release 5 (Final).)
删除默认的,修改为redhat-4,或备份后新建文件然后修改为redhat-4.最后安装完再设置回来
3./runInstaller -ignoreSysPrereqs没有试过,大致意思为了跳过对操作系统认证或检查,不过这个对于后面的安装没影响的。
安装数据库时先安装一些包,对比redhat 4 x86官方文档上的包,全装(除了如下几个包不一定要安装:compat-libstdc++-(已安装但是rpm -q查不到),gnome-libs-,pdksh,xscreensaver,这4个包不需要安装)还需要安装libaio-0*,libXp-1*,和openmotif-2*这3个包,这样不会出现缺包问题了。最后还需要libstdc++。安装以上所有包不会出现我以下出现的问题。
其他配置如redhat 4上oracle10g在x86上安装一样了。redhat enterprise linux server release 5.2安装oracle 10g 别人的参考文档(没测试过)
http://hi.baidu.com/zifan/blog/item/065a0eb33b3a66abd9335a51.html
。。。出现问题
1./runInstaller 后出现如下问题
[oracle@localhost linux]$ ./runInstaller
Initializing Java Virtual Machine from /tmp/OraInstall2008-08-25_11-53-58AM/jre/bin/java. Please wait...
Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2008-08-25_11-53-58AM/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1330)
at java.lang.Runtime.loadLibrary0(Runtime.java:744)
at java.lang.System.loadLibrary(System.java:815)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:48)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:36)
at sun.awt.DebugHelper.(DebugHelper.java:29)
at java.awt.Component.(Component.java:351)
在上面出现/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
Initializing Java Virtual Machine from /tmp/OraInstall2008-08-25_11-53-58AM/jre/bin/java. Please wait...
Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2008-08-25_11-53-58AM/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1330)
at java.lang.Runtime.loadLibrary0(Runtime.java:744)
at java.lang.System.loadLibrary(System.java:815)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:48)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:36)
at sun.awt.DebugHelper.(DebugHelper.java:29)
at java.awt.Component.(Component.java:351)
在上面出现/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
估计是包问题。解决方法是yum install libXt.i386,下载安装包就可以解决这个问题了。
2 INFO: /usr/lib/libstdc++.so.5: No such file or directory
INFO:
INFO:
INFO: /oracle/product/10.2.0/db_1/bin/genorasdksh: Failed to link liborasdkbase.so.10.2
INFO: make: *** [liborasdkbase] Error 1
INFO: End output from spawned process.
INFO: ----------------------------------
INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'all_no_orcl ihsodbc' of makefile '/oracle/product/10.2.0/db_1/rdbms/lib/ins_rdbms.mk'. See '/oracle/oraInventory/logs/installActions2010-05-12_10-15-55AM.log' for details.
INFO: ----------------------------------
INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'all_no_orcl ihsodbc' of makefile '/oracle/product/10.2.0/db_1/rdbms/lib/ins_rdbms.mk'. See '/oracle/oraInventory/logs/installActions2010-05-12_10-15-55AM.log' for details.
也是包问题,安装libstdc++包就解决问题了。
之后没有因为包的缘故出现问题。
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/22608279/viewspace-662507/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/22608279/viewspace-662507/