You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

999 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

一、项目地址

https://github.com/OpenAtomFoundation/pika/tree/unstable

二、单机部署

# 解压
cd /usr/local

# 上传下载好的pika软件
rz -be 选择 D:\dsWork\dsExam\操作文档\PIKA资料\pika-linux-x86_64-v3.5.1.tar.bz2

# 解压
tar -jxvf pika-linux-x86_64-v3.5.1.tar.bz2

# 清理
mv output pika
rm -rf pika-linux-x86_64-v3.5.1.tar.bz2

解压过程中出现类似于下面的警告不用理会这是因为在MacOS上压缩的原因不影响使用

# 构建启动脚本
cat << EOF > /usr/local/pika/pika.sh
/usr/local/pika/bin/pika -c /usr/local/pika/conf/pika.conf &
EOF

chmod +x /usr/local/pika/pika.sh

# 修改启动端口
sed -i 's/port : 9221/port : 18890/g' /usr/local/pika/conf/pika.conf

# 启动
/usr/local/pika/pika.sh &

三、主从部署

TODO