GBase 8s
安装配置
问答

就是说密码过于简单无法登录,然后又不能修改密码,usermapper是啥也搜不到,咋办

发表于2023-12-27 17:16:27378次浏览3个评论

登录提示

961: The password is too simple.

dbaccess进入修改,又提示
> alter user gbasedbt modify password 'gggdsgdsg';

26732: The USERMAPPING feature is disabled. The USERMAPPING configuration parameter
must be set to BASIC or ADMIN.



如果用以下

dbaccess dbasedbt dbasedbt
Your evaluation license will expire on 2024-12-25 00:00:00

329: Database not found or no system permission.

111: ISAM error: no record found.

 

 

另外标准模式安装后,完全不知道端口和实例名是什么,,,,

评论

登录后才可以发表评论
用户头像
小鱼不吐泡泡发表于 2年前
gbase8s默认用操作系统用户,直接修改操作系统gbasedbt用户密码,然后重启数据库实例即可
用户头像
大米发表于 2年前
gbasedbt用户为操作系统级

1---修改密码
passwd gbasedbt

2--修改完后重启数据库服务
onmode -ky
oninit -vy

3--连接数据库
dbaccess - -

4--建库
create database test with log;

5--建表插数据查询
create table t1(id int);
insert into t1 values(1);

select * from t1;
最佳回答
曾云林发表于 2个月前
看看啦。