New pages

Jump to navigation Jump to search
New pages
Hide registered users | Show bots | Show redirects
  • 10:43, 1 July 2025Esxi Snmp (hist | edit) ‎[2,793 bytes]Karavi (talk | contribs) (Created page with " Run the command in the console (terminal) and check the SNMP status on the ESXi host: esxcli system snmp get SNMP is disabled by default. The output for disabled SNMP on ESXi is shown on the screenshot. Most of the parameters are empty and or not configured. Set SNMP parameters for an SNMP agent on the ESXi host. The SNMP agent is used to send notifications (SNMP traps and informs) to a monitoring server and receive GET, GETNEXT, and GETBULK requests. Set the commun...")
  • 08:26, 23 June 2025Ubuntu dns (hist | edit) ‎[404 bytes]Karavi (talk | contribs) (Created page with " Edit the Netplan configuration file (usually located in /etc/netplan/). For example: sudo nano /etc/netplan/01-network-manager-all.yaml. To configure a static IP, modify the network: section with your desired IP address, gateway, and DNS servers. edit sudo nano /etc/netplan/01-network-manager-all.yaml Apply the changes: sudo netplan apply")
  • 09:17, 25 April 2025Portainer docker compose (hist | edit) ‎[572 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: services: portainer: image: portainer/portainer-ce:latest container_name: portainer restart: unless-stopped security_opt: - no-new-privileges:true volumes: - /etc/localtime:/etc/localtime:ro - /var/run/docker.sock:/var/run/docker.sock:ro - ./portainer-data:/data ports: - 9000:9000 Bring up your stack by running docker-compose up -d Log in to the Admi...")
  • 15:40, 8 April 2025Windows Active (hist | edit) ‎[590 bytes]Karavi (talk | contribs) (Created page with " Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 Home N: 3KHY7-WNT83-DGQKR-F7HPR-844BM Home Single Language: 7HNRX-D7KGG-3K4RQ-4WPJ4-YTDFH Home Country Specific: PVMJN-6DFY6-9CCP6-7BKTT-D3WVR Pro: W269N-WFGWX-YVC9B-4J6C9-T83GX Pro N: MH37W-N47XK-V7XM9-C7227-GCQG9 Education: NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 Education N: 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ Enterprise: NPPR9-FWDCX-D2C8J-H872K-2YT43 Enterprise N: DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 Server kms.msguides.com kms8.msguides.c...")
  • 09:53, 8 April 2025Windows 11 Esxi (hist | edit) ‎[891 bytes]Karavi (talk | contribs) (Created page with " on isntall : Time to work around the issue… 1. When you get the error picture above simply press Shift + F10 and this will bring up a dos prompt. 2. Type regedit and hit enter. 3. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup and create a new Key called: LabConfig 4. Create inside the LabConfig Key a ByPassTPMCheck DWORD (32-bit) with the value of 1 Click OK after editing the value data and then close out of all of the screens. Once you click on the red x in the cor...")
  • 08:22, 1 April 2025Tube Archivist docker compose (hist | edit) ‎[2,251 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: version: '3.5' services: tubearchivist: container_name: tubearchivist restart: unless-stopped image: bbilly1/tubearchivist ports: - 8000:8000 volumes: - ./media:/youtube - ./cache:/cache environment: - ES_URL=http://archivist-es:9200 # needs protocol e.g. http and port - REDIS_CON=redis://archivist-redis:6379 - HOST_UID=1000 - HOST_G...")
  • 13:56, 30 March 2025Guacamole docker compose (hist | edit) ‎[2,854 bytes]Karavi (talk | contribs) (Created page with " Create the ${HOME}/docker-stack/guacamole/docker-compose.yml file: # networks # create a network 'guacnetwork_compose' in mode 'bridged' networks: guacnetwork_compose: driver: bridge # services services: # guacd guacd: container_name: guacd_compose image: guacamole/guacd networks: - guacnetwork_compose restart: always volumes: - ./drive:/drive:rw - ./record:/record:rw # postgres postgres: contai...")
  • 12:19, 30 March 2025WireGuard docker compose (hist | edit) ‎[2,506 bytes]Karavi (talk | contribs) (Created page with " Docker Compose File (docker-compose.yml) version: '3.8' services: wg-easy: image: ghcr.io/wg-easy/wg-easy # The Docker image to use. container_name: wg-easy # Name of the container. environment: # Environment variables to configure the instance. - LANG=en # Language settings. - WG_HOST=<Your IP/Domain> # Public IP or domain name where WG-Easy is accessible. - PASSWORD_HASH='<...")
  • 09:44, 30 March 2025ShellNGN docker compose (hist | edit) ‎[523 bytes]Karavi (talk | contribs) (Created page with "Shell NGN has an official PRO image in the hub, and it is maintained by the official team. Below is the docker-compose sample that you can alter if you want (ports, volume name, container, etc), or run it as it is. version: "3.5" services: shellngn: image: shellngn/pro network_mode: "bridge" container_name: shellngn ports: - "8080:8080" volumes: - shellngn-data:/home/node/server/data environment: - HOST=0.0.0.0...")
  • 09:31, 30 March 2025Shlink docker compose (hist | edit) ‎[1,027 bytes]Karavi (talk | contribs) (Created page with " Formable's Shlink Portainer stack docker-compose.yml version: "3" services: shlink: image: shlinkio/shlink:stable restart: always environment: - TZ="America/New_York" - DEFAULT_DOMAIN=a.formable.app - IS_HTTPS_ENABLED=true - GEOLITE_LICENSE_KEY= - DB_DRIVER=maria - DB_USER=shlink - DB_NAME=shlink - DB_PASSWORD=shlink - DB_HOST=database depends_on: - database ports:...")
  • 09:15, 30 March 2025Matomo docker compose (hist | edit) ‎[1,036 bytes]Karavi (talk | contribs) (Created page with "make folder: mkdir matomo touch matomo/docker-compose.yml Create a docker-compose.yml file similar to this: version: "3" services: db: image: mariadb:10.11 command: --max-allowed-packet=64MB restart: always volumes: - db:/var/lib/mysql:Z environment: - MYSQL_ROOT_PASSWORD=password123* - MARIADB_AUTO_UPGRADE=1 - MARIADB_DISABLE_UPGRADE_BACKUP=1 app: image: matomo restart: always volumes: - matomo:/var...")
  • 09:07, 28 March 2025Nginx proxy manager docker compose (hist | edit) ‎[444 bytes]Karavi (talk | contribs) (Created page with "Create a docker-compose.yml file similar to this: services: app: image: 'jc21/nginx-proxy-manager:latest' restart: unless-stopped ports: - '80:80' - '81:81' - '443:443' volumes: - ./data:/data - ./letsencrypt:/etc/letsencrypt Bring up your stack by running docker-compose up -d # If using docker-compose-plugin docker compose up -d") originally created as "Nginx proxy manager docker container"
  • 09:03, 28 March 2025Docker ubuntu (hist | edit) ‎[1,228 bytes]Karavi (talk | contribs) (Created page with "command: First, update your existing list of packages: sudo apt update Next, install a few prerequisite packages which let apt use packages over HTTPS: sudo apt install apt-transport-https ca-certificates curl software-properties-common Then add the GPG key for the official Docker repository to your system: curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg Add the Docker repository to AP...")