Last active
September 30, 2022 16:28
-
-
Save cloudybdone/1495b5d4ebec6e043cec47f4f51ea54d to your computer and use it in GitHub Desktop.
Install and Setup Rudder Root On Any Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you need any help related to Rudder Root Installation Service on Any Linux contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHx... | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube Playlist: https://www.youtube.com/watch?v=bWhRvinaANc&list=PLiveDaEySXe8cVypojm6_paa585JyYY6w | |
| # Check Dependency | |
| java -version | |
| # Download and Import GPG Key | |
| wget -q -O- "https://repository.rudder.io/apt/rudder_apt_key.pub".. | |
| # Add Rudder Repository | |
| echo "deb http://repository.rudder.io/apt/6.2/ focal main" | sudo tee -a /etc... | |
| sudo apt update | |
| # Install Rudder | |
| sudo apt install rudder-server.... | |
| # Create a User Account | |
| sudo rudder server create-user -u <user_name> | |
| # Configure Firewall | |
| sudo ufw allow 5309/tcp | |
| sudo ufw allow 443/tcp | |
| sudo ufw reload | |
| # Access Rudder Web Interface | |
| https://<rudder-server-IP>/rudder | |
| # Installing Rudder Agent on Ubuntu | |
| wget -q -O- "https://repository.rudder.io/apt/rudder_apt_key.pub" | sudo apt-key add | |
| echo "deb http://repository.rudder.io/apt/6.2/ focal main" | sudo tee -a /etc/apt/sources.list.d/rudder.list | |
| sudo apt update | |
| sudo apt install rudder-agent | |
| sudo rudder agent start | |
| sudo rudder agent policy-server <Rudder-server-IP> | |
| sudo rudder agent inventory | |
| sudo rudder agent run | |
| sudo systemctl restart rudder-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment