GitLab, as you know is a web-based DevOps tool that offers functionality to automate entire lifecycle spanning from planning to creation, build, verify, testing, deploying, etc. GitLab CI/CD is a built-in tool of GitLab that allows you to apply major methods of Continuous Integration, Delivery, and Deployment etc to your software. Thus any third-party applications or integrations is not needed. This blog gives you an insight on GitLab CI/CD tool for continuous software development methodologies. (more…)
Technical Articles
Introduction As per the new global update, it was announced that cPanel is changing its ownership which has been acquired by Oakley Capital, an investment group also in charge of Plesk. Oakley Capital acquired Plesk in May 2017, while Plesk in turn, acquired SolusVM which supplies software for VPS management, among other things. They are focusing on easing the common upgrade path from shared-customer to private cloud-customer. The new structure opens up the possibility of deploying lower density customer instances neglecting the need to buy a large multi-Account license. It …
Continuous Integration (CI) and Continuous Deployment (CD) defines a culture, a set of operating/manipulating principles, and collection of practices that allow application development teams to deliver code changes more regularly and in an accurate way.
Datadog is a monitoring platform for cloud applications which automatically detects potential application and infrastructure issues as it observes trends and patterns in application metrics like error rate, request rate, and latency—and unexpected behavior. (more…)
What is OPENSHIFT? OpenShift is a PaaS. Basically saying OpenShift is a Cloud-Enabled Application Platform (CEAP). For those who are not sure anymore about PaaS, here is a quick reminder. Platform as a service (PaaS) or Application platform as a service (aPaaS) is a class of distributed computing administrations that gives a stage enabling the client to create, run, and oversee applications without the multifaceted nature of the building and keeping up the foundation commonly connected with creating and propelling an application. (more…)
Bitcoin is a global digital currency that allows people to send and receive money online, even to someone they don’t know or fully trust. Transactions can be made without linking to personal identities, and Bitcoin’s security is powered by advanced cryptography. Key Features of Bitcoin Why Consumers Love Bitcoin Why Merchants Love Bitcoin Why Bitcoin is Better than Traditional Currencies Security and Risks While Bitcoin is secure, users must take precautions: Keeping Bitcoins Safe Advanced: Bitcoin Mining New Bitcoins are created through mining, a process that adds transaction data to …
Nowadays Google Drive is the most commonly used service to store our files as a cloud. Here in this article, it explains how to backup directories to Google Drive using bash script and API. 1. Install Google Drive on the server Use the following link to download Google Drive: https://drive.google.com/open?id=1P2J2HObqDtIjB07yvotE4mzml4tjC4ot 2. Then move this file to “/usr/sbin/” folder. 3. Assign the correct permission to the file. 4. Now run the file “drive”. You will get a link like this asking for a verification code. Go to the following link in …
Python
Python is a high-level general-purpose programming language, which is Interpreted, Interactive and Object-Oriented. The term object-oriented means it supports object-oriented programming approach to develop applications. Python file is saved as a .py extension. Python’s initial development was led by Guido van Rossum in the late 1980s. (more…)
Capistrano is a remote server automation open-source tool written in Ruby that gives a set of advanced tools to deploy web applications to the servers. To perform the deploy functions Capistrano does not require any big set of additional applications; it just requires an ssh connection with a new user who has the permission to copy the code from the source control repository to the server and Ruby Gems, the package manager for the Ruby programming language.
AWS CodeDeploy is a deployment service that automates application deployments to Amazon EC2 instances and on-premises instances. It helps us to deploy application content such as code, serverless AWS Lambda functions, web and configuration files, packages, scripts, multimedia files, and more. After deploying the application content on a server it is stored in Amazon S3 buckets, GitHub repositories, or Bitbucket repositories. It works with various systems for configuration management, source control, continuous integration, continuous delivery, and continuous deployment. With AWS CodeDeploy, the following processes become easier. Rapidly …