...68.5.180:8384 -k start 昨天关机,今天早上开机以后发现8384端口能连上而8383端口不能连上。登录xunsearch的主机,运行ps -ef |grep xs root 3966 1 0 07:47 ? 00:00:00 xs-searchd: master ...
... root 3801 3798 0 05:37 ? 00:00:00 xs-searchd: worker[3] 端口已开放: [root@localhost php]# netstat -an |grep 8383 tcp 0 0 127.0.0.1:8383 0.0.0.0:* LISTEN 请帮助看如何解决?
可能是你没有开启监听服务,你先查下 8383或者8384 端口的状态(查询命令: netstat -an |grep 8383),如果没有输出信息,你可以试着对照你本机环境运行下面的命令(先切换到你本机xunsearch的安装目录下): bin/xs-ctl.sh -b local start...
... bin/xs-ctl.sh -b inet start 就可以默认为本地所有ip的8383,8384端口 -------------------------- 那么PC-B,php-sdk中的应用,调用 它怎么知道是哪一台装了xunsearch的? 或者说肿么让B的php-sdk去调用A的xunsearch?
...接参数 服务端连接参数的格式包含 3 种格式: 1. *端口号(数字)*,连接 `localhost` 的该端口号 (例:`8383`) 2. *地址:端口号*,冒号连接地址(域名、IP地址)和端口 (例:`127.0.0.1:8383`) 3. *文件路径*,本机的 `unix socket` ...
...,配置文件很简单、清晰,它默认连接本地的 `8383、8384` 端口并使用 UTF-8 编码,包含四个字段:pid,subject,message,chrono 。 填充索引数据 ----------- 出于测试方便,我们采用 `csv` 格式来写入索引数据,请先按以下方式操: ~~...
... _pool = PooledDB(creator=MySQLdb, host='数据库地址', port=数据库端口, user='用户名', passwd='密码', db='数据库名') _db = _pool.connection() _cur = _db.cursor() while 1: _cur.execute('select * from mq order by mid asc limit 10') _rows = _cur.fetchal...
...类似 `iptables` 的防火墙来控制 `xunsearch` 的 `8383/8384` 两个端口的访问权限。 > 启动脚本用法举例如下,以下均为合法使用方式: > ~~~ > bin/xs-ctl.sh -b local start // 监听在本地回环地址 127.0.0.1 上 > bin/xs-ctl.sh -b inet start // 监听在...