1. Locate Current Data Directory
Find the current data directory (default: /var/lib/pgsql/13/data
):
sudo -u postgres psql -c "SHOW data_directory;"
2. Stop PostgreSQL Service
sudo systemctl stop postgresql-13
3. Move Data to the New Location
1. Locate Current Data Directory
Find the current data directory (default: /var/lib/pgsql/13/data
):
sudo -u postgres psql -c "SHOW data_directory;"
2. Stop PostgreSQL Service
sudo systemctl stop postgresql-13
3. Move Data to the New Location
#!/bin/bash | |
# Backup file name and location | |
BACKUP_DIR="/path/to/backup" | |
BACKUP_FILE="$BACKUP_DIR/grafana_backup_$(date +%Y%m%d_%H%M%S).zip" | |
# Files and directories to be backed up | |
GRAPHANA_DB="/var/lib/grafana/grafana.db" | |
GRAFANA_CONF="/etc/grafana/grafana.ini" | |
GRAFANA_PLUGINS="/var/lib/grafana/plugins" |
<?php | |
// source https://stackoverflow.com/a/12245044/3254912 | |
set_time_limit(0); | |
$file = array(); | |
$file['name'] = 'image.JPG'; | |
$file['size'] = filesize($file['name']); |
// Filename: HttpServer.cs | |
// Author: Benjamin N. Summerton <define-private-public> | |
// License: Unlicense (http://unlicense.org/) | |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Net; | |
using System.Threading.Tasks; |
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get --only-upgrade install google-chrome-stable |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for Xdebug", | |
"type": "php", | |
"request": "launch", |
<?php | |
# Source: https://codeigniter.com/userguide3/installation/upgrade_303.html | |
$config['base_url'] = ['domain1.tld', 'domain2.tld']; | |
if (in_array($_SERVER['HTTP_HOST'], $config['base_url'], true)) { | |
$domain = $_SERVER['HTTP_HOST']; | |
} else { | |
$domain = $config['base_url'][0]; | |
} |
var mediaJSON = { "categories" : [ { "name" : "Movies", | |
"videos" : [ | |
{ "description" : "Big Buck Bunny tells the story of a giant rabbit with a heart bigger than himself. When one sunny day three rodents rudely harass him, something snaps... and the rabbit ain't no bunny anymore! In the typical cartoon tradition he prepares the nasty rodents a comical revenge.\n\nLicensed under the Creative Commons Attribution license\nhttp://www.bigbuckbunny.org", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" ], | |
"subtitle" : "By Blender Foundation", | |
"thumb" : "images/BigBuckBunny.jpg", | |
"title" : "Big Buck Bunny" | |
}, | |
{ "description" : "The first Blender Open Movie from 2006", | |
"sources" : [ "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" ], |
package coolphpobfuscator; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.math.BigInteger; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
import java.util.ArrayList; | |
import java.util.Iterator; | |
import java.util.Scanner; |