search:
News
Articles
Tech Tools
Subscribe
Archive
Whitepapers
Digisub
Write for Us!
Newsletter
Shop
DevOps
Cloud Computing
Virtualization
HPC
Linux
Windows
Security
Monitoring
Databases
all Topics...
Search
Login
Search
Spell check suggestion:
%xcode"5432 08 Llorente 13
?
Refine your search
Sort order
Date
Score
Content type
Article (Print)
(7)
Article
(1)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
100%
Automating deployments on Proxmox with OpenTofu and cloud-init
04.12.2024
Home
»
Articles
»
Rubén
Llorente
... vm_id = 100
08
} 09 10 network_device { 11 model = "virtio" 12 bridge = "vmbr0"
13
} 14 15 depends_on = [ 16 proxmox_virtual_environment_file.rproxy_cloud_config, 17 proxmox
99%
Automating command execution across servers
01.06.2024
Home
»
Archive
»
2024
»
Issue 81: Load...
»
Rubén
Llorente
... _host 02 known_hosts_file: /home/sake/.ssh/known_hosts2 03 04 # Every server is labeled with the "devuan" tag 05 servers: 06 horse: 07 user: root
08
host: horse.operationalsecurity.es 09 tags
24%
Single sign-on like the big guys
20.06.2022
Home
»
Archive
»
2022
»
Issue 69: Terra...
»
_ADMIN=admin 10 - KEYCLOAK_ADMIN_PASSWORD=SOME_PASSWORD 11 - KC_DB=postgres 12 - KC_DB_URL=jdbc:postgresql://postgres:
5432
/keycloak
13
- KC_DB_USERNAME=postgres 14 - KC
23%
Asynchronous PostgreSQL
12.09.2013
Home
»
Archive
»
2013
»
Issue 16: Docker
»
CREATE OR REPLACE FUNCTION burncpu (tm INTERVAL) 02 RETURNS INTERVAL AS $CODE$ 03 DECLARE 04 stmp TIMESTAMP := now()+tm; 05 i INT; 06 BEGIN 07 WHILE clock_timestamp()
08 i:=1; 09
22%
PostgreSQL 9.3
04.02.2014
Home
»
Articles
»
^
08
HINT: There is an entry for table "a", but it cannot be referenced from this part of the query. 09 10 11 # But LATERAL makes this join correct: 12
13
14 SELECT 15 a.id, a.name, t
22%
New in PostgreSQL 9.3
09.01.2013
Home
»
Archive
»
2013
»
Issue 18: New W...
»
'
5432
'); To create a foreign table, you need to tell the data source which user can log in to the remote PostgreSQL instance and with what combination of role name and password. To do so, you need a user
22%
Kubernetes StatefulSet
05.02.2023
Home
»
Archive
»
2023
»
Issue 73: Datab...
»
06 labels: 07 app: mariadb
08
spec: 09 type: NodePort 10 ports: 11 - port: 3306 12 protocol: TCP
13
selector: 14 app: mariadb 15 --- 16 apiVersion: v1 17 kind: Config
22%
Get the best out of your bandwidth with tc
30.11.2025
Home
»
Archive
»
2012
»
Issue 10: Traff...
»
Throttling Script 01 #!/bin/bash 02 # Our predefined variables 03 DEV=eth0 04 DEVING=eth1 05 DIR=src 06 PKT=920 07 BAND=1Gbit
08
# Reset values from previous script runs 09 tc qdisc del dev $DEV root 10