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修改器下载中文最新版_gg修改器全版本下载 大小:19.17MB5,441人安装 大家好,今天小编为大家分享关于gg修改器下载中文最新版_gg修改器全版本下载的内容……
下载最新版本gg修改器下载,最新版本gg修改器下载让你的游戏更有趣味性 大小:11.44MB4,369人安装 GG修改器是一款非常实用的游戏辅助工具,它可以帮助玩家调整游戏内的各种参数,从而……
下载gg修改器下载以及免root_GG免费修改器 大小:11.92MB5,359人安装 大家好,今天小编为大家分享关于gg修改器下载以及免root_GG免费修改器的内容,赶快……
下载gg游戏修改器元气骑士,用gg游戏修改器让你更享受元气骑士的游戏体验 大小:14.22MB4,503人安装 元气骑士是一款很受欢迎的像素风格平台游戏,游戏背景充满着浓浓的日系气息和童话色……
下载gg修改器中文官网ios,排列组合,关键词gg修改器中文官网ios让你轻松翻新游戏 大小:19.38MB4,199人安装 网络游戏的上手难度越来越低,但深耕细作却是入门之后的必修课。想要在游戏里获得更……
下载平板gg修改器怎么root_gg更改器怎么用 大小:13.35MB5,426人安装 大家好,今天小编为大家分享关于平板gg修改器怎么root_gg更改器怎么用的内容,赶快……
下载gg免root使用修改器_GG免root修改器 大小:13.54MB5,381人安装 大家好,今天小编为大家分享关于gg免root使用修改器_GG免root修改器的内容,赶快来……
下载gg修改器非要root吗_gg修改器要root嘛 大小:10.13MB5,456人安装 大家好,今天小编为大家分享关于gg修改器非要root吗_gg修改器要root嘛的内容,赶快……
下载怎么使用中文版的GG修改器,什么是中文版的GG修改器? 大小:18.12MB4,326人安装 中文版的GG修改器是一个游戏修改工具,可以修改一些游戏中的参数,如金钱、经验值等……
下载怎样用gg修改器玩最新的皮肤,如何使用GG修改器玩转最新皮肤 大小:18.96MB4,272人安装 GG修改器是针对游戏的修改工具,可以帮助玩家获取更多的游戏特权,让游戏变得更加的……
下载