我已经成功地在linux 17.3上安装了oracle-xe 11g2,在配置过程中(/etc/init.d/oracle-xe配置),我选择在系统启动时加载数据库。当我检查/etc/default/oracle-xe文件时,我有以下内容:
#This is a configuration file for automatic starting of the Oracle
#Database and listener at system startup.It is generated By running
#'/etc/init.d/oracle-xe configure'.Please use that method to modify this
#file
# ORACLE_DBENABLED:'true' means to load the Database at system boot.
ORACLE_DBENABLED=true
# LISTENER_PORT: Database listener
LISTENER_PORT=1521
# HTTP_PORT : HTTP port for Oracle Application Express
HTTP_PORT=8080
# Configuration : Check whether configure has been done or not
CONFIGURE_RUN=true但是它不是在引导时启动的,我必须通过sudo服务oracle-xe start手动启动它。
有什么我能做的吗?
谢谢。
发布于 2016-02-15 14:06:32
好的找到了。
我必须向dba组添加用户。
sudo usermod -a -G <groupname> usernamehttps://stackoverflow.com/questions/35406486
复制相似问题