我正在使用Ambari 2.6.2.2并安装了Hbase,为此我启动了thrift服务器。
如何配置thrift服务器以在启动时启动?
现在,我只使用ambari的“Service Auto-Start”配置hbase启动。
另外,如何配置thrift服务器以便在oom发生时重新启动?
谢谢
似乎没有办法直接从Ambari这样做。
我设法开始启动并使用Supervisor自动重启。这是Thrift和Rest服务器的管理程序配置文件。
[program:hbase-thrift]
command=hbase thrift start -p 9090 --infoport 9095
stderr_logfile = /var/log/supervisor/thrift-stderr.log
stdout_logfile = /var/log/supervisor/thrift-stdout.log
autorestart=true
user=hbase
stdout_logfile_backups=5
stderr_logfile_backups=5
[program:hbase-rest]
command=hbase rest start -p 9080 --infoport 9085
stderr_logfile = /var/log/supervisor/rest-stderr.log
stdout_logfile = /var/log/supervisor/rest-stdout.log
autorestart=true
user=hbase
stdout_logfile_backups=5
stderr_logfile_backups=5