rhel7 让 oracle 随 os 启动-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502543
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2021-08-01 18:45:58


rhel7 ,oracle 19.10 单机,测试环境,想随主机自动启动数据库和侦听
1、以root身份编辑/etc/oratab,

其格式说明:
$oracle_sid:$oracle_home:
修改完后可以先 以oracle身份执行
$ dbstart $oracle_home
验证能否启动数据库和侦听

2、编辑ora.service

进入systemctl目录
# cd /usr/lib/systemd/system/

编辑服务控制文件
# vi ora.service

  1. [unit]
  2. description=oracle database start/stop service
  3. after=syslog.target network.target local-fs.target remote-fs.target

  4. [service]
  5. # systemd, by design does not honor pam limits
  6. # see: https://bugzilla.redhat.com/show_bug.cgi?id=754285
  7. limitnofile=65536
  8. limitnproc=16384
  9. limitstack=32m
  10. limitmemlock=infinity
  11. limitcore=infinity

  12. type=simple
  13. user=oracle
  14. group=oinstall
  15. restart=no
  16. execstart=/u01/app/oracle/product/19.3/db_1/bin/dbstart /u01/app/oracle/product/19.3/db_1
  17. remainafterexit=yes
  18. execstop=/u01/app/oracle/product/19.3/db_1/bin/dbshut /u01/app/oracle/product/19.3/db_1
  19. timeoutstopsec=5min

  20. [install]
  21. wantedby=multi-user.target

注意execstart对应的命令位置不能使用$oracle_home环境变量。

3、激活服务

  1. # systemctl enable ora
  2. # systemctl daemon-reload

验证一下
systemctl start ora
systemctl status ora 
看是否正常
# ps -ef | grep -e 'ckpt|tnslsnr' | grep -v grep

参考:
自动停止数据库(dbshut)在 ol 7 的 systemd 中不能运行 (doc id 2364833.1)
如何在 linux 上自动启动/关闭 oracle 数据库(文档 id 222813.1)
阅读(1434) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图