广告
返回顶部
首页 > 资讯 > 数据库 >oralce11g客户端如何安装
  • 731
分享到

oralce11g客户端如何安装

2024-04-02 19:04:59 731人浏览 独家记忆
摘要

这篇文章主要介绍了oralce11g客户端如何安装,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。首先确认操作系统防火墙和selinux已关闭

这篇文章主要介绍了oralce11g客户端如何安装,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。



首先确认操作系统防火墙和selinux已关闭:
--查看selinux状态:sestatus
关闭SELinux的方法:
  修改/etc/selinux/config文件中的SELINUX="" 为 disabled ,然后重启。
  如果不想重启系统,使用命令setenforce 0

--查看iptables状态:service iptables status
关闭防火墙
    1)重启后永久性生效:
  开启: chkconfig iptables on
  关闭: chkconfig iptables off

  2) 即时生效,重启后失效:
  开启: service iptables start
  关闭: service iptables stop

1. Memory Requirements:At least 256 MB of physical RAM.
 
# grep MemTotal /proc/meminfo
 
 To determine whether the system architecture can run the software, enter the following command:

# grep "model name" /proc/cpuinfo

 To determine the size of the configured swap space, enter the following command:

# grep SwapTotal /proc/meminfo

To determine the available RAM and swap space, enter the following command:

# free

2. Disk Space Requirements
The minimum disk space requirement for a client install in the /tmp directory is 400 MB.
To determine the amount of disk space available in the /tmp directory, enter the following command:

# df -k /tmp

Between 146 MB and 1.38 GB of disk space for the Oracle software, depending on the installation type:

Installation Type     Requirement for Software Files
Instant Client          146 MB
Administrator          1.38 GB
Runtime                1.10 GB

3. Operating System Requirements
To determine the distribution and version of Linux installed, enter the following command:

# cat /proc/version

4. Kernel Requirements
For Asianux Server 3, Oracle Linux 5, and Red Hat Enterprise Linux 5:
2.6.18 or later

To determine whether the required kernel is installed, enter the following command:

# uname -r

5.Package Requirements
The following or later version of packages for Asianux Server 3, Oracle Linux 5, and Red Hat Enterprise Linux 5 should be installed:

binutils-2.17.50.0.6
compat-libstdc++-33-3.2.3
elfutils-libelf-0.125
elfutils-libelf-devel-0.125
elfutils-libelf-devel-static-0.125
gcc-4.1.2
gcc-c++-4.1.2
glibc-2.5-24
glibc-common-2.5
glibc-devel-2.5
ksh-20060214
libaio-0.3.106
libaio-devel-0.3.106
libgcc-4.1.2
libgomp-4.1.2
libstdc++-4.1.2
libstdc++-devel-4.1.2
make-3.81
sysstat-7.0.2

操作系统检查:
rpm -q binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc glibc-common glibc-devel libaio libaio-devel libgcc libstdc++ libstdc++-devel make sysstat

[root@client ~]# rpm -q binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc glibc-common glibc-devel libaio libaio-devel libgcc libstdc++ libstdc++-devel make sysstat
binutils-2.20.51.0.2-5.43.el6.x86_64
package compat-libstdc++-33 is not installed
elfutils-libelf-0.161-3.el6.x86_64
package elfutils-libelf-devel is not installed
package gcc is not installed
package gcc-c++ is not installed
glibc-2.12-1.166.el6.x86_64
glibc-common-2.12-1.166.el6.x86_64
glibc-devel-2.12-1.166.el6.x86_64
libaio-0.3.107-10.el6.x86_64
package libaio-devel is not installed
libgcc-4.4.7-16.el6.x86_64
libstdc++-4.4.7-16.el6.x86_64
package libstdc++-devel is not installed
make-3.81-20.el6.x86_64
sysstat-9.0.4-27.el6.x86_64
[root@client ~]#
yum install -y compat-libstdc++*
yum install -y elfutils-libelf-devel*
yum install -y gcc*
yum install -y libaio-devel*
yum install -y libstdc++-devel*

挂载光盘,配置yum源:
[root@client ~]# mount /dev/cdrom /mnt
mount: block device /dev/sr0 is write-protected, mounting read-only
[root@client ~]#
[root@client ~]# vi /etc/yum.repos.d/yum.repo
[base]
name=base
baseurl=file:///mnt/Server
enabled=1
gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
[root@client yum.repos.d]#
[root@client yum.repos.d]#
[root@client yum.repos.d]# yum clean all
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Cleaning repos: base
Cleaning up Everything
[root@client yum.repos.d]# yum list
省略.........................
[root@client yum.repos.d]# yum makecache
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
base                                                                                                                                            | 4.1 kB     00:00 ...
base/group_gz                                                                                                                                   | 211 kB     00:00 ...
base/filelists_db                                                                                                                               | 3.4 MB     00:00 ...
base/other_db                                                                                                                                   | 1.3 MB     00:00 ...
Metadata Cache Created
[root@client yum.repos.d]#

--安装缺失的包:
yum install -y compat-libstdc++*
yum install -y elfutils-libelf-devel*
yum install -y gcc*
yum install -y libaio-devel*
yum install -y libstdc++-devel*

6.Creating Required Operating System Groups and Users
添加用户组oinstall、和oracle用户:
[root@client Packages]# groupadd oinstall
[root@client Packages]# groupadd dba
[root@client Packages]# useradd -g oinstall -G dba oracle
[root@client Packages]#  passwd oracle
Changing password for user oracle.
New password:
BAD PASSWORD: it is based on a dictionary word
BAD PASSWORD: is too simple
Retype new password:
passwd: all authentication tokens updated successfully.
[root@client Packages]#

7.Creating Required Directories
[root@client ~]# mkdir -p /u01/app/oracle
[root@client ~]# chown -R oracle:oinstall /u01/app/oracle/
[root@client ~]# chmod -R 775 /u01/app/oracle/

8.Configuring the oracle User's Environment配置用户环境变量
[oracle@client ~]$ vi .bash_profile
# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/11.2/client
export NLS_LANG="american_america.ZHS16GBK"
export NLS_DATE_FORMAT="YYYY-MM-DD HH24:Mi:SS"
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
~
".bash_profile" 15L, 235C written
[oracle@client ~]$
[oracle@client ~]$ source .bash_profile
[oracle@client ~]$

8.上传oracle客户端安装软件包:
[oracle@client ~]$ mkdir soft
[oracle@client ~]$ cd soft/
[oracle@client soft]$ ls
[oracle@client soft]$ pwd
/home/oracle/soft
[oracle@client soft]$
[oracle@client soft]$ ls
p13390677_112040_Linux-x86-64_4of7.zip
[oracle@client soft]$ unzip p13390677_112040_Linux-x86-64_4of7.zip
省略...............

9.配置静默安装响应文件
[oracle@client soft]$ ls
client  p13390677_112040_Linux-x86-64_4of7.zip
[oracle@client soft]$ cd client/
[oracle@client client]$ ls
install  readme.html  response  runInstaller  stage  welcome.html
[oracle@client client]$ cd response/
[oracle@client response]$ ls
client_install.rsp  netca.rsp
[oracle@client response]$
--先备份响应文件:
[oracle@client response]$ cp client_install.rsp client_install.rsp.bak
[oracle@client response]$ ls
client_install.rsp  client_install.rsp.bak  netca.rsp

修改响应文件:
[oracle@client response]$ vi client_install.rsp
###############################################################################
## Copyright(c) Oracle Corporation 1998,2013. All rights reserved.           ##
##                                                                           ##
## Specify values for the variables listed below to customize                ##
## your installation.                                                        ##
##                                                                           ##
## Each variable is associated with a comment. The comment                   ##
## can help to populate the variables with the appropriate                   ##
## values.                                                                   ##
##                                                                           ##
###############################################################################

#-------------------------------------------------------------------------------
# Do not change the following system generated value.
#-------------------------------------------------------------------------------
oracle.install.responseFileVersion=/oracle/install/rspfmt_clientinstall_response_schema_v11_2_0

#-------------------------------------------------------------------------------
# This variable holds the hostname of the system as set by the user.
# It can be used to force the installation to use an alternative   
# hostname rather than using the first hostname found on the system
# (e.g., for systems with multiple hostnames and network interfaces).
ORACLE_HOSTNAME=client
#-------------------------------------------------------------------------------
# Unix group to be set for the inventory directory.  
UNIX_GROUP_NAME=oinstall
#-------------------------------------------------------------------------------
# Inventory location.
INVENTORY_LOCATION=/u01/app/oraInventory
#-------------------------------------------------------------------------------
# Specify the languages in which the components will be installed.             
#
# en   : English                  ja   : Japanese                  
# fr   : French                   ko   : Korean                    
# ar   : Arabic                   es   : Latin American Spanish    
# bn   : Bengali                  lv   : Latvian                   
# pt_BR: Brazilian Portuguese     lt   : Lithuanian                
# bg   : Bulgarian                ms   : Malay                     
# fr_CA: Canadian French          es_MX: Mexican Spanish           
# ca   : Catalan                  no   : Norwegian                 
# hr   : Croatian                 pl   : Polish                    
# cs   : Czech                    pt   : Portuguese                
# da   : Danish                   ro   : Romanian                  
# nl   : Dutch                    ru   : Russian                   
# ar_EG: Egyptian                 zh_CN: Simplified Chinese        
# en_GB: English (Great Britain)  sk   : Slovak                    
# et   : Estonian                 sl   : Slovenian                 
# fi   : Finnish                  es_ES: Spanish                   
# de   : German                   sv   : Swedish                   
# el   : Greek                    th   : Thai                      
# iw   : Hebrew                   zh_TW: Traditional Chinese       
# hu   : Hungarian                tr   : Turkish                   
# is   : Icelandic                uk   : Ukrainian                 
# in   : Indonesian               vi   : Vietnamese                
# it   : Italian                                                   
#
# all_langs   : All languages
#
# Specify value as the following to select any of the languages.
# Example : SELECTED_LANGUAGES=en,fr,ja
#
# Specify value as the following to select all the languages.
# Example : SELECTED_LANGUAGES=all_langs
#-------------------------------------------------------------------------------
SELECTED_LANGUAGES=en,zh_CN
#-------------------------------------------------------------------------------
# Complete path of the Oracle Home  
ORACLE_HOME=/u01/app/oracle/11.2/client
#-------------------------------------------------------------------------------
# Complete path of the Oracle Base.
ORACLE_BASE=/u01/app/oracle
#-------------------------------------------------------------------------------
#Name       : INSTALL_TYPE
#Datatype   : String
#Description: Installation type of the component.
#
#             The following choices are available. The value should contain
#             only one of these choices.
#               - InstantClient
#               - Administrator
#               - Runtime
#               - Custom
#
#Example    : INSTALL_TYPE = "Administrator"
#------------------------------------------------------------------------------
oracle.install.client.installType=Administrator
#-------------------------------------------------------------------------------
#Name       : oracle.install.client.upgrading
#Datatype   : boolean
#Description: whether or not this is an upgrade installation
#
#             The following choices are available. The value should contain
#             only one of these choices.
#               - true
#               - false
#
#Example    : oracle.install.client.upgrading=true
#------------------------------------------------------------------------------
oracle.install.client.upgrading=
#------------------------------------------------------------------------------
# Name       : oracle.install.client.customComponents
# Datatype   : StringList
#
# This property is considered only if INSTALL_TYPE is set to "Custom"
#
# Description: List of Client Components you would like to install
#
#   The following choices are available. You may specify any
#   combination of these choices.  The components you choose should
#   be specified in the form "internal-component-name:version"
#   Below is a list of components you may specify to install.
#
# oracle.sqlj:11.2.0.4.0 -- "Oracle SQLJ"
# oracle.rdbms.util:11.2.0.4.0 -- "Oracle Database Utilities"
# oracle.javavm.client:11.2.0.4.0 -- "Oracle Java Client"
# oracle.sqlplus:11.2.0.4.0 -- "SQL*Plus"
# oracle.dbjava.jdbc:11.2.0.4.0 -- "Oracle JDBC/THIN Interfaces"
# oracle.ldap.client:11.2.0.4.0 -- "Oracle Internet Directory Client"
# oracle.rdbms.oci:11.2.0.4.0 -- "Oracle Call Interface (OCI)"
# oracle.precomp:11.2.0.4.0 -- "Oracle Programmer"
# oracle.xdk:11.2.0.4.0 -- "Oracle XML Development Kit"
# oracle.network.aso:11.2.0.4.0 -- "Oracle Advanced Security"
# oracle.assistants.oemlt:11.2.0.4.0 -- "Enterprise Manager Minimal Integration"
# oracle.oraolap.mgmt:11.2.0.4.0 -- "OLAP Analytic Workspace Manager and Worksheet"
# oracle.network.client:11.2.0.4.0 -- "Oracle Net"
# oracle.network.cman:11.2.0.4.0 -- "Oracle Connection Manager"
# oracle.network.listener:11.2.0.4.0 -- "Oracle Net Listener"
# oracle.ordim.client:11.2.0.4.0 -- "Oracle Multimedia Client Option"
# oracle.odbc:11.2.0.4.0 -- "Oracle ODBC Driver"
# oracle.has.client:11.2.0.4.0 -- "Oracle Clusterware High Availability API"
# oracle.dbdev:11.2.0.4.0 -- "Oracle SQL Developer"
# oracle.rdbms.scheduler:11.2.0.4.0 -- "Oracle Scheduler Agent"
#
#-------------------------------------------------------------------------------
oracle.install.client.customComponents="oracle.sqlj:11.2.0.4.0","oracle.rdbms.util:11.2.0.4.0","oracle.javavm.client:11.2.0.4.0","oracle.sqlplus:11.2.0.4.0","oracle.dbjava.jdbc:11.2.0.4.0","oracle.ldap.client:11.2.0.4.0","oracle.rdbms.oci:11.2.0.4.0","oracle.precomp:11.2.0.4.0","oracle.xdk:11.2.0.4.0","oracle.network.aso:11.2.0.4.0","oracle.assistants.oemlt:11.2.0.4.0","oracle.oraolap.mgmt:11.2.0.4.0","oracle.network.client:11.2.0.4.0","oracle.network.cman:11.2.0.4.0","oracle.network.listener:11.2.0.4.0","oracle.ordim.client:11.2.0.4.0","oracle.odbc:11.2.0.4.0","oracle.has.client:11.2.0.4.0","oracle.dbdev:11.2.0.4.0","oracle.rdbms.scheduler:11.2.0.4.0"
#-------------------------------------------------------------------------------
# Host name to be used for by the Oracle Scheduler Agent.
# This needs to be entered in case oracle.rdbms.scheduler is selected in the
# list of custom components during custom install
#
# Example    : oracle.install.client.schedulerAgentHostName = acme.domain.com
#------------------------------------------------------------------------------
oracle.install.client.schedulerAgentHostName=

#------------------------------------------------------------------------------
# Port number to be used for by the Oracle Scheduler Agent.
# This needs to be entered in case oracle.rdbms.scheduler is selected in the
# list of custom components during custom install
#
# Example: oracle.install.client.schedulerAgentPortNumber = 1500
#------------------------------------------------------------------------------
oracle.install.client.schedulerAgentPortNumber=
#------------------------------------------------------------------------------
# Specify the auto-updates option. It can be one of the following:
#   - MYORACLESUPPORT_DOWNLOAD
#   - OFFLINE_UPDATES
#   - SKIP_UPDATES
#------------------------------------------------------------------------------
oracle.installer.autoupdates.option=

#------------------------------------------------------------------------------
# In case MYORACLESUPPORT_DOWNLOAD option is chosen, specify the location where
# the updates are to be downloaded.
# In case OFFLINE_UPDATES option is chosen, specify the location where the updates
# are present.
#------------------------------------------------------------------------------
oracle.installer.autoupdates.downloadUpdatesLoc=

#------------------------------------------------------------------------------
# Specify the My Oracle Support Account Username which has the patches download privileges
# to be used for software updates.
#
#  Example   : AUTOUPDATES_MYORACLESUPPORT_USERNAME=abc@oracle.com
#------------------------------------------------------------------------------
AUTOUPDATES_MYORACLESUPPORT_USERNAME=
#------------------------------------------------------------------------------
# Specify the My Oracle Support Account Username password which has the patches download privileges
# to be used for software updates.
#
# Example    : AUTOUPDATES_MYORACLESUPPORT_PASSWORD=password
#------------------------------------------------------------------------------
AUTOUPDATES_MYORACLESUPPORT_PASSWORD=

#------------------------------------------------------------------------------
# Specify the Proxy server name. Length should be greater than zero.
#
# Example    : PROXY_HOST=proxy.domain.com
#------------------------------------------------------------------------------
PROXY_HOST=

#------------------------------------------------------------------------------
# Specify the proxy port number. Should be Numeric and at least 2 chars.
#
# Example    : PROXY_PORT=25
#------------------------------------------------------------------------------
PROXY_PORT=
#------------------------------------------------------------------------------
# Specify the proxy user name. Leave PROXY_USER and PROXY_PWD
# blank if your proxy server requires no authentication.
#
# Example    : PROXY_USER=username
#------------------------------------------------------------------------------
PROXY_USER=
#------------------------------------------------------------------------------
# Specify the proxy password. Leave PROXY_USER and PROXY_PWD  
# blank if your proxy server requires no authentication.
#
# Example    : PROXY_PWD=password
#------------------------------------------------------------------------------
PROXY_PWD=

#------------------------------------------------------------------------------
# Specify the proxy realm.
#
# Example    : PROXY_REALM=metalink
#------------------------------------------------------------------------------
PROXY_REALM=

[oracle@client client]$
[oracle@client response]$

上面看起来内容较多,实际上主要就根据实际环境修改了这些值,其他默认或不填即可:
ORACLE_HOSTNAME=client
UNIX_GROUP_NAME=oinstall
INVENTORY_LOCATION=/u01/app/oraInventory
SELECTED_LANGUAGES=en,zh_CN
ORACLE_HOME=/u01/app/oracle/11.2/client
ORACLE_BASE=/u01/app/oracle
oracle.install.client.installType=Administrator

10.开始静默安装客户端
切换到安装目录下,执行下面的命令静默安装客户端
 ./runInstaller -silent -responseFile /home/oracle/soft/client/response/client_install.rsp

[oracle@client response]$ ls
client_install.rsp  client_install.rsp.bak  netca.rsp
[oracle@client response]$ pwd
/home/oracle/soft/client/response
[oracle@client response]$ cd ..
[oracle@client client]$ ls
install  readme.html  response  runInstaller  stage  welcome.html
[oracle@client client]$ ./runInstaller -silent -responseFile /home/oracle/soft/client/response/client_install.rsp
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 120 MB.   Actual 19745 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 4095 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2017-10-25_11-11-32AM. Please wait ...[oracle@client client]$ You can find the log of this install session at:
 /u01/app/oraInventory/logs/installActions2017-10-25_11-11-32AM.log
 
The installation of Oracle Client 11g was successful.
Please check '/u01/app/oraInventory/logs/silentInstall2017-10-25_11-11-32AM.log' for more details.

As a root user, execute the following script(s):
        1. /u01/app/oraInventory/orainstRoot.sh


Successfully Setup Software.

[oracle@client client]$

root执行:
[root@client ~]# /u01/app/oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.

Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script is complete.
[root@client ~]#

客户端安装完成!!!!!!

测试客户端:
--配置tns:
[oracle@client admin]$  cd $ORACLE_HOME/network/admin
[oracle@client admin]$ ls
samples  shrept.lst
[oracle@client admin]$ vi tnsnames.ora
test =
(DESCRIPTION =
   (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.20)(PORT = 1521))
   (CONNECT_DATA =
     (SERVER = DEDICATED)
     (SERVICE_NAME = test)
    )
  )
~
"tnsnames.ora" [New] 8L, 171C written                                                                                                                
[oracle@client admin]$
[oracle@client admin]$ tnsping test

TNS Ping Utility for Linux: Version 11.2.0.4.0 - Production on 25-OCT-2017 11:56:00

Copyright (c) 1997, 2013, Oracle.  All rights reserved.

Used parameter files:

Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.56.20)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = test)))
OK (50 msec)
[oracle@client admin]$ sqlplus system/oracle@test
SQL*Plus: Release 11.2.0.4.0 Production on Wed Oct 25 11:56:25 2017

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show parameter name

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
cell_offloadgroup_name               string
db_file_name_convert                 string
db_name                              string      test
db_unique_name                       string      test
global_names                         boolean     FALSE
instance_name                        string      test
lock_name_space                      string
log_file_name_convert                string
processor_group_name                 string
service_names                        string      service1,service2,service3
SQL>   

感谢你能够认真阅读完这篇文章,希望小编分享的“oralce11g客户端如何安装”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网数据库频道,更多相关知识等着你来学习!

您可能感兴趣的文档:

--结束END--

本文标题: oralce11g客户端如何安装

本文链接: https://www.lsjlt.com/news/64433.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • oralce11g客户端如何安装
    这篇文章主要介绍了oralce11g客户端如何安装,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。首先确认操作系统防火墙和selinux已关闭...
    99+
    2022-10-18
  • CentOS如何安装Git客户端
    本篇内容主要讲解“CentOS如何安装Git客户端”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“CentOS如何安装Git客户端”吧!步骤一:更新系统使用Git客户端之前,先要更新安装CentO...
    99+
    2023-07-05
  • Mysql客户端的安装
    Mysql数据库(简称)属于C/S架构,正常工作中一般都会提供服务端,我们只需要安装客户端进行查询修改数据等操作即可。 正常工作中不管是测试人员或者开发人员,一般数据库的管理员(测试负责人或者开发负责人)都会提供我们数据库的相关信息,如下...
    99+
    2021-12-19
    Mysql客户端的安装
  • 安装Oracle 11gR2客户端
    安装Oracle 11gR2客户端 介绍如何安装Oracle 11gR2数据库客户端。 export DISPLAY=192.168.1.1:0.0 192.168.1.1为Xmanager所在主机的IP...
    99+
    2022-10-18
  • 如何静默安装oracle11g客户端
    这篇文章将为大家详细讲解有关如何静默安装oracle11g客户端,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。 简述: 我这里使用的版本是Oracle 11gr2 c...
    99+
    2022-10-18
  • 聊聊如何安装GitHub客户端
    GitHub是全球最大的开源社区之一,给程序员提供了很好的交流和学习平台。为了更好地使用GitHub,我们需要在电脑上安装GitHub客户端。本文将为大家介绍如何安装GitHub客户端。一、前置条件在安装GitHub客户端之前,我们需要确保...
    99+
    2023-10-22
  • Linux下如何安装PPPoE客户端
    这篇文章给大家分享的是有关Linux下如何安装PPPoE客户端的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。PPPoE(PPP over Ethernet)协议是一种把PPP帧封装到以太网帧中的链路层协议。PPP...
    99+
    2023-06-27
  • Oracle11g中如何安装配置客户端
    这篇文章将为大家详细讲解有关Oracle11g中如何安装配置客户端,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。数据库和客户端在不同的机器之上。在安装之前,在安装Orac...
    99+
    2022-10-18
  • oracle数据库客户端如何安装
    要安装Oracle数据库客户端,您可以按照以下步骤操作:1. 首先,访问Oracle官方网站(https://www.oracle....
    99+
    2023-09-05
    oracle数据库
  • docker中如何安装ceph rbd客户端
    这篇文章主要介绍docker中如何安装ceph rbd客户端,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!ceph rbd客户端要求客户端系统内核 2.6.32以上另外,我这个环境中把k9s-master1当做cep...
    99+
    2023-06-04
  • 怎么安装github客户端
    安装Github客户端Github是全球最大的开源代码托管平台,它不仅提供了代码托管的服务,还提供了一系列协作工具,让开发者可以更加高效地开发和协作。如果你想要更加顺畅地使用Github,那么Github客户端必不可少。在本文中,我们将会为...
    99+
    2023-10-22
  • 【ZK客户端】mac安装PrettyZoo
    概述 PrettyZoo是一款免费开源的zk客户端工具,支持mac、linux、windows平台。这里主要介绍下mac平台如何安装PrettyZoo,因为mac安装时会由于安全策略问题导致软件无法打...
    99+
    2023-09-11
    macos prettyZoo zookeeper 客户端
  • centos7 仅安装mysql7客户端
    centos7 仅安装mysql客户端 1.安装 rpm源 rpm -ivh https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm 2.安装 #可以通过y...
    99+
    2022-04-29
    centos7 仅安装mysql7客户端
  • 安装oracle即时客户端
    一、需求    数据库和应用没在同一台主机上,所以需要安装oracle即时客户端,也可以是oracle的客户端。只不过客户端比较庞大。二、安装oracle即时客户端 下载Oracle即时...
    99+
    2022-10-18
  • 安装金碟K3客户端
    1、检测客户端环境,通过后 2、安装客户端 3、在服务器端添加客户机的用户名和密码并设置为管理员权限 4、运行“金碟组件配置及测试工具”,中间服务器为金碟总服务器5、测试并注册...
    99+
    2023-01-31
    客户端 金碟
  • WinXP如何安装云端服务 icloud pc客户端
      MAC系统的icloud是一个很好用的云端服务,一些WinXP用户也想在自己的XP电脑上安装icloud。那么该怎么安装呢?现在小编就把安装方法与大家共享下。   安装方法:   第一步:去苹果官网下载iclou...
    99+
    2023-06-12
    WinXP icloud 客户端 云端
  • 如何安装CentOS系统中GitLab客户端
    本篇内容主要讲解“如何安装CentOS系统中GitLab客户端”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何安装CentOS系统中GitLab客户端”吧!添加epel仓库代码如下:cat &...
    99+
    2023-06-10
  • linux下安装mysql客户端client
    1. 下载mysql客户端 MySQL的Linux客户端官网下载地址 根据Linux的系统版本选择下载对应的rpm安装包(如下所示),这里选择的是mysql8.0.27版本的redhat8系列的MySQL客户端(可看到有四个rpm包,都必须...
    99+
    2023-08-21
    mysql linux 服务器
  • db2客户端的安装步骤
    这篇文章主要讲解了“db2客户端的安装步骤”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“db2客户端的安装步骤”吧![root@ps1 ~]# cd /so...
    99+
    2022-10-18
  • aix怎么安装oracle客户端
    本篇内容介绍了“aix怎么安装oracle客户端”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!1 环境ro...
    99+
    2022-10-18
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作