diff --git a/docs/08-interfaces/08-OMC北向操作服务接口V2.1.0.docx b/docs/08-interfaces/08-OMC北向操作服务接口V2.1.0.docx new file mode 100644 index 0000000..6efd08f Binary files /dev/null and b/docs/08-interfaces/08-OMC北向操作服务接口V2.1.0.docx differ diff --git a/env/ctyunos.txt b/env/ctyunos.txt new file mode 100644 index 0000000..2ed0b42 --- /dev/null +++ b/env/ctyunos.txt @@ -0,0 +1,24 @@ +1. 安装omc包时提示缺失libcares.so.2 +sudo yum install c-ares +2. 安装kvdb依赖libatomic.so.1 +sudo yum install libatomic +3. 安装mariadb 10.3(系统仓库自带) +sudo yum install mariadb-server + +增加: /etc/my.cnf.d/mariadb-server.cnf两行配置项: +bind-address=0.0.0.0 +port=33066 + +sudo systemctl enable mariadb +sudo systemctl start mariadb + +mysql -uroot -p +ALTER USER 'root'@'localhost' IDENTIFIED BY '1000omc@kp!'; +grant all privileges on *.* to 'root'@'localhost' IDENTIFIED by '1000omc@kp!' with grant option; +grant all privileges on *.* to 'root'@'127.0.0.1' IDENTIFIED by '1000omc@kp!' with grant option; +grant all privileges on *.* to 'root'@'%' IDENTIFIED by '1000omc@kp!' with grant option; +flush privileges; + + + +4 \ No newline at end of file