🚗🏍️ Welcome to Motoshare!

Turning Idle Vehicles into Shared Rides & New Earnings.
Why let your bike or car sit idle when it can earn for you and move someone else forward?

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Partners earn. Renters ride. Everyone wins.

Start Your Journey with Motoshare

Hot to Generate and Add an ssh Key for Secure Authentication

Generating and adding an SSH key for secure authentication involves a few straightforward steps. Here’s a guide to creating an SSH key, adding it to your local SSH agent, and configuring it for authentication with remote servers or services like GitHub, GitLab, etc.

Generate the SSH Key

When prompted to “Enter a file in which to save the key,” provide a custom path within the htdocs folder.

step1: Open Git Bash and run the following:

This command creates a new SSH key, using the provided email as a label.

This saves the private key as project_name_ssh_key and the public key as project_name_ssh_key.pub in the htdocs folder. When prompted to “Enter a passphrase,” type a secure passphrase or press Enter to skip.

Step 2: Add the SSH Key to GitHub or a Server

  • Log in to GitHub and navigate to Settings > SSH and GPG keys.
  • New SSH key, add a Title, paste the public key, and click Add SSH key.

For a Remote Server:

Copy the public key to the remote server’s ~/.ssh/authorized_keys file.

ssh username@server_ip

Append the key:

cat ./project_name_ssh_key.pub | ssh username@server_ip "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"

Test the SSH Key

Test the connection to GitHub:

ssh -T git@github.com

Test the connection to a remote server:

ssh -i ./project_name_ssh_key username@server_ip

Test the SSH Key

Test the connection to GitHub:

ssh -T git@github.com

Test the connection to a remote server:

ssh -i ./project_name_ssh_key username@server_ip

Configure Git to Use the SSH Key (Optional)

If you’re using Git in the htdocs folder and want it to use the generated SSH key:

Add the key to the SSH agent:

eval "$(ssh-agent -s)"
ssh-add ./project_name_ssh_key

Configure Git to use this SSH key:

git config core.ssh Command “ssh -i ./project_name_ssh_key

Related Posts

AWS Training and Certification: Expert-Led Cloud Skills for Career Growth

Unlocking cloud computing potential has become vital for individuals and organizations operating in the digital-first era. As enterprises across Mexico intensify their transition to the AWS ecosystem,…

AWS Training by DevOpsSchool: Certification, Hands-On Labs & Career Boost

In the heart of California’s innovation hub, Los Angeles isn’t just about Hollywood glamour and sunny beaches—it’s a powerhouse for tech enterprises driving the future of cloud…

Comprehensive AWS Training and Certification at DevOpsSchool .

Cloud computing is reshaping how organizations operate, innovate, and scale. Kolkata’s tech professionals have a golden opportunity to lead this transformation with expert-led AWS Training from DevOpsSchool….

Cloud Career Accelerator: AWS Certification Training Guide

Amazon Web Services (AWS) stands as the backbone of the cloud revolution, powering everything from nimble startups to Fortune 500 giants. If you’re in Pune, determined to…

AWS Training in Mumbai: A Guide by DevOpsSchool 

The digital landscape is undergoing a seismic shift, and at the heart of this transformation is Amazon Web Services (AWS). As the world’s leading cloud platform, AWS…

Mastering AWS: Your Gateway to Cloud Excellence with AWS Training in Kolkata

In today’s fast-paced digital world, cloud computing has become the backbone of modern businesses. Amazon Web Services (AWS) leads the pack as the world’s most comprehensive and…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x