方法/步骤
首先需要检查电脑硬件是否满足安装的要求
接下来创建oracle组以及oracle用户
然后进行配置linux内核的参数
接下来在oracle用户下面执行就可以了
如果你设置了路径,直接切换到oracle用户下执行dbca,就出来创建数据库实例的页面。如果没有设置路径,就到你安装oracle的安装文件下,找到bin文件,进去之后运行dbca就OK了。之后需要按步骤来,去网上找教程吧。后边还需要安装环境,把你自己的linux安装盘设置为yum源(redhat系统的话),之后安装环境
直接在命令行输入dbca 通过UI界面创建就可以啦
oracle一个实例下只能有一个数据库,所以创建数据库肯定也要重新创建一个实例的。
不过听说oracle 12C 在一个实例下可以有多个数据库了,和DB2差不多。
看你的oracle是什么版本了
使用create命令建立mysql数据库: 新建数据库例: 1以mysql最高管理员登录,在mysql>create database XXXXX; xxxxx即为数据库名 2在mysql中如何创建用户,使该用户对该数据库有完全权限 3可 以 用 GRANT 命 令
oracle11g创建数据库的步骤如下:
1、按住键盘上Windows键,打开开始菜单,找到Database Configuration Assitant并打开;
2、打开数据库配置助手Database Configuration Assitant,单击逗下一步地;
步骤1:选择逗创建数据库地,单击逗下一步地;
3、选择逗一般用途或事务处理地,单击逗下一步地;
4、设置数据库的名称和实例名,两者可设置相同,也可以不同,单击逗下一步地;
5、管理选项配置,不勾选配置Enterprise Manager,单击逗下一步地;
6、数据库身份z明,可以为不同的账户分别设置不同的管理口令,也可以为所有账户设置同一口令,单击逗下一步地;
7、数据库文件所在位置,默认存储类型:文件系统,存储位置:使用模版中的数据库文件位置,也可以自己指定存储路径,单击逗下一步地;
8、恢复配置,指定快速恢复区;
9、数据库内容,根据需要,选择是否添加示例方案,单击逗下一步地;
10、初始化参数,设置内存、字符集等,单击逗下一步地;
11、数据库存储,控制文件、数据文件、重做日志文件位置设置,单击逗下一步地;
12、创建选项,创建数据库,生成脚本,单击逗完成地,开始创建数据库。
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfgServers[1]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfgServers[1]['stduser'] = ''; // MySQL standard user settings (this user must have read-only
$cfgServers[1]['stdpass'] = ''; // access to the "mysql/user" and "mysql/db" tables)
$cfgServers[1]['adv_auth'] = FALSE; // Use advanced authentication
$cfgServers[1]['user'] = 'alintest'; // MySQL user
$cfgServers[1]['password'] = 'alintest'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = 'alintest'; // If set to a db-name, only this db is displayed at left frame
我网上复制来的,可以稍微看下,其实DB2也有安装脚本的
安装DB2
DB2的安装可以算是再各个数据库里面最简单的了。除了sqlite。
下载安装包,解压
[root@Enterprise tmp]# tar xvf DB2_V82_PE_LNX_32_NLVtar
解开以后的文件都被放置在当前目录下的pe文件夹中。
开始安装:
[root@Enterprise tmp]# cd pe
[root@Enterprise pe]# ls
db2 db2_deinstall db2_install db2setup doc
[root@Enterprise pe]# /db2_install
Specify one or more of the following keywords,
separated by spaces, to install DB2 products
选择自己要安装的产品,输入名字后回车。等待安装完成。
我们现在需要做的是,对数据库的初始化工作。包括安装授权文件和创建一个实例并运行它。
首先,我们安装授权文件。
不安装授权文件的话,则是评估版,九十天后就要过期。授权文件,在安装包已经有了。我们用下面的命令安装它:
[root@Enterprise pe]# /opt/IBM/db2/V82/adm/db2licm -a /tmp/pe/db2/lic
ense/db2pelic
如果没有db2pelic 文件。可以去网上找找。
我们需要创建一个用户。
[root@Enterprise pe]# useradd db2inst1
[root@Enterprise pe]# passwd db2inst1
开始创建实例:
[root@Enterprise pe]# /opt/IBM/db2/V82/instance/db2icrt -u db2inst1 db2inst1
这样,我们就创建了一个实例db2ins1。
[root@Enterprise pe]# su db2inst1
[db2inst1@Enterprise pe]$ db2start
07/26/2007 16:45:10 0 0 SQL1063N DB2START processing was successful
SQL1063N DB2START processing was successful
这样我们数据库就启动成功。
[db2inst1@Enterprise pe]$ db2
(c) Copyright IBM Corporation 1993,2002
Command Line Processor for DB2 SDK 820
You can issue database manager commands and SQL statements from the command
prompt For example:
db2 => connect to sample
db2 => bind samplebnd
For general help, type:
For command help, type: command, where command can be
the first few keywords of a database manager command For example:
CATALOG DATABASE for help on the CATALOG DATABASE command
CATALOG for help on all of the CATALOG commands
To exit db2 interactive mode, type QUIT at the command prompt Outside
interactive mode, all commands must be prefixed with 'db2'
To list the current command option settings, type LIST COMMAND OPTIONS
For more detailed help, refer to the Online Reference Manual
db2 =>
创建一个最简单的数据库
db2 => create database testdb
DB20000I The CREATE DATABASE command completed successfully
查看本instance下有哪些database
db2 => list database directory
System Database Directory
Number of entries in the directory = 2
Database 1 entry:
Database alias = TESTDB
Database name = TESTDB
Local database directory = /home/db2inst1
Database release level = a00
Comment =
Directory entry type = Indirect
Catalog database partition number = 0
Alternate server hostname =
Alternate server port number =
Database 2 entry:
Database alias = OMNIDB
Database name = OMNIDB
Local database directory = /home/db2inst1/data
Database release level = a00
Comment =
Directory entry type = Indirect
Catalog database partition number = 0
Alternate server hostname =
Alternate server port number =
以上就是关于怎么在linux下安装oracle数据库全部的内容,包括:怎么在linux下安装oracle数据库、linux oracle 怎么创建新的数据库、linux 怎么创建oracle 数据库实例等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)