com/RittmanMead/scripts/master/obi/service/sysconfig/obiee-O /etc/sysconfig/obiee
# Update the FMW_HOME path inthe script
# If you're doing thismanually, you just neeed to change the line
# "FMW_HOME=" and putin the FMW_HOME path for your installation.
# In the case of SampleApp v406it is /app/oracle/biee
sudo sed -i -e's/FMW_HOME=.*$/FMW_HOME=\/app\/oracle\/biee/g' /etc/sysconfig/obiee
# Make the script executable
sudo chmod 750/etc/init.d/obiee
?
运行下面命令查看OBIEE的运行状态:
sudo service obiee status

?
?
?
启动OBIEE:
sudo service obiee start

?
如果第一次启动时有启动失败的服务,可以再次运行命令启动

?
关闭OBIEE:
sudo service obiee stop
?
设置系统运行时自动启动OBIEE:
sudo chkconfig --add obiee
?
现在可以重新启动系统,检查设置是否有效
sudo shutdown -r now
?