GG修改器破解版下载地址:https://ghb2023zs.bj.bcebos.com/gg/xgq/ggxgq?GGXGQ
大家好,今天小编为大家分享关于gg修改器免root版原版_gg修改器免root版正版的内容,赶快来一起来看看吧。
本次实施内容是,oracle单实例系统文件安装,操作系统为CentOS 6.9,数据库版本11.2.0.4。
Yum(全称为 Yellow dog Updater, Modified)是一个在Fedora和RedHat以及SUSE、CentOS中的前端软件包管理器。基於包管理,能够从指定的服务器自动下载RPM包并且安装,可以自动处理依赖性关系,并且一次安装所有依赖的软体包,无须繁琐地一次次下载、安装。
· 挂载镜像到本地空目录
[root@heima ~]# mkdir /mnt/cdrom
[root@heima ~]# mount -o ro /dev/sr0 /mnt/cdrom
· 创建配置文件
[root@heima ~]# cat /etc/yum.repos.d/local.repo
[local]
name=local yum
baseurl=file:///mnt/cdrom
enabled=1
gpgcheck=0
说明:如果只配置本地yum源,那可以删除/etc/yum.repos.d/目录下Centos自带的所有文件,然后自己创建以.repo结尾文件即可,内容如上。
· 创建yum缓存
[root@heima ~]# yum clean all
[root@heima ~]# yum makecache
[root@heima ~]# yum -y pat-libstdc++-33 libaio-devel elfutils-libelf-devel
注意:在后面安装软件的时候可以再看需要安装哪些包,然后装上就行
[root@heima ~]# groupadd -g 1000 oinstall
[root@heima ~]# groupadd -g 1001 dba
[root@heima ~]# useradd -u 1000 -g oinstall -G dba oracle
[root@heima ~]# id oracle
uid=1000(oracle) gid=1000(oinstall) groups=1000(oinstall),1001(dba)
[root@heima ~]# echo oracle|passwd –stdin oracle
Changing password for user oracle.
passwd: all authentication tokens updated successfully.
[root@heima ~]# mkdir -p /u01/app/{oracle,oradata,oraInventory}
[root@heima ~]# chown -R oracle.oinstall /u01/app/
[root@heima ~]# chmod -R 775 /u01/app/*
[root@heima ~]# cat >> /etc/security/limits.conf <<EOF
> oracle soft nproc 2047
> oracle hard nproc 16384
> oracle soft nofile 1024
> oracle hard nofile 65536
> EOF
[root@heima ~]# grep ’limit’ /etc/pam.d/system-auth
session required pam_limits.so
[root@heima ~]# cat >> /etc/sysctl.conf << EOF
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 4294967295
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586
EOF
说明:以上是参考值,具体值根据实际情况进行调整
kernel.shmmax = 4294967295 (4G) (需要设置的比sga内存大,sga为物理内存内存的80%);如果物理内存是16G,则sga可以设置为12G,kernel.shmmax = 15032385536(14G)
[root@heima ~]# sysctl -p 让内核改变立即生效
[root@heima ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
10.1.1.1 heima. heima
[root@heima ~]# service iptables stop
[root@heima ~]# chkconfig iptables off
[root@heima ~]# sed -i ’/SELINUX=/cSELINUX=disabled’ /etc/selinux/config
[root@heima ~]# su – oracle
[oracle@heima ~]$ vim .bash_profile
文件下面追加以下内容:
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
export ORACLE_SID=ora11g
export PATH=$PATH:$ORACLE_HOME/bin
export LD_LIBRARY_PATH=$ORACLE_HOME/dbhome_1/lib:/lib:/usr/lib
· 下载oracle软件并解压
[oracle@heima ~]$ ls
database
p13390677_112040_Linux-x86-64_1of7.zip
p13390677_112040_Linux-x86-64_2of7.zip
· 进入到解压目录里进行安装
[root@heima ~]# xhost +
[oracle@heima ~]$ cd database
[oracle@heima ~]$ ./runInstaller
错误提示:
解决办法:
安装VNC服务,使用MobaXterm工具或其他客户端连接VNC服务端
[root@heima ~]# yum -y install tigervnc-server
启动服务:
[root@heima ~]# vncserver :1
New ’heima.:2 (root)’ desktop is heima.:2
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/heima.:1.log
① 跳过更新提示
② 选择只安装软件
③ 安装类型选项,选择单实例安装
④ 选择安装软件的语言
⑤ 选择安装版本
⑥ 选择软件安装路径
⑦ 指定相关文件目录及组
⑧ 环境检查,需要依赖包根据提示安装即可
以下包可以忽略,继续往下
⑨ 开始安装
⑩ 在root用户下执行两个脚本
在root用户下运行两个脚本的结果:
执行完毕脚本后,点击OK,安装完毕!
[oracle@heima ~]$ dbca
[oracle@ esxoradb ~]$ netmgr
[oracle@heima admin]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Fri Sep 6 07:03:44 2019
Copyright (c) 1982, 2013, Oracle. All rights reserved.
SQL> conn sys as sysdba 管理员身份连接数据库
Enter password: 输入密码,密码不显示
Connected.
SQL>
SQL> select INSTANCE_NAME,VERSION,DATABASE_STATUS from v$instance;
INSTANCE_NAME VERSION DATABASE_STATUS
—————- —————– —————–
ora11g 11.2.0.4.0 ACTIVE
以上就是关于gg修改器免root版原版_gg修改器免root版正版的全部内容,感谢大家的浏览观看,如果你喜欢本站的文章可以CTRL+D收藏哦。
gg修改器免root版安装教程,下载gg修改器免root 大小:7.44MB6,300人安装 已知新增: 随机确定包名 降低被游戏检测概率 可选择有无root模式 //中……
下载gg修改器 免root应用_gg修改器免root软件 大小:3.37MB6,032人安装 大家好,今天小编为大家分享关于gg修改器 免root应用_gg修改器免root软件的内容,赶……
下载怎么下载gg修改器最新,下载gg修改器最新版的方法 大小:3.47MB4,790人安装 gg修改器是一款强大的电脑游戏修改工具,能够帮助用户修改游戏内的一些参数,使得游……
下载gg修改器光遇最新,为什么 gg修改器光遇最新是玩家必备的利器? 大小:19.73MB4,953人安装 随着时代的发展,游戏行业也越来越成熟,对于游戏的操作也越来越多。这时我们就需要……
下载GG修改器最新反版,GG修改器最新反版:让你轻松获得胜利 大小:8.50MB4,946人安装 如果你是一个游戏玩家,你一定会知道一个名为GG修改器的工具。这个工具可以帮助你修……
下载gg修改器怎么下载中文版,掌握游戏的关键:GG修改器的中文版下载 大小:12.56MB5,237人安装 与好友开黑打游戏是一件很有意思且轻松的事情,但被游戏的坑所困扰则让人倍感烦恼。……
下载gg修改器内购中文_gg修改器中文版 大小:8.47MB6,147人安装 大家好,今天小编为大家分享关于gg修改器内购中文_gg修改器中文版的内容,赶快来一……
下载gg修改器最新版96.0,引言:gg修改器最新版96.0,让游戏更加有乐趣 大小:15.47MB4,893人安装 如今网络游戏已经成为了人们生活中不可或缺的一部分,而相信许多玩家都有这样的经历……
下载gg游戏修改器cydia,GG游戏修改器Cydia:让游戏成为您想象中的样子 大小:8.44MB4,952人安装 随着游戏行业的发展,对于游戏的修改需求也越来越广泛。而GG游戏修改器Cydia正是一……
下载gg修改器天天酷跑教程最新,掌握最新教程,天天酷跑快乐无穷! 大小:10.78MB4,605人安装 天天酷跑,一款风靡全球的跑酷游戏,以其简单易上手、画面精美、游戏性强而深受广大……
下载