Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

GitLab – Uninstall

Posted on November 29, 2016 By David Kittell

If you’ve ran into a problem with GitLab and need to remove all pieces of it to install fresh this may help.

DISCLAIMER: BACKUP YOUR DATA FIRST

sudo yum -y remove gitlab-ce
sudo rm -rf /opt/gitlab/
sudo rm -rf /var/opt/gitlab
sudo rm -rf /var/log/gitlab
sudo rm -rf /etc/gitlab
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

CentOS Code Fedora GitLab Red Hat UNIX UNIX Shell Scripts

Post navigation

Previous post
Next post

Related Posts

Data Metrics

Posted on September 9, 2013October 26, 2015

In a plan to make metrics easier to record and show I have built my own database tables to record custom metrics. Metrics – Year View C# Metrics Admin Page C# Table Creation SET NOCOUNT ON DECLARE @month INT ,@year INT ,@start_date DATETIME ,@end_date DATETIME SET @month = ( SELECT…

Read More

PHP – Directory File Size – Recursive

Posted on February 23, 2016January 4, 2017

<?php $path = ‘/var/www/html’; function filesize_recursive($path) { $ret = 0; try { if(!file_exists($path)) return 0; if(is_file($path)) return filesize($path); foreach(glob($path."/*") as $fn) $ret += filesize_recursive($fn); } catch(Exception $e) { echo ‘Message: ‘ .$e->getMessage(); } return $ret; } function display_size($size) { $sizes = array(‘B’, ‘kB’, ‘MB’, ‘GB’, ‘TB’, ‘PB’, ‘EB’, ‘ZB’, ‘YB’);…

Read More

Mac OSX Terminal – Add User to Remote Management (VNC)

Posted on November 16, 2016November 16, 2016

Replace “-users admin” with the username you need to grant access to. sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -access -on -users admin -privs -all -restart -agent -menu All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • PowerShell - IIS Remove Site
  • SQLite - Auto-Increment / Auto Generate GUID
  • PowerShell - FTP Upload Directory With Sub-Directories

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • PowerShell - IIS Remove Site
  • SQLite - Auto-Increment / Auto Generate GUID
  • PowerShell - FTP Upload Directory With Sub-Directories
  • Raspberry Pi - Remove Default Apps
  • PowerShell - Change Windows CD/DVD Drive Letter
©2025 David Kittell | WordPress Theme by SuperbThemes