add: doc and ctyunos tips
This commit is contained in:
BIN
docs/08-interfaces/08-OMC北向操作服务接口V2.1.0.docx
Normal file
BIN
docs/08-interfaces/08-OMC北向操作服务接口V2.1.0.docx
Normal file
Binary file not shown.
24
env/ctyunos.txt
vendored
Normal file
24
env/ctyunos.txt
vendored
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user