1、配置开启方式
在安装目录下找到 kingbase.auto.conf 文件
/opt/Kingbase/ES/V8/data # 这是默认安装地址
修改kingbase.auto.conf 文件
# Do not edit this file manually!
# It will be overwritten by...
mysql -u root -p修改mysql库的user表,将host项,从localhost改为%。%这里表示的是允许任意host访问,如果只允许某一个ip访问,则可改为相应的ipmysql> use mysql;mysql> update user set host = '%' where u...