search
HomeDatabaseMysql TutorialCentOS下远程静默安装Oracle 10g笔记

#CentOS 4.7 Oracle 10.2.0.1 #scp user@host 10201_database_linux_x86_64.cpio /local 解压到/home/oracle/database #cpio -iv

#CentOS 4.7 Oracle 10.2.0.1

#scp user@host 10201_database_linux_x86_64.cpio /local

解压到/home/oracle/database

#cpio -ivmd

CentOS下远程静默安装Oracle 10g笔记

#######################

## 系统环境设置

#######################

1)查看kernel版本

#cat /proc/version

#uname -a

#uname -r

2)查看LINUX版本

#lsb_release -a

cat /etc/issue

以下两种方法只对RedHat Linux有效

cat /etc/redhat-release

rpm -q redhat-release

3)检查swap分区大小

#free

swapon

cat /proc/swaps

符合要求跳过,,缺少的话要增加swap分区

查看可以在那里创建这个文件。

# df -ah

例如:

在/tmp下创建一个1000M的空间

(mkswap swapon 命令均在/sbin目录下 执行./mkswap)

#cd /tmp

#mkdir swaptmp

#cd swaptmp

#dd if=/dev/zero of=/tmp/swaptmp/newswap bs=1024 count=1000000

#./mkswap /tmp/swaptmp/newswap

#./swapon /tmp/swaptmp/newswap

查看是否成功启用了

#swapon -s

最后加在/etc/fstab,每次开机都会自动启用swap

4)安装Oracle所必须的软件包

运行如下命令检查所需包是否都已安装。

# rpm -q binutils compat-db compat-libstdc++-33 control-center \

gcc gcc-c++ glibc glibc-common libgnome libstdc++ \

libstdc++-devel make ksh sysstat gnome-screensaver setarch libXp

输出

binutils-2.17.50.0.6-6.el5

compat-db-4.2.52-5.1

compat-libstdc++-33-3.2.3-61

control-center-2.16.0-16.el5

gcc-4.1.2-42.el5

gcc-c++-4.1.2-42.el5

glibc-2.5-24

glibc-common-2.5-24

libgnome-2.16.0-6.el5

libstdc++-4.1.2-42.el5

libstdc++-devel-4.1.2-42.el5

make-3.81-3.el5

ksh-20060214-1.7

sysstat-7.0.2-1.el5

gnome-screensaver-2.16.1-8.el5

setarch-2.0-1.1

libXp-1.0.0-8.1.el5

如果没有出现“not found”字样则表示已安装。

缺少相应的软件包可以在下载

安装出错的解决办法

NOKEY, key ID 详解

# rpm -ivh make-3.81-3.el5.x86_64.rpm –force –nodeps

linux

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.