All public logs

Jump to navigation Jump to search

Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 17:47, 7 May 2022 Busk talk contribs created page Zabbix slow queries (Created page with "``` SELECT pid, user, pg_stat_activity.query_start, now() - pg_stat_activity.query_start AS query_time, query, state, wait_event_type, wait_event FROM pg_stat_...")
  • 13:50, 5 May 2022 Busk talk contribs created page Azure disk performance (Created page with "https://docs.microsoft.com/en-us/azure/virtual-machines/disks-metrics")
  • 16:48, 4 May 2022 Busk talk contribs created page Pod eviction (Created page with "https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/")
  • 16:40, 4 May 2022 Busk talk contribs created page System load (Created page with "``` 0.5 means the minimum waiting time at the counter. Between 0.00 and 1.0, there is no need to worry. Your servers are safe! 1.5 means the queue is filling up. If the averag...")
  • 16:20, 27 April 2022 Busk talk contribs created page Zabbix proxies (Created page with "https://www.zabbix.com/documentation/current/en/manual/appendix/config/zabbix_proxy")
  • 02:24, 26 April 2022 Busk talk contribs created page Letsencrypt automation (Created page with "https://github.com/ianling/letsencrypt-dns-bind9")
  • 15:15, 25 April 2022 Busk talk contribs created page Foreach (Created page with "hosts.txt ``` host1.foo host2.foo ``` $regex = "foo" foreach($line in Get-Content .\hosts.txt) { if($line -match $regex){ write-output $line Invoke-Comman...")
  • 04:23, 24 April 2022 Busk talk contribs created page Reindex (Created page with "# REINDEX IN Postgres https://www.postgresql.org/docs/9.4/sql-reindex.html REINDEX DATABASE foo; REINDEX TABLE foo delete from ids where table_name='item_tag' and nextid=...")
  • 14:59, 23 April 2022 Busk talk contribs created page Timescaledb (Created page with "https://docs.timescale.com/install/latest/self-hosted/installation-debian/#install-self-hosted-timescaledb-on-debian-based-systems https://www.zabbix.com/documentation/curren...")
  • 23:24, 22 April 2022 Busk talk contribs created page Bash loops (Created page with "https://www.cyberciti.biz/faq/bash-for-loop/")
  • 11:33, 22 April 2022 Busk talk contribs created page Pg dumpall (Created page with "pg_dumpall --roles-only")
  • 11:27, 22 April 2022 Busk talk contribs created page Postgres Tuning (Created page with "https://blog.crunchydata.com/blog/optimize-postgresql-server-performance")
  • 02:46, 20 April 2022 Busk talk contribs created page Az cli bash wrapper (Created page with "#!/usr/bin/env bash # Utility script example. Adjust as needed set -eu count=3 # env=d env=p if [ $env == "d" ]; then rgEnv=D elif [ $env == "p" ]; then rgEnv=P else ech...")
  • 02:17, 20 April 2022 Busk talk contribs created page Tr (Created page with "# Remove ^M from files ``` tr -d '^M' < inputfile tr -d $'\r' < inputfile ```")
  • 20:45, 19 April 2022 Busk talk contribs created page Vacuum (Created page with "# Postgres Vacuum ``` $ docker run --rm -d --name postgres postgres:10.1 6732b0b9c6245fe9f19dd58e9737e5102089814e4aa96b66217af28a1596f786 $ docker exec -it postgres bash ro...")
  • 17:57, 17 April 2022 Busk talk contribs created page X570m (Created page with "Nic disappeared especially after power issue - Shutdown - Turn off power supply - Wait a couple of minutes - Start up again")
  • 00:48, 16 April 2022 Busk talk contribs created page Twitter (Created page with "https://tillison.co.uk/blog/ultimate-guide-twitter-symbols/")
  • 15:07, 14 April 2022 Busk talk contribs created page Zabbix Customization (Created page with "simple logo change ``` kubectl -n zabbix-dev cp zabbix-web-9d64864cb-jpz7l:/usr/share/zabbix/assets/img/icon-sprite.svg icon-sprite.svg ``` Or do a full rebrand if you want...")
  • 15:53, 13 April 2022 Busk talk contribs created page Git tag (Created page with "``` git tag -a v6.0.3 -m "Agent2 v6.0.3" git push origin v6.0.3 ```")
  • 15:55, 11 April 2022 Busk talk contribs created page Invoke-webrequest ignore ssl cert (Created page with "``` if (-not("dummy" -as [type])) { add-type -TypeDefinition @" using System; using System.Net; using System.Net.Security; using System.Security.Cryptography.X509Certifica...")
  • 04:27, 11 April 2022 Busk talk contribs created page Pg dump (Created page with "pg_dump -h localhost -p 5432 -U <MY_PG_Username> -Ft <MY_DB_Name> --file=/tmp/path_$(date +%Y%m%d_%H%M%S).dump")
  • 23:35, 10 April 2022 Busk talk contribs created page K8s secrets (Created page with "``` echo -n 'my-super-secret-password' | base64 ``` ``` envFrom: - secretRef: name: postgres-secrets - configMapRef: n...")
  • 20:10, 9 April 2022 Busk talk contribs created page Postgres Backup & Restore (Created page with "nohup pg_dump -Fc $DB > $DB-$(date +%d-%m-%y_%H-%M).pgdumpFc pg_restore")
  • 08:07, 9 April 2022 Busk talk contribs created page Postgres replication (Created page with "https://dev.to/fullstapps/replicate-your-postgresql-database-into-another-server-using-just-one-command-48km#:~:text=Sometimes%20we%20need%20to%20replicate,the%20database%20fr...")
  • 16:24, 7 April 2022 Busk talk contribs created page Venafi Troubleshooting (Created page with "https://support.venafi.com/hc/en-us/articles/235543527-Error-All-my-certificates-are-stuck-in-Queued-for-renewal-Renewing-state PS X:\> get-service |findstr -i trust Stopped...")
  • 05:20, 7 April 2022 Busk talk contribs created page K8s certmanager (Created page with " https://link.medium.com/MYX9a2oA1ob")
  • 04:06, 6 April 2022 Busk talk contribs created page Docker commit (Created page with "https://adamtheautomator.com/docker-commit/")
  • 18:40, 5 April 2022 Busk talk contribs created page Redhat certs (Created page with "https://support.nmi.com/hc/en-gb/articles/360021544791-How-to-Check-If-the-Correct-Certificates-Are-Installed-on-Linux ``` vim /etc/pki/ca-trust/source/anchors/myca.crt updat...")
  • 20:47, 4 April 2022 Busk talk contribs created page Az vm run-command (Created page with "``` Examples from AI knowledge base: az vm run-command invoke --resource-group MyResourceGroup --name MyVm --command-id RunShellScript --scripts "sudo apt-get update && sudo a...")
  • 20:37, 4 April 2022 Busk talk contribs created page Wsl (Created page with "``` wsl -d ubuntu-20.04 -u myuser -- bash wsl -d ubuntu-20.04 -- bash ```")
  • 14:48, 2 April 2022 Busk talk contribs created page Go certificate info (Created page with "https://github.com/carlmjohnson/certinfo/blob/master/main.go")
  • 01:42, 31 March 2022 Busk talk contribs created page Postgresql nanoseconds duration (Created page with "select 87263574::decimal/1000000000;")
  • 18:02, 30 March 2022 Busk talk contribs created page Encrypted passwords on Linux (Created page with "https://unix.stackexchange.com/questions/81240/manually-generate-password-for-etc-shadow ``` Method 1 (md5, sha256, sha512) openssl passwd -6 -salt xyz yourpass Note: passing...")
  • 01:13, 30 March 2022 Busk talk contribs created page Ssh-keyscan (Created page with "Get finger prints of host for known_hosts ``` ssh-keyscan myhost -p 22 ```")
  • 21:54, 29 March 2022 Busk talk contribs created page Get-acl (Created page with "``` (get-acl <folder name>).access | ft IdentityReference,FileSystemRights,AccessControlType,IsInherited,InheritanceFlags -auto ```")
  • 15:37, 27 March 2022 Busk talk contribs created page Sftpgo Requests (Created page with "Updates made to virtual folders in webui don't update if a user is logged into sftp command prompt until relogin. ``` sftpgo version 2.2.2 on Ubuntu 20.04 Not a biggie but w...")
  • 16:52, 26 March 2022 Busk talk contribs created page Google Compute Platform (Created page with "# Free Tier https://stackoverflow.com/questions/71176780/google-cloud-compute-engine-always-free-tier")
  • 22:56, 24 March 2022 Busk talk contribs created page Net use (Created page with "``` net use k: \\mynost\mysharename /user:MYDOMAIN\myuser net use /delete k: ```")
  • 01:54, 24 March 2022 Busk talk contribs created page Gorm performance (Created page with "https://github.com/go-gorm/gorm/issues/3055")
  • 17:41, 23 March 2022 Busk talk contribs created page Enable winrm (Created page with "https://theitbros.com/run-powershell-script-on-remote-computer/#:~:text=You%20can%20use%20PowerShell%20Remoting,connection%20to%20a%20remote%20computer.")
  • 14:22, 23 March 2022 Busk talk contribs created page Pgtype (Created page with "timeVal := pgtype.Timestamptz{Status: pgtype.Null} timeVal.Set(theTime)")
  • 18:55, 22 March 2022 Busk talk contribs created page Windows Service From Powershell Script (Created page with "C:\app\watchAuth0LDAPConn.ps1 ``` $url = "127.0.0.1:49948" $sleep = 3 Write-Output "Starting $url connection watcher." while($true){ try { $R = Invoke-WebRequest $...")
  • 16:08, 22 March 2022 Busk talk contribs created page Pgx (Created page with "https://pkg.go.dev/github.com/jackc/pgx#section-readme")
  • 14:53, 22 March 2022 Busk talk contribs created page Golang Logging (Created page with "https://www.honeybadger.io/blog/golang-logging/")
  • 00:00, 22 March 2022 Busk talk contribs created page Pgxscan (Created page with "https://pkg.go.dev/github.com/georgysavva/scany/pgxscan")
  • 21:54, 15 March 2022 Busk talk contribs created page Find (Created page with "``` find . -name versions.tf -type f -print0 | xargs -0 sed 's/required_version = \">= 0.13\"/required_version = \">= v1.12.2\"/g' ```")
  • 23:10, 14 March 2022 Busk talk contribs created page Gocron (Created page with "https://golangexample.com/gocron-a-golang-job-scheduling-package-2/ https://github.com/go-co-op/gocron")
  • 18:22, 14 March 2022 Busk talk contribs created page Golang Database Connections (Created page with "https://stackoverflow.com/questions/50751788/how-to-import-gorm-db-connection-from-another-file-or-package")
  • 17:41, 14 March 2022 Busk talk contribs created page Go clean (Created page with "``` go clean -i importpat ```")
  • 01:07, 14 March 2022 Busk talk contribs created page Golang postgre performance (Created page with " https://link.medium.com/83qJl4Gsnob")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)