新手安装数据指南,操作系统采用麒麟V10 SP3
系统:Kylin-Server-V10-SP3-General-Release-2303-X86_64.iso
数据库:dm8_20230104_x86_rh6_64.iso
一、创建用户和组
[root@DM8 software]# groupadd dinstall
[root@DM8 software]# useradd -g dinstall dmdba
[root@DM8 software]# passwd dmdba
二、设置linux限制
[root@DM8 software]# vi/etc/security/limits.conf
dmdba soft nproc 10240
dmdba hard nproc 10240
dmdba soft nofile 65536
dmdba hard nofile 65536
三、创建目录
挂载dm镜像mount -o loop dm8_20230104_x86_rh6_64.iso /mnt/
mkdir -p /dm8/
chown -R dmdba:dinstall /dm8/
chmod –R 755 /dm8
四、配置临时目录
mkdir /home/dmdba/tmp
vi /home/dmdba/.bash_profile
export DM_INSTALL_TMPDIR=/home/dmdba/tmp
. /home/dmdba/.bash_profile
五、安装数据库
图形安装
[root@DM8 #] xhost +
access control disabled, clients canconnect from any host
[root@DM8 #] su – dmdba
[dmdba@DM8 mnt]$ ./DMInstall.bin
命令行安装
./DMInstall.bin –i
静默安装
./DMInstall.bin –q xxxx 配置文件
六、初始化数据库
图形化初始数据库
/dm8/tool/dbca.sh
命令行初始数据库,完事之后还要手工注册服务root执行
/dm8/bin/dminit PATH=/dm8/data PORT_NUM=5236 INSTANCE_NAME=DMSERVER DB_NAME=DMSERVER SYSDBA_PWD=dameng123
七、登录验证
[dmdba@DM8~]$ disql sysdba/dameng123@localhost:5236
服务器[localhost:5236]:处于普通打开状态
登录使用时间: 2.001(毫秒)
disql V8
查询数据库状态
SQL>select status$ from v$instance;
OPEN
把、注册系统服务
[root@DM8 ~]# cd /dm8/script/root/
[root@DM8 root]# ./dm_service_installer.sh –h
[root@DM8 root]# ./dm_service_installer.sh -t dmserver -p DMSERVER -dm_ini/dm8/data/DMSERVER/dm.ini
[root@DM8 root]# systemctl enable DmServiceDMSERVER.service
[root@DM8 root]# systemctl start DmServiceDMSERVER.service
[root@DM8 root]# systemctl status DmServiceDMSERVER.service
总
文章
阅读量
获赞