美文网首页
使用docker安装Oracle数据库

使用docker安装Oracle数据库

作者: bruce_wu | 来源:发表于2021-03-30 13:24 被阅读0次

    最近本地测试服务器的Oracle数据库没有任何原因的访问变慢并且间歇性无法连接,以我目前的技术能力没有找到原因,也没有办法解决
    之前就很想重做测试服务器,改为Linux,正好借此次机会替换,并且把其他的软件也替换为使用docker安装
    这里假设你知道docker是什么,并且会使用它

    下载Oracle

    https://download.oracle.com/otn/linux/oracle11g/R2/linux.x64_11gR2_database_1of2.zip
    https://download.oracle.com/otn/linux/oracle11g/R2/linux.x64_11gR2_database_2of2.zip
    下载完解压缩将两部分合并成一个文件夹
    注意解压缩后要放到database文件夹下,形式如: oracleinstaller/database
    否则会安装失败

    下载docker镜像
    docker pull jaspeen/oracle-11g
    

    这个镜像只是提供了安装Oracle的环境和脚本,并没有安装好Oracle

    启动镜像安装Oracle
    docker run --privileged --name oracle11g -p 1521:1521 -v /home/user/oracle_installer:/install jaspeen/oracle-11g
    

    privileged 是给这个容器里面脚本权限,安装oracle可能需要操作需要root权限的文件或目录
    这个安装过程会比较漫长,取决于你机器的配置,当看到日志里有 100% complete 打印,表示oracle安装成功了
    可以使用 docker ps -a 命令来查看

    设置Oracle

    scott用户是系统默认给的一个用户,我们可以用它来测试数据库,但是默认情况下它是锁定的

    1. 连接到容器中 docker exec -it oracle11g /bin/bash
    2. 切换到oracle用户登录 su - oracle
    3. 使用管理员登录oracle sqlplus / as sysdba
    4. 解锁scott用户
      alter user scott account unlock;
      commit;
    5. 当然你也可以创建自己的用户
      create user myuser identified by "123" default tablespace USERS temporary tablespace TEMP profile DEFAULT;
      grant connect to myuser;
      grant ctxapp to myuser;
      grant resource to myuser;
    修改字符集
    1. 查询当前使用的字符集 select userenv('language') from dual;

    2. 修改字符集为 SIMPLIFIED CHINESE_CHINA.ZHS16GBK

       -- operation requires database is in RESTRICTED mode
       alter system enable restricted session;
       alter system set nls_language='SIMPLIFIED CHINESE' scope = spfile;
       alter system set nls_territory='CHINA' scope=spfile;
       alter database character set  internal_use ZHS16GBK;
      
    3. 重启数据库
      shutdown immediate;
      startup;

    导入数据

    将你导出的dmp文件放到之前的oracleinstaller文件夹里面,在docker容器中就可以看到这个文件了
    imp username/password@127.0.0.1:1521/orcl file=/install/your.dmp full=y ignore=y log=/install/imp.log
    默认的表空间 USERS 大小为32G,如果你导入的数据比较大可以增加表空间文件来扩大表空间
    alter tablespace USERS add datafile '/opt/oracle/app/oradata/orcl/users02.DBF' size 32000M;
    注意单个表空间文件最大不能超过32G
    查看表空间占用

    select Upper(f.tablespace_name),d.tot_grootte_mb "tb_size(G)",d.tot_grootte_mb - f.total_bytes "tb_use(G)",
    to_char(round((d.tot_grootte_mb - f.total_bytes)/d.tot_grootte_mb * 100, 2),'990.99') || '%' "tb_percent", 
    f.total_bytes "tb_last(G)"
    from (select tablespace_name,round(sum(bytes) / (1024 * 1024 * 1024), 2) total_bytes, round(max(bytes) / (1024 * 1024 * 1024), 2) max_bytes 
    from sys.dba_free_space group by tablespace_name) f,(select dd.tablespace_name,round(sum(dd.bytes) / (1024 * 1024 * 1024), 2) tot_grootte_mb 
    from sys.dba_data_files dd group by dd.tablespace_name) d where d.tablespace_name = f.tablespace_name 
    order by f.tablespace_name;
    

    相关文章

      网友评论

          本文标题:使用docker安装Oracle数据库

          本文链接:https://www.haomeiwen.com/subject/klwwhltx.html