博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle错误:ORA-27121: unable to determine size of shared memory segment
阅读量:5951 次
发布时间:2019-06-19

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

  hot3.png

今天在用SQLPLUS登陆数据库时,忽然报了一个错误,错误的代码如下:

ORA-01034: ORACLE not available
ORA-27121: unable to determine size of shared memory segment
Linux Error: 13: Permission denied

 

怎么回事,刚才还用PL/SQL登陆来着,重新登陆PL/SQL,同样的错误,怎么回事?

百度,google了半天,终于闹明白了,主要是因为oracle安装程序没有给oracle这个可执行程序设置正确的setuid。这样设置一下:

 

$
cd $ORACLE_HOME/bin
$
chmod 6751 oracle

结果类似这样就行了。

 

$
ls -l $ORACLE_HOME/bin/oracle
-rwsr-s--x 1 oracle oinstall 23352783 Aug 14 2001 /home/oracle/app/oracle/product/8.1.6/bin/oracle

 

转载于:https://my.oschina.net/adairs/blog/634591

你可能感兴趣的文章
git rebase简介(基本篇)
查看>>
Backup and Recovery Basics1
查看>>
C语言各种keyword
查看>>
Rescue
查看>>
1775. [国家集训队2010]小Z的袜子
查看>>
前端学习 -- Html&Css -- 表单
查看>>
android的toogleButton和switch的使用方法
查看>>
CSS网页布局垂直居中整理
查看>>
HTML标签列表
查看>>
由“从按下回车到网页显示”粗谈网页优化
查看>>
Zxing 的集成 ---- Maven 对应 Gradle 的写法
查看>>
集合框架总结
查看>>
将字典直接写入文件,出现中文乱码问题
查看>>
bzoj1513【POI2006】Tet-Tetris 3D
查看>>
Android集成一个新产品时,lunch的product name和device name注意事项
查看>>
【shell编程】1、shell编程简介
查看>>
P1049 装箱问题
查看>>
获取xcode下载地址的页面
查看>>
poj 2396 Budget 边容量有上下界的最大流
查看>>
BEGINNING SHAREPOINT® 2013 DEVELOPMENT 第1章节--SharePoint 2013 介绍 SharePoint 2013 平台...
查看>>