Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

🚗 You set the rental price
🔐 Secure bookings with verified renters
📍 Track your vehicle with GPS integration
💰 Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

Chef Tutorials: Install and Configure Chef Automate and Infra Server


Step – 1 – Setup Chef Automate and Chef Infra Server


If you want to start from scratch, create a Linux VM or cloud instance, login as an elevated user, and run the following command to install both Chef Infra Server and Chef Automate:

# How to install chef-automate?
$ sudo yum install zip unzip -y
$ curl https://packages.chef.io/files/current/latest/chef-automate-cli/chef-automate_linux_amd64.zip | gunzip - > chef-automate && chmod +x chef-automate

# Setting up fully QUALIFIED domain is important for ssl check.
$ hostnamectl set-hostname ec2-15-207-198-5.ap-south-1.compute.amazonaws.com

$ sudo sysctl -w vm.max_map_count=262144
$ sudo sysctl -w vm.dirty_expire_centisecs=20000
$ setenforce Permissive
$ ./chef-automate deploy --product automate --product infra-server
$ ./chef-automate status
Code language: PHP (php)

Step – 2 – Create an Admin User and Organization


To use your Chef server, you’ll need to create an administrative user and at least one organization. These provide secure access between your server and your workstation (among other things), and establish a location for your Chef content. Notice the chef-server org-create command uses the admin user name you create as the –association-user:


$ sudo chef-server-ctl user-create rajesh Rajesh Kumar devops@rajeshkumar.xyz "Rajesh123" --filename rajesh.pem
$ sudo chef-server-ctl org-create lab "My Lab" --association_user rajesh --filename lab-validator.pemCode language: JavaScript (javascript)

The commands in this example generate two certificate files, rajesh.pem and lab-validator.pem.

$ chef-server-ctl user-list
$ chef-server-ctl org-list
$ chef-server-ctl user-show rajesh
$ chef-server-ctl org-show lab
Code language: PHP (php)


Reference

  • https://docs.chef.io/automate/infra_server/
  • https://www.chef.io/downloads/get-started/infrastructure-management
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x