-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Local install of artifcatory using ansible? #344
Comments
@darthVikes can you provide more information on this ? locally means local machine ? |
Yes, to a local machine VM running RHEL 8.x or 9.x Not a cloud ☁️instance. |
You run as shown below example , it requires postgresql as dependency
|
You would need to collections:
- name: ansible.posix
- name: community.postgresql
- name: community.general
- name: jfrog.platform Your hosts file can be a simple as this: [local:vars]
ansible_connection=local
server_name=artifactory.lan.local
[local:children]
artifactory_servers
postgres_servers
[artifactory_servers]
localhost ansible_host=127.0.0.1
[postgres_servers]
localhost ansible_host=127.0.0.1 |
Hope this helps, marking as closed |
Can I use this to install artifactory product only locally with ansible? If so, what would need to be changed to only do the install for artifactory and any dependencies needed for artifactory? aka MySQL / nginx?
The text was updated successfully, but these errors were encountered: