CentOS7 安装xware 迅雷远程 及自启动

记一下 CentOS7 安装 xware 过程
记得关闭防火墙或者 开启xware所需的 9000端口

需要一定linux 基础

安装xware

http://luyou.xunlei.com/thread-12545-1-1.html

根据cpu 类型 下载 解压,运行portal,如果运行缺少组件 yum install

安装samba

https://linux.cn/article-5547-1.html

挂载目录 让 xware 识别下载目录

emacs /etc/fstab

/home/tanpengsccd       /mnt/tanpengsccd        none    bind            0 0

CentOS7 脚本 xware systemctl开机自启动脚本

emacs /etc/systemd/system/xware.service

[Unit]
Description=Xware
After=network.target

[Service]
Type=forking
ExecStart=/root/xware_xunlei/thunder/portal
ExecReload=/root/xware_xunlei/thunder/portal
ExecStop=/root/xware_xunlei/thunder/portal -s
Restart=always
RestartSec=300s

[Install]
WantedBy=multi-user.target

开启,启动,查看状态 xware

systemctl enable xware.service
systemctl start  xware.service
systemctl status xware.service

你可能感兴趣的:(CentOS7 安装xware 迅雷远程 及自启动)