美文网首页
oracle安装简要

oracle安装简要

作者: AMZ小楼 | 来源:发表于2018-06-19 05:37 被阅读0次

https://www.cnyunwei.cc/archives/1156

安装图形化界面
yum grouplist


yum groupinstall "GNOME Desktop" "Graphical Administration Tools"

yum groupinstall "Graphical Administration Tools"

groupadd oinstall;groupadd dba;useradd -g oinstall -G dba oracle

安装vncserver

https://blog.csdn.net/hnhuangyiyang/article/details/50827670
https://blog.csdn.net/lishamao/article/details/6886025
https://blog.csdn.net/techsupporter/article/details/52887199
https://jingyan.baidu.com/article/cbf0e5009ace292eaa2893f4.html

/etc/sysconfig/vncservers

VNCSERVERS="1:root 2:oracle"
VNCSERVERARGS[1]="-geometry 800×600"
VNCSERVERARGS[2]="-geometry 800×600

killall -u oracle

启动
vncserver :2

安装依赖
yum install binutils compat-libstdc++ elfutils-libelf elfutils-libelf-devel elfutils-libelf-devel-static gcc gcc-c++ glibc glibc-common glibc-devel glibc-headers kernel-headers ksh libaio libaio-devel libgcc libgomp libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel
查看是否安装成功

rpm -q binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel elfutils-libelf-devel-static gcc gcc-c++ glibc glibc-common glibc-devel glibc-headers kernel-headers ksh libaio libaio-devel libgcc libgomp libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel

创建用户
sqlplus /nolog
conn / as sysdba;
查看用户
select * from all_users;
create user linan identified by linan;
更改密码
alter user linan identified by linan 
授权
GRANT dba, connect, resource to linan;
commit
conn username/password

相关文章

网友评论

      本文标题:oracle安装简要

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