数据库文件管理器安装,数据库管理系统有哪些

数据库文件管理器安装

一、前言

本次实施内容是数据库文件管理器安装,oracle单实例系统文件安装数据库文件管理器安装,操作系统为CentOS 6.9,数据库版本11.2.0.4。

数据库文件管理器安装

二、oracle软件安装1、以下用root账号操作1.1 配置本地yum源

Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE、CentOS中的前端软件包管理器。基於包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无须繁琐地一次次下载、安装。

· 挂载镜像到本地空目录

[root@heima ~]# mkdir /mnt/cdrom[root@heima ~]# mount -o ro /dev/sr0 /mnt/cdrom

· 创建配置文件

[root@heima ~]# cat /etc/yum.repos.d/local.repo[local]name=local yumbaseurl=file:///mnt/cdromenabled=1gpgcheck=0说明数据库文件管理器安装:如果只配置本地yum源,那可以删除/etc/yum.repos.d/目录下Centos自带的所有文件,然后自己创建以.repo结尾文件即可,内容如上。

· 创建yum缓存

[root@heima ~]# yum clean all[root@heima ~]# yum makecache1.2 安装所需依赖包[root@heima ~]# yum -y install compat-libstdc++-33 libaio-devel elfutils-libelf-devel

注意:在后面安装软件的时候可以再看需要安装哪些包,然后装上就行

1.3 创建用户组和用户(具体看要求决定ID号)[root@heima ~]# groupadd -g 1000 oinstall[root@heima ~]# groupadd -g 1001 dba[root@heima ~]# useradd -u 1000 -g oinstall -G dba oracle[root@heima ~]# id oracleuid=1000(oracle) gid=1000(oinstall) groups=1000(oinstall),1001(dba)[root@heima ~]# echo oracle|passwd --stdin oracleChanging password for user oracle.passwd: all authentication tokens updated successfully.1.4 创建相应数据目录(安装和数据目录)[root@heima ~]# mkdir -p /u01/app/{oracle,oradata,oraInventory}[root@heima ~]# chown -R oracle.oinstall /u01/app/[root@heima ~]# chmod -R 775 /u01/app/*1.5 修改oracle用户资源限制[root@heima ~]# cat >> /etc/security/limits.conf <<EOF> oracle soft nproc 2047> oracle hard nproc 16384> oracle soft nofile 1024> oracle hard nofile 65536> EOF[root@heima ~]# grep 'limit' /etc/pam.d/system-authsession required pam_limits.so1.6 配置系统资源限制(内核参数)[root@heima ~]# cat >> /etc/sysctl.conf << EOFfs.aio-max-nr = 1048576fs.file-max = 6815744kernel.shmall = 2097152kernel.shmmax = 4294967295kernel.shmmni = 4096kernel.sem = 250 32000 100 128net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 262144net.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048586EOF说明:以上是参考值,具体值根据实际情况进行调整kernel.shmmax = 4294967295 (4G) (需要设置的比sga内存大,sga为物理内存内存的80%);如果物理内存是16G,则sga可以设置为12G,kernel.shmmax = 15032385536(14G)[root@heima ~]# sysctl -p 让内核改变立即生效1.7 配置/etc/hosts文件[root@heima ~]# cat /etc/hosts127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4::1 localhost localhost.localdomain localhost6 localhost6.localdomain610.1.1.1 heima.itcast.cn heima

1.8 关闭防火墙和selinux[root@heima ~]# service iptables stop[root@heima ~]# chkconfig iptables off[root@heima ~]# sed -i '/SELINUX=/cSELINUX=disabled' /etc/selinux/config2、以下用oracle账号操作2.1 配置oracle用户shell环境[root@heima ~]# su - oracle[oracle@heima ~]$ vim .bash_profile文件下面追加以下内容:export ORACLE_BASE=/u01/app/oracleexport ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1export ORACLE_SID=ora11gexport PATH=$PATH:$ORACLE_HOME/binexport LD_LIBRARY_PATH=$ORACLE_HOME/dbhome_1/lib:/lib:/usr/lib2.2 安装oracle软件

· 下载oracle软件并解压

[oracle@heima ~]$ lsdatabasep13390677_112040_Linux-x86-64_1of7.zipp13390677_112040_Linux-x86-64_2of7.zip

· 进入到解压目录里进行安装

[root@heima ~]# xhost +[oracle@heima ~]$ cd database[oracle@heima ~]$ ./runInstaller

错误提示:

数据库文件管理器安装

解决办法:

安装VNC服务,使用MobaXterm工具或其他客户端连接VNC服务端

[root@heima ~]# yum -y install tigervnc-server启动服务:[root@heima ~]# vncserver :1New 'heima.itcast.cn:2 (root)' desktop is heima.itcast.cn:2Starting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/heima.itcast.cn:1.log

① 跳过更新提示

数据库文件管理器安装

数据库文件管理器安装

② 选择只安装软件

数据库文件管理器安装

③ 安装类型选项,选择单实例安装

数据库文件管理器安装

④ 选择安装软件的语言

数据库文件管理器安装

⑤ 选择安装版本

数据库文件管理器安装

⑥ 选择软件安装路径

数据库文件管理器安装

⑦ 指定相关文件目录及组

数据库文件管理器安装

数据库文件管理器安装

⑧ 环境检查,需要依赖包根据提示安装即可

数据库文件管理器安装

以下包可以忽略,继续往下

数据库文件管理器安装

⑨ 开始安装

数据库文件管理器安装

数据库文件管理器安装

⑩ 在root用户下执行两个脚本

数据库文件管理器安装

在root用户下运行两个脚本的结果:

数据库文件管理器安装

执行完毕脚本后,点击OK,安装完毕!

三、oracle数据库安装1、运行命令:dbca创建数据库[oracle@heima ~]$ dbca数据库文件管理器安装

数据库文件管理器安装

2、选择建库类型数据库文件管理器安装

3、创建库名与实例名数据库文件管理器安装

4、跳过安装OEM数据库文件管理器安装

5、设置密码数据库文件管理器安装

6、指定数据库安装目录(数据文件等)数据库文件管理器安装

7、开启归档数据库文件管理器安装

8、默认选项数据库文件管理器安装

9、设置Oracle共享内存占物理内存的70%~80%数据库文件管理器安装

10、设置Processes为800数据库文件管理器安装

11、选择字符集需注意数据库文件管理器安装

12、选择连接模式数据库文件管理器安装

13、日志大小分配512M数据库文件管理器安装

14、记录建库脚本(目录自定义)数据库文件管理器安装

15、开始安装数据库文件管理器安装

四、安装完毕配置监听[oracle@ esxoradb ~]$ netmgr数据库文件管理器安装

数据库文件管理器安装

五、本地访问oracle数据库[oracle@heima admin]$ sqlplus /nologSQL*Plus: Release 11.2.0.4.0 Production on Fri Sep 6 07:03:44 2019Copyright (c) 1982, 2013, Oracle. All rights reserved.SQL> conn sys as sysdba 管理员身份连接数据库Enter password: 输入密码,密码不显示Connected.SQL>SQL> select INSTANCE_NAME,VERSION,DATABASE_STATUS from v$instance;INSTANCE_NAME VERSION DATABASE_STATUS---------------- ----------------- -----------------ora11g 11.2.0.4.0 ACTIVE
发布于 2024-05-01 09:05:17
收藏
分享
海报
0 条评论
60
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~