1. 程式人生 > >17092301_CentOS7安裝Oracle11gR2圖文詳解

17092301_CentOS7安裝Oracle11gR2圖文詳解

        最近有一個專案需要在Linux環境下通過Tomcat+ Oracle環境進行釋出,之前的專案多以Windows server上配置釋出為主,藉此機會正好學習一下Linux下的專案釋出。本文先介紹Oracle11gR2在CentOS上的安裝與配置,之後將陸續推出Tomcat安裝與配置及專案部署釋出。在自己學習和實踐的過程中,參照了網上朋友的一些資料,由衷感謝每一個樂於共享知識的人,謝謝!

1. 環境準備

1.1 系統

作業系統:CentOS7(64位)

1.2 軟體工具

linux.x64_11gR2_database_1of2.zip

linux.x64_11gR2_database_2of2.zip

推薦下載地址:Oracle官方網站

2. 方法/步驟

2.1、安裝Oracle前準備

2.1.1 建立執行oracle資料庫的系統使用者和使用者組

[[email protected] ~]$ su root                #切換到root

Password:

[[email protected] zm]# groupadd oinstall   #建立使用者組oinstall

[[email protected] zm]# groupadd dba      #建立使用者組dba

[[email protected] zm]# useradd -g oinstall -g dba -m oracle

#建立oracle使用者,並加入到oinstall和dba使用者組

[[email protected] zm]# passwd oracle #設定使用者oracle的登陸密碼,不設定密碼,在CentOS的圖形登陸介面沒法登陸

Changing password for user oracle.

New password:         # 設定密碼,密碼必須8位,且數字字母組合

Retype new password:   # 確認密碼

passwd: all authentication tokensupdated successfully.

[[email protected]

zm]# id oracle      # 檢視新建的oracle使用者

uid=1001(oracle) gid=1002(dba)groups=1002(dba)

[[email protected] zm]#

理論上按照官網的描述需要3種使用者組,實際只建兩個oinstall和dba,後面再安裝oracle資料庫的時候把OSOPER組也設定是dba組。

a.oracle 清單組(一般為oinstall):

OINSTALL 組的成員被視為 Oracle 軟體的“所有者”,擁有對 Oracle 中央清單 (oraInventory) 的寫入許可權。在一個 Linux 系統上首次安裝 Oracle 軟體時,OUI 會建立 /etc/oraInst.loc 檔案。該檔案指定 Oracle 清單組的名稱(預設為 oinstall)以及 Oracle 中央清單目錄的路徑。

b.資料庫管理員(OSDBA,一般為 dba):

OSDBA 組的成員可通過作業系統身份驗證使用 SQL 以 SYSDBA 身份連線到一個 Oracle 例項。該組的成員可執行關鍵的資料庫管理任務,如建立資料庫、啟動和關閉例項。該組的預設名稱為dba。SYSDBA 系統許可權甚至在資料庫未開啟時也允許訪問資料庫例項。對此許可權的控制完全超出了資料庫本身的範圍。不要混淆 SYSDBA系統許可權與資料庫角色 DBA。DBA 角色不包括 SYSDBA 或SYSOPER 系統許可權。

c.資料庫操作員組(OSOPER,一般為 oper):

OSOPER 組的成員可通過作業系統身份驗證使用 SQL 以 SYSOPER 身份連線到一個 Oracle 例項。這個可選組的成員擁有一組有限的資料庫管理許可權,如管理和執行備份。該組的預設名稱為oper。SYSOPER 系統許可權甚至在資料庫未開啟時也允許訪問資料庫例項。對此許可權的控制完全超出了資料庫本身的範圍。要使用該組,選擇 Advanced 安裝型別來安裝 Oracle 資料庫軟體。

2.1.2 建立oracle資料庫安裝目錄

[[email protected] ~]$ su root

Password:

[[email protected] zm]# mkdir -p /data/oracle  #建立oracle資料庫安裝目錄

[[email protected] zm]# mkdir -p /data/oraInventory #建立oracle資料庫配置檔案目錄

[[email protected] zm]# mkdir -p /data/database  #建立oracle資料庫軟體包解壓目錄

[[email protected] zm]# cd /data

[[email protected] data]# ls  #建立完畢檢查一下

database oracle  oraInventory

[[email protected] data]# chown -R oracle:oinstall /data/oracle  #設定目錄所有者為oinstall使用者組的oracle使用者

[[email protected] data]# chown -R oracle:oinstall /data/oraInventory

[[email protected] data]# chown -R oracle:oinstall /data/database

[[email protected] data]# 

2.1.3 修改OS系統標識

oracle預設不支援CentOS系統安裝,Oracle Database 11g Release 2 的 OS要求參考:

 我安裝是64位資料庫,On Linux x86-64:Red Hat Enterprise Linux 7  (RHEL 7)

 修改檔案 /etc/RedHat-release

[[email protected] data]$ su root

Password:

[[email protected] data]# cat /proc/version

Linux version 3.10.0-327.el7.x86_64([email protected]) (gcc version 4.8.3 20140911 (Red Hat 4.8.3-9)(GCC) ) #1 SMP Thu Nov 19 22:10:57 UTC 2015

[[email protected] data]# cat /etc/redhat-release  

CentOS Linux release 7.2.1511 (Core)

[[email protected] data]# vi /etc/redhat-release

[[email protected] data]# cat /etc/redhat-release

redhat-7

[[email protected] data]#

2.1.4 安裝oracle資料庫所需要的軟體包

重複一遍,我安裝時OracleDatabase 11g Release 2 64位資料庫。

作業系統:OracleLinux 7 and Red Hat Enterprise Linux 7

The followingpackages (or later versions) must be installed:

binutils-2.23.52.0.1-12.el7.x86_64

compat-libcap1-1.10-3.el7.x86_64

compat-libstdc++-33-3.2.3-71.el7.i686  # 32位軟體不需要

compat-libstdc++-33-3.2.3-71.el7.x86_64

gcc-4.8.2-3.el7.x86_64

gcc-c++-4.8.2-3.el7.x86_64

glibc-2.17-36.el7.i686

glibc-2.17-36.el7.x86_64

glibc-devel-2.17-36.el7.i686  # 32位軟體不需要

glibc-devel-2.17-36.el7.x86_64

ksh

libaio-0.3.109-9.el7.i686  # 32位軟體不需要

libaio-0.3.109-9.el7.x86_64

libaio-devel-0.3.109-9.el7.i686  # 32位軟體不需要

libaio-devel-0.3.109-9.el7.x86_64

libgcc-4.8.2-3.el7.i686  # 32位軟體不需要

libgcc-4.8.2-3.el7.x86_64

libstdc++-4.8.2-3.el7.i686# 32位軟體不需要

libstdc++-4.8.2-3.el7.x86_64

libstdc++-devel-4.8.2-3.el7.i686 # 32位軟體不需要

libstdc++-devel-4.8.2-3.el7.x86_64

libXi-1.7.2-1.el7.i686    # 32位軟體不需要

libXi-1.7.2-1.el7.x86_64

libXtst-1.2.2-1.el7.i686   # 32位軟體不需要

libXtst-1.2.2-1.el7.x86_64

make-3.82-19.el7.x86_64

sysstat-10.1.5-1.el7.x86_64

一個一個的安裝,文件要求高版本也可以:

[[email protected]]$ su root

Password:

[[email protected]]# yum install binutils
省略...

2.1.5 關閉防火牆firewall

CentOS 7.2預設使用的是firewall作為防火牆,

[[email protected] /]$ su root

Password:

[[email protected] /]# systemctl status firewalld.service#檢視防火牆狀態,執行中

● firewalld.service - firewalld -dynamic firewall daemon

  Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled;vendor preset: enabled)

  Active: active(running) since Thu 2016-04-07 18:54:29 PDT; 2h 20min ago

 Main PID: 802 (firewalld)

  CGroup: /system.slice/firewalld.service

           └─802 /usr/bin/python -Es/usr/sbin/firewalld --nofork --nopid

Apr 07 18:54:25 localhost.localdomainsystemd[1]: Starting firewalld - dynamic firewall daemon...

Apr 07 18:54:29 localhost.localdomainsystemd[1]: Started firewalld - dynamic firewall daemon.

[[email protected] /]# systemctl stop firewalld.service   #關閉防火牆

[[email protected] /]# systemctl status firewalld.service  #再次檢視防火牆狀態,發現已關閉

●firewalld.service - firewalld - dynamic firewall daemon

   Loaded: loaded(/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)

   Active: inactive (dead) since Thu 2016-04-07 21:15:34 PDT; 9sago

 Main PID: 802 (code=exited, status=0/SUCCESS)

Apr 07 18:54:25localhost.localdomain systemd[1]: Starting firewalld - dynamic firewalldaemon...

Apr 07 18:54:29localhost.localdomain systemd[1]: Started firewalld - dynamic firewall daemon.

Apr 07 21:15:33localhost systemd[1]: Stopping firewalld - dynamic firewall daemon...

Apr 07 21:15:34localhost systemd[1]: Stopped firewalld - dynamic firewall daemon.

[[email protected]/]# systemctl disable firewalld.service  #禁止使用防火牆(重啟也是禁止的)

Removed symlink/etc/systemd/system/dbus-org.Fedoraproject.FirewallD1.service.

Removed symlink/etc/systemd/system/basic.target.wants/firewalld.service.

[[email protected]/]#

此處先禁用防火牆,在進行客戶端配置時,通過iptables進行配置。

2.1.6 關閉selinux(需重啟生效)

[[email protected]/]# vi /etc/selinux/config

[[email protected]/]# cat /etc/selinux/config

# This filecontrols the state of SELinux on the system.

# SELINUX= cantake one of these three values:

#     enforcing - SELinux security policy isenforced.

#     permissive - SELinux prints warningsinstead of enforcing.

#     disabled - No SELinux policy is loaded.

SELINUX=disabled   #此處enforcing修改為disabled

# SELINUXTYPE=can take one of three two values:

#     targeted - Targeted processes areprotected,

#     minimum - Modification of targeted policy.Only selected processes are protected.

#     mls - Multi Level Security protection.

SELINUXTYPE=targeted

[[email protected]/]#

為啥要關閉selinux?本人查找了一下Oracle的官方安裝Guide,並沒有看到關於selinux的要求,不過參照網上的資料,基本都是關閉,我也就關閉了,等有空了再研究。

[[email protected]/]# reboot   # 重啟生效

2.1.7 修改核心引數(紅色部分為新增程式碼)

[[email protected]/]$ su root

Password:

[[email protected]/]# vi /etc/sysctl.conf

 [[email protected] /]# cat /etc/sysctl.conf

# System defaultsettings live in /usr/lib/sysctl.d/00-system.conf.

# To overridethose settings, enter new settings here, or in an/etc/sysctl.d/<name>.conf file

#

# For moreinformation, see sysctl.conf(5) and sysctl.d(5).

net.ipv4.icmp_echo_ignore_broadcasts= 1

net.ipv4.conf.all.rp_filter= 1

fs.aio-max-nr = 1048576

fs.file-max = 6815744 #設定最大開啟檔案數

kernel.shmall = 2097152 #共享記憶體的總量,8G記憶體設定:2097152*4k/1024/1024

kernel.shmmax = 1073741824   #最大共享記憶體段的大小 根據Oracle官網安裝Guide要求,推薦為實體記憶體的一半,我的記憶體為2G,所以這裡設定為1G:1073741824/1024/1024=1024M=1G

kernel.shmmni = 4096 #整個系統共享記憶體端的最大數

kernel.sem = 250 32000 100 128

net.ipv4.ip_local_port_range = 9000 65500 #可使用的IPv4埠範圍

net.core.rmem_default = 262144

net.core.rmem_max= 4194304

net.core.wmem_default= 262144

net.core.wmem_max= 1048576

[[email protected]/]#

使配置引數生效

[[email protected]/]# sysctl -p

fs.aio-max-nr =1048576

fs.file-max =6815744

kernel.shmall =2097152

kernel.shmmax =1073741824

kernel.shmmni =4096

kernel.sem = 25032000 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= 1048576

[[email protected]/]# 

2.1.8 對oracle使用者設定限制,提高軟體執行效能(紅色為新增部分)

可參考Oracle官網安裝Guide:http://docs.oracle.com/cd/E11882_01/install.112/e24326/toc.htm#CEGIHDBF

[[email protected] /]$ su root

Password:

[[email protected] /]# vi /etc/security/limits.conf

[[email protected] /]# cat /etc/security/limits.conf

# /etc/security/limits.conf

#

#This file sets the resource limits forthe users logged in via PAM.

#It does not affect resource limits ofthe system services.

#

#Also note that configuration files in/etc/security/limits.d directory,

#which are read in alphabetical order,override the settings in this

#file in case the domain is the same ormore specific.

#That means for example that setting alimit for wildcard domain here

#can be overriden with a wildcardsetting in a config file in the

#subdirectory, but a user specificsetting here can be overriden only

#with a user specific setting in thesubdirectory.

#

#Each line describes a limit for a userin the form:

#

#<domain>        <type>  <item> <value>

#

#Where:

#<domain> can be:

#       - a user name

#       - a group name, with @group syntax

#       - the wildcard *, for default entry

#       - the wildcard %, can be also used with %group syntax,

#                 for maxlogin limit

#<type> can have the two values:

#       - "soft" for enforcing the soft limits

#       - "hard" for enforcing hard limits

#

#<item> can be one of thefollowing:

#       - core - limits the core file size (KB)

#       - data - max data size (KB)

#       - fsize - maximum filesize (KB)

#       - memlock - max locked-in-memory address space (KB)

#       - nofile - max number of open file descriptors

#       - rss - max resident set size (KB)

#       - stack - max stack size (KB)

#       - cpu - max CPU time (MIN)

#       - nproc - max number of processes

#       - as - address space limit (KB)

……

#<domain>      <type>  <item>         <value>

#*               soft    core            0

#*               hard    rss             10000

#@student        hard   nproc           20

#@faculty        soft   nproc           20

#@faculty        hard   nproc           50

#ftp             hard    nproc           0

#@student        -      maxlogins       4

oracle soft nproc 2047

oracle hard nproc 16384

oracle soft nofile 1024

oracle hard nofile 65536

# End of file

[[email protected] /]#  

2.1.9 配置使用者的環境變數(紅色部分為新增程式碼)

[[email protected] /]# vim /home/oracle/.bash_profile

[[email protected] /]# cat /home/oracle/.bash_profile

# .bash_profile

# Get the aliases and functions

if [ -f ~/.bashrc ]; then

   . ~/.bashrc

fi

# User specific environment and startupprograms

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH

export ORACLE_BASE=/data/oracle #oracle資料庫安裝目錄

export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1 #oracle資料庫路徑

export ORACLE_SID=orcl #oracle啟動資料庫例項名

export ORACLE_TERM=xterm  #xterm視窗模式安裝

export PATH=$ORACLE_HOME/bin:/usr/sbin:$PATH #新增系統環境變數

export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib #新增系統環境變數

export LANG=C #防止安裝過程出現亂碼

export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK  #設定Oracle客戶端字符集,必須與Oracle安裝時設定的字符集保持一致,如:ZHS16GBK,否則出現數據匯入匯出中文亂碼問題

[[email protected] /]#  

使上述配置立即生效:

[[email protected] /]# source /home/oracle/.bash_profile

[[email protected] /]#

2.1.10 完成上述配置後,上傳安裝包,將oracle安裝包上傳到/usr/local/src

[[email protected] src]# cd /usr/local/src/

[[email protected] src]# ls linux*

linux.x64_11gR2_database_1of2.zip 

linux.x64_11gR2_database_2of2.zip

[[email protected] src]#

2.1.11.解壓安裝包

[[email protected] /]# su oracle    #切換至oracle使用者

[[email protected] /]$ cd /usr/local/src  #進入/usr/local/src目錄

[[email protected] src]$ ls

linux.x64_11gR2_database_1of2.zip  linux.x64_11gR2_database_2of2.zip

[[email protected] src]$ unzip linux.x64_11gR2_database_1of2.zip -d /data/database/   #解壓

(省略...)

[[email protected] src]$ unzip linux.x64_11gR2_database_2of2.zip -d /data/database/   #解壓

(省略...)

[[email protected] src]$ su root

Password:

[[email protected] src]# chown -R oracle:oinstall /data/database/database/

[[email protected] src]#

2.2. oracle安裝

2.2.1 圖形介面登陸oracle使用者:


2.2.2 啟動oralce安裝,到/data/database/database/目錄下,執行runInstaller


2.2.3 去掉勾,個人使用環境不需要自動接收Oracle的安全更新。


選yes

2.2.4 下一步,只安裝資料庫軟體,個人用不要那些玩意~~


2.2.5 選擇單例安裝,前面的所有配置均為單例安裝。


2.2.6 新增語言


2.2.7 預設安裝版本企業版-Enterprise Edition 


2.2.8 確定資料軟體的安裝路徑,自動讀取前面環境變數中配置的值


2.2.9 建立安裝清單目錄


2.2.10 理論上要建立Database OperationOSOPERGroup:oper ,個人用,懶得建,就使用dba使用者組


2.2.11 安裝檢查,按照提示資訊一個一個解決。


swap空間不足解決 :(要求2.67G實際2G

本人安裝過程中未出現此問題,此處參考文章中遇到過該問題,並提供瞭解決方案,避免其他同學遇到同樣的問題,此處也就一併貼出。

[[email protected] oracle]# free -m#檢視當前虛擬記憶體

              total        used        free      shared buff/cache   available

Mem:           1824        1369          93          10         361         250

Swap:          2048          20        2028

[[email protected] oracle]# dd if=/dev/zero of=/home/swap bs=1024 count=1024000  #將當前swap空間由2048M增加到3048M新增一個2014swap檔案

1024000+0 records in

1024000+0 records out

1048576000 bytes (1.0 GB) copied,29.4051 s, 35.7 MB/s

[[email protected] oracle]# mkswap /home/swap

Setting up swapspace version 1, size =1023996 KiB

no label,UUID=5e3d39d7-285e-4c74-b321-1e2b3ffabf83

[[email protected] oracle]# free -m

              total        used        free      shared buff/cache   available

Mem:           1824        1275          95          10         454         342

Swap:          2048         141        1907

[[email protected] oracle]# swapon /home/swap  #增加並啟用虛擬內容

swapon: /home/swap: insecure permissions0644, 0600 suggested.

[[email protected] oracle]# free -m  #再次檢視

              total        used        free      shared buff/cache   available

Mem:           1824        1275          94          10        454         342

Swap:          3048         141        2907 

2.2.12 一個一個檢查package,在準備階段中漏掉的,此處再安裝,有些系統報錯是因為現有的包的版本比檢測要高,最後忽略即可。(點選Check_Again多檢查幾次)


2.2.13 準備完畢,“Finish”開始安裝。


2.2.14 安裝過程中提示用root 使用者執行指令碼程式。




直接按回車即可。


2.2.15 安裝完成


最後,說明下本文章的內容是結合網上的一些資料和自己的實踐整理完成的,僅供學習之用。感謝每一個樂於共享知識的人。如有錯誤或建議,請多多指正。謝謝!


相關推薦

17092301_CentOS7安裝Oracle11gR2圖文

        最近有一個專案需要在Linux環境下通過Tomcat+ Oracle環境進行釋出,之前的專案多以Windows server上配置釋出為主,藉此機會正好學習一下Linux下的專案釋出。本文先介紹Oracle11gR2在CentOS上的安裝與配置,之後將陸續推

Microsoft Power BI Desktop概念學習系列之Microsoft Power BI Desktop的下載和安裝圖文

-c gpo mic sof mage pos microsoft body 技術分享   不多說,直接上幹貨!   官網 https://powerbi.microsoft.com/zh-cn/downloads/

Fiddler Web Debugger的下載和安裝圖文

下載安裝 get html lan href bug pro 人生苦短 所有       不多說,直接上幹貨!   Fiddler是一個http協議調試代理工具,它能夠記錄客戶端和服務器之間的所有 HTTP請求,可以針對特定的HTTP請

Ubuntu 16.04 Server 版安裝過程圖文

安裝ununtu16.04.3首先,我們會進入系統安裝的第一個界面,開始系統的安裝操作。每一步的操作,左下角都會提示操作方式!1.選擇系統語言-English2.選擇操作-Install Ubuntu Server3.選擇安裝過程和系統的默認語言-English4.選擇區域-othe5.選擇亞洲-Asia6.

CentOS 7系統安裝配置圖文

安裝CentOS一、安裝CentOS 7成功引導系統後,會出現下面的界面界面說明:Install CentOS Linux 7 #安裝CentOS 7 Test this media & install CentOS Linux 7 #測試安裝文件並安裝CentOS7 Troublesh

Apache-kylin-2.0.0-bin-hbase1x.tar.gz的下載與安裝圖文

mas arch alt img div .net nsh 它的 content 首先,對於Apache Kylin的安裝,我有話要說。   由於Apache Kylin本身只是一個Server,所以安裝部署還是比較簡單的。但是它的前提要求是Hadoop、Hive、HBas

PhantomJS、CasperJS安裝配置圖文

phantom 解壓 tex CA ant lin AS cmd 下載 目前網站主流的加載方式: 一種是同步加載;另一種是異步加載,也即我們常說的用ajax。對於同步加載的網站,普通的爬蟲程序輕松就能搞定。但是對於那種異步請求數據的網站,通常使用selenium+Phant

StreamSets學習系列之StreamSets的Core Tarball方式安裝圖文

consul initial detect test read stage slf4j 安裝包 最大的     不多說,直接上幹貨!   前期博客

【原】SQL Sverver 2008R2 安裝圖文

1、雙擊SQL Server2008 光碟映像檔案如下圖,管理員身份執行setup 2、進入SQL Server2008 安裝中心介面,選擇全新安裝    3、進入到常規檢查介面   4、根據需要選擇版本,或者輸入金鑰自動識別版本   &n

MySQL基礎知識-MySQL安裝教程圖文

今天給搭建分享一個教程,mysql的安裝操作,這裡呢我叫大家怎麼用二進位制去安裝mysql,其實在大多數的生產環境中使用二進位制預編譯的安裝方式是最多了,下面大家跟著我的步驟去嘗試著安裝下吧。 先給大家介紹下我的安裝環境 我用的是centos7, 1,第一步呢,進入mysql的官網www

Windows Server 2016 IIS10 安裝配置圖文

一、進入伺服器管理器 1、開始選單 2、伺服器管理器 3、管理 4、新增角色和功能嚮導 二、開始之前 單擊”下一步” 三、安裝型別 選擇”基於角色或基於功能的安裝”->單擊”下一步” 四、伺服器選擇 選擇”從伺服器池中選

CentOS7安裝Oracle12c圖文

root身份安裝依賴包:   yum -y install binutils compat-libcap1 compat-libstdc++-33 compat-libstdc++-33*.i686 elfutils-libelf-devel gcc gcc-c++ glibc*.i686 glibc gl

Centos7 安裝Oracle11gR2全過程

安裝Oracle需要Oracle使用者及Oracle,oinstall,dba組。Oracle使用者同時屬於三個組。 虛擬機器安裝時會遇到nakefileexception,詳細解決辦法見另外筆記Error in invoking target ‘agent

python直譯器安裝圖文

Python 直譯器安裝 — 安裝pycharm 般整合開發工具(IDE)integrate developer kit 是 整合多個功能的開發工具軟體。 輕量級的開發工具:sublime 重型級開發工具:pycharm eclipse vscode pych

Linux下載安裝ZooKeeper圖文

ZooKeeper下載安裝 目錄 ZooKeeper是什麼 ZooKeeper下載 ZooKeeper安裝 ZooKeeper是什麼 ZooKeeper從字面上看就是“動物管理員”的意思,管理動物的人也是管理者,至少他能管理眾多的動物。我們都

Ubuntu 18.04 Server 版安裝過程圖文

進入系統安裝的第一個介面,開始系統的安裝操作。每一步的操作,左下角都會提示操作方式!!1.選擇系統語言-English2.鍵盤設定-English3.選擇操作Install ubuntu4.網路選擇(預設是DHCP,因為我沒開DHCP只能設定靜態地址)選擇eth0回車5.使用

全網最詳細的一個超級好用的命令列工具【Cmder】的下載與安裝圖文

    不多說,直接上乾貨!         下載的時候,有兩個版本,分別是mini與full版;唯一的差別在於有沒有內建msysgit工具,這是Git for Windows的標準配備;全安裝版 cmder 自帶了 msysgit, 壓縮包 23M, 除了 git 本身這個命令之外, 裡面

mysql-installer-web-community-5.7.18.1.msi的安裝圖文

  不多說,直接上乾貨! 說在前面的話   我為什麼已經嘗試和使用過同類型產品的很多MySQL版本,還要書寫這篇部落格呢?基於mysql-installer-web-community-5.7.18.1.msi   是因為,最近在做資料分析相關的研究工作。   首先,跟大家解釋

資料庫概述、mysql-5.7.11-winx64.zip 的下載、安裝、配置和使用(windows裡安裝圖文

本博文的主要內容有   .資料庫的概述   .mysql-5.7.11-winx64.zip 的下載     .mysql-5.7.11-winx64.zip 的安裝   .mysql-5.7.11-winx64.zip 的配置   .mysql-5.7.11-winx64.zip 的使用