Dockerfile配置与部署
Here’s the table of contents:
一、Dockerfile配置与部署
二、Dockerfile配置与部署【测试】
一、Dockerfile配置与部署
安装docker命令
yum install docker
打包docker镜像
sudo docker build -t graphene:v-1.0.0 .
查看镜像
sudo docker images
运行镜像
sudo docker run -p 8080:8080 graphene:v-1.0.0
查看docker容器中启动的进程
sudo docker ps
...
Webpack打包过程调试
Here’s the table of contents:
例如调试webpack.config.js文件
例如调试webpack.config.js文件
在文件中设置debugger
在当前webpack项目工程文件夹下面,执行命令
// 其中参数--inspect-brk就是以调试模式启动node
node --inspect-brk ./node_modules/webpack/bin/webpack.js --inline --progress
打开Chrome浏览器,地址栏里输入
chrome://inspect/#devices:
在弹出窗口点击超链接
Open Dedica...
Spring Boot与Webpack前后端项目集成
Here’s the table of contents:
依赖包安装
全局安装package.json中的依赖项
依赖包安装
全局安装package.json中的依赖项
devDependencies
在项目目录中安装,其中,–save-dev是本地安装
npm install webpack@4.46.0
npm install clean-webpack-plugin@3.0.0
npm install css-loader@3.6.0
npm install file-loader@6.0.0
npm install html-loader@1.1.0
npm install html-web...
Anaconda下载源配置与更换
Here’s the table of contents:
Anaconda3下载安装
配置命令
下载源
下载源
Anaconda3下载安装
sudo yum -y install wget
sudo wget https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
sudo yum install -y bzip2
bash Anaconda3-5.1.0-Linux-x86_64.sh
conda -V
rm -rf /usr/local/Anaconda3
配置命令
中科大源
conda config --add channels https://mirrors.u...
自动生成CYPHER-TASK脚本优化自增ID的获取
Here’s the table of contents:
变量冲突调整
版本V-1.0.2
原始查询样例
生成custom.task.build.graph.batch.*过程
变量冲突调整
文本中下列变量在使用时去掉双下划线`--`【因为与GitHubIO.blog编译冲突】
{--{merge_field}
{--{matchFrom_field}
{--{matchTo_field}
## 版本V-1.0.1
支持自定义设置batch size大小!
在该版本中优化自增ID的获取方式,避免无效查询浪费性能。【2021-01-15-自动生成CYPHER-TASK脚本】在这个版本中,自增ID的获取默认是区间自增,但...
Shell字符串转义
Here’s the table of contents:
单引号转义
单引号括号转义
HTTP请求执行Cypher
单引号转义
脚本
echo 'RETURN '\'\hello\'' AS str'
输出
RETURN 'hello' AS str
单引号括号转义
脚本
echo 'RETURN '\'\(\hello\)\'' AS str'
输出
RETURN '(hello)' AS str
HTTP请求执行Cypher
curl -u ongdb:testlab%pro -d '{"statements": [{"statemen...
CentOS系统安装Python3环境
Here’s the table of contents:
安装Python3
安装pip工具
安装cypher包
执行Python文件
CentOS后台运行Python
安装Python3
yum install python36
安装pip工具
sudo yum install python-pip
sudo pip3 install --upgrade pip
安装cypher包
pip3 install ipython-cypher
pip3 install pandas
执行Python文件
python3 test.py
CentOS后台运行Python
nohup python3 -u test.py > test.log 2>...
图数据构建脚本后台远程执行
Here’s the table of contents:
execute-graph-data-build
execute-graph-data-build
从202机器后台执行CQL脚本,在173集群中构建图数据
#!/bin/bash
su - ongdb <<EOF
testlab%pro
echo "Build Graph Data..."
cat /home/ongdb/graph-sync-check-point/temp/public_fund_replenish.cql | /home/ongdb/ongdb-enterprise-3.5.22/bin/cypher-shell -a bolt+routing://10.20.12.17...
122 post articles, 16 pages.