切换主题
📦 软件安装指南
🔄 安装流程
📥 下载安装包
系统要求
- 仅支持64位操作系统
- 建议内存 ≥ 4GB
- 建议磁盘空间 ≥ 20GB
安装包下载
bash
# Windows 64位安装包
wget https://software.wueasy.com/operation-log/latest/operation_log_win_64.zip
bash
# Linux AMD64架构安装包
wget https://software.wueasy.com/operation-log/latest/operation_log_linux_amd64.zip
# 解压安装包
unzip operation_log_linux_amd64.zip -d /srv/operation-log
bash
# Linux ARM64架构安装包
wget https://software.wueasy.com/operation-log/latest/operation_log_linux_arm64.zip
# 解压安装包
unzip operation_log_linux_arm64.zip -d /srv/operation-log
🛠️ 命令使用指南
软件管理命令
命令 | 说明 | 示例 |
---|---|---|
install | 安装服务 | ./operation_log_linux_amd64 install |
uninstall | 卸载服务 | ./operation_log_linux_amd64 uninstall |
start | 启动服务 | ./operation_log_linux_amd64 start |
restart | 重启服务 | ./operation_log_linux_amd64 restart |
stop | 停止服务 | ./operation_log_linux_amd64 stop |
系统服务管理
提示
以下命令使用systemd管理服务,更加规范和可靠
命令 | 说明 |
---|---|
systemctl enable operation-log.service | 设置开机自启动 |
systemctl disable operation-log.service | 取消开机自启动 |
systemctl start operation-log.service | 启动服务 |
systemctl stop operation-log.service | 停止服务 |
systemctl restart operation-log.service | 重启服务 |
systemctl status operation-log.service | 查看服务状态 |