在 Ubuntu 上安装 Aerospike:无法启动服务器
Installing Aerospike on Ubuntu: not able to start server
我一直在遵循这些说明:https://www.aerospike.com/docs/operations/install/linux/ubuntu
我已成功 运行 以下命令:
wget -O aerospike.tgz 'https://www.aerospike.com/download/server/latest/artifact/ubuntu16'
tar -xvf aerospike.tgz
cd aerospike-server-community-4.2.0.3-ubuntu16.04/
sudo ./asinstall
/opt/aeropspike 目录已创建,如我所见。
但未创建以下目录:
1) /etc/init.d/aerospike
2) /var/log/aerospike
现在我无法继续执行第 4 步来启动 Aerospike。
这里有没有我遗漏的步骤,或者任何其他查看日志并在此机器上启动 Aerospike 的方法?
我的机器详细信息:
经销商编号:Ubuntu
说明:Ubuntu 16.04.3 LTS
发布:16.04
代号:xenial
谢谢!
用
启动ubuntu服务器
sudo 服务 aerospike 启动
上面的概述在所有命令列表中提到
systemd 在 Ubuntu 16 中取代了 upstart,因此它是 journalctl -u aerospike
日志。
您也找不到 init.d 脚本,因为它已被 /usr/lib/systemd/system/aerospike.service
取代。同样,因为它现在是 systemd。
我一直在遵循这些说明:https://www.aerospike.com/docs/operations/install/linux/ubuntu 我已成功 运行 以下命令:
wget -O aerospike.tgz 'https://www.aerospike.com/download/server/latest/artifact/ubuntu16'
tar -xvf aerospike.tgz
cd aerospike-server-community-4.2.0.3-ubuntu16.04/
sudo ./asinstall
/opt/aeropspike 目录已创建,如我所见。
但未创建以下目录:
1) /etc/init.d/aerospike 2) /var/log/aerospike
现在我无法继续执行第 4 步来启动 Aerospike。
这里有没有我遗漏的步骤,或者任何其他查看日志并在此机器上启动 Aerospike 的方法?
我的机器详细信息: 经销商编号:Ubuntu 说明:Ubuntu 16.04.3 LTS 发布:16.04 代号:xenial
谢谢!
用
启动ubuntu服务器sudo 服务 aerospike 启动
上面的概述在所有命令列表中提到
systemd 在 Ubuntu 16 中取代了 upstart,因此它是 journalctl -u aerospike
日志。
您也找不到 init.d 脚本,因为它已被 /usr/lib/systemd/system/aerospike.service
取代。同样,因为它现在是 systemd。