数据库,Unix

news/2024/7/4 8:11:14

Solaris安装Oracle需要安装的包是:SUNWi1cs, SUNWi15cs
进入到/cdrom/solaris,.../Sorl./Product下
 pkgadd -d . SUNWi1cs


内核参数:

set shmsys:shminfo_shmmax=4294967295
set shmsys:shminfo_shmmni=100
set semsys:seminfo_semmni=100
set semsys:seminfo_semmsl=256

安装gcc,lib,make三个压缩包,默认安装到/usr/local/bin下

在profile中
export PATH=$PATH:.:/usr/local/bin
export LD_LIBRARY_PATH=/usr/local/lib:$lD_LIBRARY_PATH
环境变量可以在此设置
也可以在.bash_profile中设置

在配置iSCSI的时候
在root下需执行
 /rac/oracle/product/10.2.0/db_1/bin/localconfig add

 


http://www.niftyadmin.cn/n/2124329.html

相关文章

CentOS 7安装Elasticsearch 7.2

一 安装jdk elasticsearch7.2 要求JDK版本是jdk11 ,我一不小心装JDK8,最后发现不装JDK也可以 。 elasticsearch7.2中包含JDK,只要做一些配置就可以 。详见下边 三 二、Elasticsearch安装配置 (1)Elasticsearch安装 Elasticsearch的下载…

iSCSI配置

openfiler的配置1,用户名是:openfiler 密码是:password 2,将openfiler用作iSCSI存储服务器,我们需要执行六个主要的任务:设置iSCSI的服务,配置网络访问,制定物理存储并对其分区&am…

fdw postgres_fdw

os:centos 6.8 db:postgresql 9.6 fdw:foreign data wrapper,postgresql的外部数据包装器。 postgres_fdw 是用于postgresql的数据库之间连接,原因是postgresql不能直接跨库访问,被设计用来替代dblink。 这么口语化的描述&#x…

elasticsearch启动常见问题

elasticsearch启动常见问题 原文:https://blog.csdn.net/qq_22211217/article/details/80740873 一、Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ElasticsearchParseException[malform…

mac 更改默认php

1.新建一个.bash_profile文件并编辑 vim ~/.bash_profile 2.然后在里面输入自己想要的php版本 export PATH/Applications/MAMP/bin/php/php7.2.7/bin:$PATH #/Applications/MAMP/bin/php/php7.2.7/bin是我的php版本路径 3.保存重载环境变量 source ~/.bash_profile 如果你…

postgresql 函数的三个状态

postgresql 的函数有三个状态:IMMUTABLE、STABLE、VOLATILE。这个是与其他数据库有明显概念差别的。 简单描述如下: IMMUTABLE(非常稳定) 表示该函数不能修改数据库并且对于给定的参数值总是会返回相同的值。也就是说,它不会做数据库查找或…

(MAC)Docker容器Removal In Progress删除方案

一 :进入Docker桌面 screen ~/Library/Containers/com.docker.docker/Data/vms/0/tty 二 :找文件(根据自己找文件) cd /var/lib/docker/overlay2/e000b8a86824f48cb824ab643ce7d035e7ec4f3114bad897a2235cf922bba972/diff# 三:安装chatt…

pgpool 之一 1 pgpool + 2 postgresql stream replication 模式

os: centos7.4 db: postgresql 9.6.8 pgpool: pgpool-II-3.7.3 pgpool 简介 准确的名字是Pgpool-II,这里简称为pgpool。pgpool 是介于postgresql 服务和 postgresql 客户端的中间件。它提供如下功能: 1、连接池 2、复制 3、负载均衡 4、限制超过限度的…