LoginSignup
0
0

More than 5 years have passed since last update.

cassandra.yamlを配布するansible playbook例

Posted at
cassandra.yaml.template
..
#listen_address: localhost
listen_address: {{ inventory_hostname }}
.
.
#rpc_address: localhost
rpc_address: {{ inventory_hostname }}
..
cassandra.yaml
 hosts: worker
  sudo: yes
  tasks:
   - name: copy cassandra.yaml
     template: src=./cassandra/cassandra.yaml.template dest=/opt/cassandra/conf/cassandra.yaml

ansible-playbookの実行

ansible-playbook -h hosts cassandra.yaml -K

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0