1
在Root用户下执行以下步骤:1)修改用户的SHELL的限制,修改/etc/security/limits.conf文件输入命令:vi /etc/security/limits.conf,按i键进入编辑模式,将下列内容加入该文件。oracle soft nproc 2047
oracle hard nproc 16384oracle soft nofile 1024oracle hard nofile 65536编辑完成后按Esc键,输入 wq 存盘退出
2修改/etc/pam.d/login 文件,输入命令:vi /etc/pam.d/login,按i键进入编辑模式,将下列内容加入该文件。session required /lib/security/pam_limits.so session required pam_limits.so编辑完成后按Esc键,输入“:wq”存盘退出. 3修改linux内核,修改/etc/sysctl.conf文件,输入命令: vi /etc/sysctl.conf ,按i键进入编辑模式,将下列内容加入该文件:fs.file-max = 6815744fs.aio-max-nr = 1048576kernel.shmall = 2097152kernel.shmmax = 2147483648kernel.shmmni = 4096kernel.sem = 250 32000 100 128net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 4194304net.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048576编辑完成后按Esc键,输入“:wq”存盘退出 4要使 /etc/sysctl.conf 更改立即生效,执行以下命令。 输入:sysctl -p 显示如下:
linux:~ # sysctl -pnet.ipv4.icmp_echo_ignore_broadcasts = 1net.ipv4.conf.all.rp_filter = 1fs.file-max = 6815744fs.aio-max-nr = 1048576kernel.shmall = 2097152kernel.shmmax = 2147483648kernel.shmmni = 4096kernel.sem = 250 32000 100 128net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 4194304net.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048576
5
编辑 /etc/profile ,输入命令:vi /etc/profile,按i键进入编辑模式,将下列内容加入该文件。
if [ $USER = "oracle" ]; then if [ $SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi编辑完成后按Esc键,输入“:wq”存盘退出。
6创建相关用户和组,作为软件安装和支持组的拥有者。
创建用户,输入命令:groupadd oinstall groupadd dba创建Oracle用户和密码,输入命令:useradd -g oinstall -g dba -m oracle passwd oracle然后会让你输入密码,密码任意输入2次,但必须保持一致,回车确认。 7[root oracle]# su - oracle[oracle ~]$ mkdir /home/oracle/app[oracle ~]$ mkdir /home/oracle/app/oradata[oracle ~]$ mkdir /home/oracle/app/oracle[oracle ~]$ mkdir /home/oracle/app/oracle/product8
更改目录属主为Oracle用户所有,输入命令:
chown -R oracle:oinstall /home/oracle/app
9
配置oracle用户的环境变量,首先,切换到新创建的oracle用户下,
输入:su – oracle ,然后直接在输入 : vi .bash_profile按i编辑 .bash_profile,进入编辑模式,增加以下内容:umask 022export ORACLE_BASE=/home/oracle/appexport ORACLE_HOME=$ORACLE_BASE/oracle/product/11.2.0/dbhome_1export ORACLE_SID=pciscj7export PATH=$PATH:$HOME/bin:$ORACLE_HOME/binexport LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib编辑完成后按Esc键,输入“:wq”存盘退出。 10当上述系统要求操作全部完成后,注销系统,在图形界面以Oracle用户登陆。首先将下载的Oracle安装包复制到linux中,推荐用Xmanager 或其他ftp工具拷贝。 打开一个终端,运行unzip命令解压oracle安装文件,如:输入命令:unzip linux.x64_11gR2_database_1of2.zip unzip linux.x64_11gR2_database_2of2.zip 解压完成后 cd 进入其解压后的目录database /home/oracle/app/product/11.2.0/dbhome_1/bin
创建表空间
create tablespace pcislogging
datafile '/home/oracle/app/oradata/pciscj7/pcis.dbf'
size 500m
autoextend on
next 200m maxsize 20480m
extent management local;
-- Create the user create user SHENJI identified by "shenji!qaz" default tablespace PCIS temporary tablespace TEMP profile DEFAULT password expire;-- Grant/Revoke role privileges grant connect to SHENJI with admin option;grant exp_full_database to SHENJI;grant imp_full_database to SHENJI;grant resource to SHENJI;-- Grant/Revoke system privileges grant unlimited tablespace to SHENJI;