
Tag: cli

How To Install and Configure OpenStack Client on Linux
(: June 29, 2019) OpenStack Client is a command-line tool for OpenStack that brings the command set for Compute, Identity, Image, Object Storage and Block Storage APIs together in a single shell with a uniform command structure. The OpenStack client enables you to interact with OpenStack services over the network via API call. A pre-requisite…
How to Remove (Delete) a User on Ubuntu 15.04
Users via Command Line 101: Basic User Interaction I. How to Add a User and Grant Root Privileges on Ubuntu 15.04 II. How to Remove (Delete) a User on Ubuntu 15.04 Pre-Flight Check These instructions are intended specifically for removing a user on Ubuntu 15.04. I’ll be working from a sxi.io Web Self Managed Ubuntu…
List Which Apache 2 Modules are Enabled on Fedora 20
The Apache web server is one of the most popular and powerful web servers in the world due to its ease of administration and flexibility. This flexibility comes Apache’s modular design, and allows for such features as: URL rewriting for SSL encryption natively, and Outlook Anywhere passthrough support in reverse proxy setups. Modularity allows Administrators…
Grant Permissions to a MySQL User on Linux via Command Line
MySQL via Command Line 102: Basic User Interaction Create a MySQL User on Linux via Command Line Grant Permissions to a MySQL User on Linux via Command Line Remove Permissions for a MySQL User on Linux via Command Line Remove a MySQL User on Linux via Command Line Previous Series: MySQL via Command Line 101:…

7 Extremely Useful Linux Commands for Beginners
#1: ls : What’s in this directory? The command ls stands for list directory contents. And, cleverly, it will do just that: list a directory’s contents! Using it with -F will give a list of the directories contents, and denote items that are other directories with a trailing /. ls -F On my server returns:…
List Which Apache 2 Modules are Enabled on Fedora 21
The Apache web server is one of the most popular and powerful web servers in the world due to its ease of administration and flexibility. This flexibility comes Apache’s modular design, and allows for such features as: URL rewriting for SSL encryption natively, and Outlook Anywhere passthrough support in reverse proxy setups. Modularity allows Administrators…
How to Add a User and Grant Root Privileges on Ubuntu 16.04
Ubuntu 16.04 LTS provides you the ability to add a user for anyone who plans on accessing your server. Creating a user is a basic setup but an important and critical one for your server security. In this tutorial, we will create a user and grant administrative access, known as root, to your trusted user….

How to: Using killall to Stop Processes with Command Line
Sometimes you may find your server in a state of high load caused by out control of processes. First you’ll want to use a command like htop, top, or ps, to get an idea on the server’s current state. If you aren’t familiar with those utilities we’d suggest checking our our article on htop. After…
List Which Apache Modules are Enabled on Ubuntu
The Apache web server is one of the most popular and powerful web servers in the world due to its ease of administration and flexibility. This flexibility comes Apache’s modular design, and allows for such features as: URL rewriting for SSL encryption natively, and Outlook Anywhere passthrough support in reverse proxy setups. Modularity allows Administrators…
How to Remove (Delete) a User on Ubuntu 16.04
User management includes removing users who no longer need access, removing their username and any associate root privileges are necessary for securing your server. Deleting a user’s access to your Linux server is a typical operation which can easily be performed using a few commands. Pre-flight Check We are logged in as root on…