Currently, the search engine cannot identify image content. How can it enable the search engine to identify and display images? Seo; seo. ee: SEO is updated on the SEO official website. Friends who like to learn can add their favorite items. Everyone has knowledge about seo.
Welcome to the Oracle community forum and interact with 2 million technical staff> go to step 1. Basic configuration: 1. Log On As root and mount the linux iso file [root @ oracle ~] # Hostname oracle.junjie.com [root @ oracle ~] # Cat/etc/sysconfig/network NETWORKING = yes NETWORKING_IPV6 = no HOSTNAME = oracle
Welcome to the Oracle community forum and interact with 2 million technical staff> enter
I. Basic Configuration:
1. Log On As root and mount the linux iso file
[Root @ oracle ~] # Hostname
Oracle.junjie.com
[Root @ oracle ~] # Cat/etc/sysconfig/network
NETWORKING = yes
NETWORKING_IPV6 = no
HOSTNAME = oracle.junjie.com
[Root @ oracle ~] # Ifconfig eth0
Eth0 Link encap: Ethernet HWaddr 00: 0C: 29: 65: FC: 1D
Inet addr: 192.168.101.88 Bcast: 192.168.101.255 Mask: 255.255.255.0
[Root @ oracle ~] # Mkdir/mnt/cdrom/
[Root @ oracle ~] # Mount/dev/cdrom/mnt/cdrom/
Mount: block device/dev/cdrom is write-protected, mounting read-only
2. Check whether the package is installed
[Root @ oracle ~] # Cd/mnt/cdrom/Server/
LibXp-1.0.0-8.1.el5.i386.rpm
Binutils-2.17.50.0.6-12.el5.i386.rpm
Compat-db-4.2.52-5.1.i386.rpm
Compat-libstdc ++-296-2.96-138.i386.rpm
Control-center-2.16.0-16.el5.i386.rpm
Gcc-4.1.2-46.el5.i386.rpm
Gcc-c ++-4.1.2-46. el5.i386. rpm
Glibc-2.5-42.i386.rpm
Glibc-common-2.5-42.i386.rpm
Libstdc ++-4.1.2-46. el5.i386. rpm
Libstdc +-devel-4.1.2-46.el5.i386.rpm
Make-3.81-3.el5.i386.rpm
Pdksh-5.2.14-36.el5.i386.rpm
Sysstat-7.0.2-3.el5.i386.rpm
Setarch-2.0-1.1.i386.rpm
[Root @ oracle Server] # rpm-ivh libXp-1.0.0-8.1.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh binutils-2.17.50.0.6-12.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh compat-db-4.2.52-5.1.i386.rpm
[Root @ oracle Server] # rpm-ivh compat-libstdc ++-296-2.96-138.i386.rpm
[Root @ oracle Server] # rpm-ivh control-center-2.16.0-16.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh gcc-4.1.2-46.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh gcc-c ++-4.1.2-46. el5.i386. rpm
[Root @ oracle Server] # rpm-ivh glibc-2.5-42.i386.rpm
[Root @ oracle Server] # rpm-ivh glibc-common-2.5-42.i386.rpm
[Root @ oracle Server] # rpm-ivh libstdc ++-4.1.2-46. el5.i386. rpm
[Root @ oracle Server] # rpm-ivh libstdc ++ devel-4.1.2-46.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh make-3.81-3.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh pdksh-5.2.14-36.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh sysstat-7.0.2-3.el5.i386.rpm
[Root @ oracle Server] # rpm-ivh setarch-2.0-1.1.i386.rpm
3. Modify the/etc/hosts file
[Root @ oracle ~] # Echo "192.168.101.88 oracle.junjie.com"/etc/hosts
4. Create a user and a group
[Root @ oracle ~] # Groupadd dba
[Root @ oracle ~] # Groupadd oinstall
[Root @ oracle ~] # Groupadd rule
[Root @ oracle ~] # Useradd-g oinstall-G dba, role oracle
[Root @ oracle ~] # Echo 'zhu. 110 '| passwd -- stdin oracle
Changing password for user oracle.
Passwd: all authentication tokens updated successfully.
5. Add a file
[Root @ oracle ~] # Vim/etc/sysctl. conf
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
[Root @ oracle ~] # Vim/etc/security/limits. conf
Oracle soft nproc 2047
Hard nproc 16384
Oracle soft nofile 1024
Oracle hard nofile 65536
[Root @ oracle ~] # Vim/etc/pam. d/login
Session required/lib/security/pam_limits.so
Session required pam_limits.so
[Root @ oracle ~] # Vim/etc/profile
If [$ USER = "oracle"]; then
If [$ SHELL = "/bin/ksh"]; then
Ulimit-p 16384
Ulimit-n 65536
Else
Ulimit-u 16384-n 65536
Fi
Fi
6. Create a file and modify the permission
[Root @ oracle ~] # Mkdir/u01
[Root @ oracle ~] # Mkdir-pv/u01/app/oracle
Mkdir: created directory '/u01/app'
Mkdir: created directory '/u01/app/oracle'
[Root @ oracle ~] # Chown-R oracle: oinstall/u01/app/oracle/
[Root @ oracle ~] # Chmod-R 775/u01/app/oracle/
[Root @ oracle ~] # Mkdir/u01/flash_recovery_area
[Root @ oracle ~] # Chown oracle: oinstall/u01/flash_recovery_area/
[Root @ oracle ~] # Chmod 755/u01/flash_recovery_area/
II. Install oracle
2. 1. Add the following lines
[Root @ oracle ~] # Su-oracle
[Oracle @ oracle ~] $ Vim. bash_profile
Export ORACLE_BASE =/u01/app/oracle
Export ORACLE_HOME =/u01/app/oracle/product/10.2.0
Export ORACLE_SID = xjzhujunjie
[Oracle @ oracle ~] $. Bash_profile
[Oracle @ oracle ~] $ Env | grep ORA
ORACLE_SID = xjzhujunjie
ORACLE_BASE =/u01/app/oracle
ORACLE_HOME =/u01/app/oracle/product/10.2.0
2.2 change the CD
[Root @ oracle ~] # Umount/mnt/cdrom/
The cd I used is: (ora102forlinux. iso)
[Root @ oracle ~] # Mount/dev/cdrom/mnt/cdrom/
Mount: block device/dev/cdrom is write-protected, mounting read-only
[Root @ oracle ~] # Ll/mnt/cdrom/
Total 2
Dr-xr-x 1 root 2048 Jul 2 2005 database
[Root @ oracle ~] #
2.3 graphic interface for testing ($)
The following figure shows the test gui ($,
If the task fails, run: # xhost local: oracle (which will be tested in the VM later)
2.4Test graphical interface($)
2.5 run the following command to install
Detailed installation illustration:
[1] [2] [3] [4]
Oracle optimization experience
Oracle tablespace and Data File Management
Installing and using Oracle Instant Client
Oracle converts the table name and field name to uppercase
Analysis on small table cache to memory
ORACLE group statistics
Kfed and kfod in Oracle
Oracle 11g windows backup script
Oracle remote logon Solution
Oracle 11g ORA-28001 Processing
Edit recommendations
? [Installation configuration] successful example-php oci8 oracle
? [Install configuration] dual instances are installed on the same machine.
? [Install configuration] Oracle Start Stop command
? [Backup and recovery] New Features of Oracle10g flashback drop
? [Backup recovery] Oracle database file recovery and backup ideas
? [Development technology] Four Connection Methods for Oracle tables
? [Performance Tuning] talking about Oracle Performance Optimization Problems
? [Development technology] Four Connection Methods for tables in Oracle databases
? [Performance Tuning] Top 10 points of Oracle Performance Tuning
? [Performance Tuning] Five requirements for database design standardization
Related Products and training
Article comment
Friend recommendation Link
? Asp source code PHP source code
? CGI Source Code JSP source code
? Website creation books and tutorials
? Server software. net source code
? Website creation tool software
? IDC information Daquan
? Thousands of data center Quality
? IDC hosting knowledge
? Website promotion Optimization
? IDC quotation nationwide