安装
1、将三个安装包解压在/home/gbasedbt
2、创建安装目录/opt/GBASE
3、创建用户组和用户gbasedbt
4、安装libncurses.so.5
#yum install libncurses.so.5
5、#yum install libncurses*
6、在系统中手动创建个软连接,root用户在终端执行命令:
# cd /lib64/
# ln -s libnsl.so.2 libnsl.so.1
#[root@bogon doc]# ln -s /usr/lib/libncurses.so.5 /usr/lib64/libncurses.so.5
- 以root 用户操作:进入安装包文件夹中执行安装
- # ./ids_install
- 在安装过程中按提示选择安装路径(/opt/GBASE/gbase),安装类型、设置用户数等,本次默认设置
Installation Complete
---------------------
Congratulations! GBase Software Bundle installation is complete.
Product install status:
GBase: Successful
GBase Connect: Successful
Main Version: GBase 8s V8.7
For more information about using GBase products, see the GBase Information
Center at http://www.gbase.cn.
PRESS <ENTER> TO EXIT THE INSTALLER:
启动/停止
1、 修改配置
# cd /opt/GBASE/gbase
# cat ol_gbasedbt1210.ksh >> /home/gbasedbt/.bash_profile
如果hostname已修改,则需要修改/opt/GBASE/gbase/etc/目录下sqlhosts.ol_gbasedbt1210文件中,将hostname改为IP
比如改成以下:
2、 以gbasedbt用户登录系统
# su gbasedbt
# cd
# source .bash_profile
3、 查看数据库 版本
# onstat –version
4、 查看数据库状态,默认 安装成功后是开启状态
# ps –ef | grep oninit
5、 关闭数据库
# onmode –ky
6、 开启数据库
# oninit –vy
数据操作创建、查询、删除
将/opt/GBASE/gbase/etc/sqlhosts.ol_gbasedbt1210文件中,将hostname改为自己的IP,并source .bash_profile,重启数据库
1、 使用命令dbaccess进入数据库交互界面
2、 使用命令dbaccess - - 进入命令行模式
# create database abcd; //创建数据库
# database abcd; //选择数据库
# close database; //关闭数据库
# drop database abcd; //删除数据库
# dbaccess
# dbaccess - -
表管理
- 使用命令dbaccess - - 进入命令行模式
- # create database testkkk;
- # database testkkk;
- # create table sqq2(c1 int not null primary key,c2 char(20),c3 date);
- # insert into sqq2 values(1,'eeee','08-07-2017');
- # alter table sqq2 add(c0 int before c1);
- # delete from sqq2 where c1='1';
- # insert into sqq2 values(1,1,'eeee','08-07-2017');
- # select * from sqq2;
视图管理
使用命令dbaccess - - 进入命令行模式
# database testkkk;
# create view ssq as select * from sqq2 where c1='1';
# select * from ssq;
# drop view ssq;
# delete from sqq2 where c1='1';
索引管理
使用命令dbaccess - - 进入命令行模式
# databaseteskkk;
# create index qq1 on sqq2(c3);
# alter index qq1 to cluster;
# drop index qq1;
卸载
1、 切换至gbasedbt用户
关闭所有服务:
# onmode -ky
2、 切换至root用户
进入安装目录:
# cd /opt/GBASE/gbase
3、 执行卸载命令
# ./uninstall/uninstall_ids/uninstallids
4、 卸载后,清除残留文件:
# rm -rf /opt/GBASE/