博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle11g 安装 -Linux
阅读量:5775 次
发布时间:2019-06-18

本文共 2035 字,大约阅读时间需要 6 分钟。

# groupadd oinstall

# groupadd dba
# useradd oracle -g oinstall -G dba
# password oracle
****
****

指定目录

# mkdir /u01/app/oracle -p
# chown oracle.oinstall /u01 -R

# vim /etc/redhat-release

新建Xshell oracle用户登录
修改环境变量
$ vim .bash_profile

添加

export EDITOR=vim
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
:wq

安装

$ ls /var/ftp/(/mnt/hgfs/Desktop_share)
$ unzip /var/ftp/***.zip -d /tmp/
···
$ cd /tmp/database/

===================================
虚拟机挂在光盘

终端:

# cd Server/
# ls *libXp*
# rpm -ivh libXp-1.0.0-8.1.e15.i386.rpm
====================================

$ source ~/.bash_profile

$ ./runInstaller

 

GUI ->

Advantced >

>

Custom(自定义) >

>

>

=======================================

改内核参数 == 6345帧

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 = 270000
net.core.rmem_max = 270000
net.core.wmem_default = 262144
net.core.wmem_max = 262144

:wq

sysctl -p 使配置文件生效

================================

gcc安装

挂载光盘

mount /dev/scd0 /media

编写新文件

vim /etc/yum.repos.d/iso.repo

[rhel-Server]

name=5u5_Server
baseurl=file:///media/Server
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release

# yum install gcc

=================================================

修改hosts文件

vim /etc/hosts

127.0.0.1 localhost localhost.domain

>

>

only

>

install

============================================

不要急着点ok 执行脚本

# cd /u01/app/oracle/

# . oraInventory/orainstRoot.sh

# . product/11.2.0/db_1/root.sh

local/bin : 回车

 

==============================================

ok

*********************************************************

创建数据库:

dbca命令

$ dbca

 

启动oracle主要分两步:
一是启动监听器
二是启动实例
#su - oracle
$cd /
$cd /bin
$sqlplus /nolog

SQL>connect /as sysdba //连接oracle

SQL>startup //启动数据库
SQL>exit //退出sqlplus

//启动监听

$cd ORACLE_HOME/bin //进入oracle安装目录
$lsnrctl start //启动监听

 

转载于:https://www.cnblogs.com/ZRRJDD/p/7360483.html

你可能感兴趣的文章
探寻Interpolator源码,自定义插值器
查看>>
一致性哈希
查看>>
mysql(待整理)
查看>>
使用PullToRefresh实现下拉刷新和上拉加载
查看>>
mysql
查看>>
2012年电信业八大发展趋势
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>
我的IDEA配置
查看>>