All public logs

Jump to navigation Jump to search

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

Logs
  • 09:17, 25 April 2025 Karavi talk contribs created page Portainer docker compose (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:43, 8 April 2025 Karavi talk contribs protected Talk:Windows Active [Create=Allow only administrators] (indefinite)
  • 15:42, 8 April 2025 Karavi talk contribs protected Windows Active [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 15:40, 8 April 2025 Karavi talk contribs created page Windows Active (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 2025 Karavi talk contribs created page Windows 11 Esxi (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 2025 Karavi talk contribs created page Tube Archivist docker compose (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 2025 Karavi talk contribs created page Guacamole docker compose (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 2025 Karavi talk contribs created page WireGuard docker compose (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 2025 Karavi talk contribs created page ShellNGN docker compose (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 2025 Karavi talk contribs created page Shlink docker compose (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 2025 Karavi talk contribs created page Matomo docker compose (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...")
  • 07:56, 30 March 2025 Karavi talk contribs moved page Nginx proxy manager docker container to Nginx proxy manager docker compose
  • 09:07, 28 March 2025 Karavi talk contribs created page Nginx proxy manager docker container (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")
  • 09:03, 28 March 2025 Karavi talk contribs created page Docker ubuntu (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...")
  • 10:43, 11 January 2025 Karavi talk contribs created page Sql Shrink (Created page with "Script to shrink all databases: declare @db varchar(255) declare c cursor for select name from sys.databases where is_read_only=0 and state=0 and name not in ('master','model','tempdb','msdb') open c fetch c into @db while @@fetch_status=0 begin exec SP_dboption @db,'trunc. log on chkpt.','true' DBCC shrinkdatabase (@db,10) fetch next from c into @db end close c deallocate c")
  • 10:35, 11 January 2025 Karavi talk contribs created page Sql Backup Daily (Created page with " DECLARE @path VARCHAR(256) DECLARE @DBName varchar(255) DECLARE @DATABASES_Fetch int SET @path = 'E:\BANK_MS_SQL_Daily\' +CONVERT(VARCHAR(20),GETDATE(),112)+'_'+ replace(convert(varchar, getdate(),108),':','-')+'\' EXEC master.sys.xp_create_subdir @path DECLARE DATABASES_CURSOR CURSOR FOR select DATABASE_NAME = db_name(s_mf.database_id) from sys.master_files s_mf where -- ONLINE s_mf.state = 0 -- Only look at d...")
  • 15:44, 10 October 2024 Karavi talk contribs created page Colab (Created page with "base command colab connect google drave to colab from google.colab import drive drive.mount('/content/gdrive')")
  • 15:25, 17 September 2024 Karavi talk contribs created page Convert VirtualBox VM to VMware ESXi (Created page with " Full steps can be found at https://i12bretro.github.io/tutorials... -------------------------------------------------------------------- Exporting the VirtualBox Disk(s) -------------------------------------------------------------------- 01. On the VirtualBox host, launch VirtualBox 02. Right click the VM to convert ≫ Settings 03. Select Storage from the left navigation 04. Click the virtual hard disk and copy the Location value for the full path of the...")
  • 13:06, 11 September 2024 Karavi talk contribs created page Python (Created page with " env python -m venv ./venv Active venv\Scripts\activate")
  • 12:54, 21 August 2024 Karavi talk contribs created page RabbitMQ ubuntu 22.04 (Created page with "Step 1: Update System Packages sudo apt update Step 2: Install RabbitMQ Server sudo apt install rabbitmq-server Step 3: Start the RabbitMQ Service sudo systemctl start rabbitmq-server Step 4: Enable RabbitMQ Service on Boot sudo systemctl enable rabbitmq-server Step 5: Check the Status of RabbitMQ sudo systemctl status rabbitmq-server Step 6: Set Up RabbitMQ Management Plugin (Optional) sudo rabbitmq-plugins enable rabbitmq_management sudo systemctl restar...")
  • 14:06, 16 August 2024 Karavi talk contribs created page Vscode (Created page with " code --status or code-insiders --status use https://learn.microsoft.com/en-us/sysinternals/downloads/process-explorer for disable all extensions code --disable-extensions extension export code --list-extensions | % { "code --install-extension $_" } extension import code --install-extension 1tontech.angular-material code --install-extension aaron-bond.better-comments code --install-extension alefragnani.bookmarks code --install-extension alexiv.vscode-a...")
  • 15:51, 3 June 2024 Karavi talk contribs created page Issabel after install (Created page with " asterisk -rvvvvvvvvvvvv")
  • 04:06, 8 May 2024 Karavi talk contribs created page Plesk ubuntu repair (Created page with " plesk repair all -y")
  • 08:08, 15 April 2024 Karavi talk contribs created page Google (Created page with "Google search operators: the complete list {| class="wikitable" |<code>“ ”</code> |Search for results that mention a word or phrase. |“steve jobs” |- |<code>OR</code> |Search for results related to X or Y. |jobs OR gates |- |<code><nowiki>|</nowiki></code> |Same as <code>OR:</code> |<nowiki>jobs | gates</nowiki> |- |<code>AND</code> |Search for results related to X and Y. |jobs AND gates |- |<code>-</code> |Search for results that don’t mention a word or phra...") Tag: Visual edit
  • 04:03, 13 April 2024 Karavi talk contribs created page RabbitMQ docker container (Created page with " If you have RabbitMQ on a docker container, you can first docker ps docker exec -it <YOUR_CONTAINER> /bin/bash rabbitmqctl change_password <USERNAME> <NEWPASSWORD>")
  • 09:31, 9 April 2024 Karavi talk contribs created page Ubuntu command (Created page with " save history to file history > history_for_print.txt")
  • 04:37, 5 January 2024 Karavi talk contribs created page Windows repair (Created page with " SFC /Scannow DISM /Online /Cleanup-Image /CheckHealth DISM /Online /Cleanup-Image /ScanHealth DISM /Online /Cleanup-Image /restoreHealth SFC /Scannow SFC /Scannow")
  • 09:16, 22 December 2023 Karavi talk contribs created page Ubuntu scripts (Created page with "su - cd /home/karavi/ mkdir scripts cd scripts touch UpdatePleskKey.sh echo 'echo hello-world' >> UpdatePleskKey.sh chmod -R 777 . ./UpdatePleskKey.sh nano UpdatePleskKey.sh echo update key plesk Start ls /etc/sw/keys/keys/ rm /etc/sw/keys/keys/* wget -P /etc/sw/keys/keys/ https://qdoc.ir/pleskkey ls /etc/sw/keys/keys/ unzip /etc/sw/keys/keys/pleskkey.zip -d /etc/sw/keys/keys/ rm /etc/sw/keys/keys/pleskkey.zip ls /etc/sw/keys/keys/ echo Ubdate end sudo crontab -e...")
  • 03:04, 19 December 2023 Karavi talk contribs created page Ubuntu size (Created page with " df -h du -sk * | sort -nr | head -10 du -hs directory/* du -h directory/* du -ah Directory/* journalctl --vacuum-time=10d lsof /var/lib/mysql/zabbix/*.ibd mysql -u root -p use zabbix delete from auditlog; delete from history_text; delete from history_uint; delete from history;")
  • 10:43, 14 December 2023 Karavi talk contribs moved page Ununtu after install to Ubuntu after install
  • 05:00, 28 November 2023 Karavi talk contribs created page Css (Created page with "exampleas: [dir='rtl'] .example-option-img { margin-right: 0; margin-left: 8px; }") Tag: Visual edit
  • 02:10, 27 November 2023 Karavi talk contribs created page Ai list (Created page with "𝐀𝐈 𝐆𝐚𝐦𝐞 𝐂𝐡𝐚𝐧𝐠𝐞𝐫𝐬 🔥: 𝐓𝐡𝐞 𝐓𝐨𝐩 𝟏𝟎𝟎 𝐓𝐨𝐨𝐥𝐬 𝐓𝐫𝐚𝐧𝐬𝐟𝐨𝐫𝐦𝐢𝐧𝐠 𝟐𝟎𝟐𝟑 Whether you're a tech enthusiast, a business professional, or a curious explorer, these AI tools offer something for everyone. 🤖 𝐏𝐫𝐨𝐝𝐮𝐜𝐭𝐢𝐯𝐢𝐭𝐲: Wand <nowiki>https://wand.ai</nowiki> Notion <nowiki>https://www.notion.so</nowiki> Base64.ai D...") Tag: Visual edit
  • 04:58, 19 November 2023 Karavi talk contribs created page Falundafa (Created page with "وب‌سایت فالون گونگ: <nowiki>https://fa.falundafa.org/</nowiki> کتاب فالون گونگ: <nowiki>https://fa.falundafa.org/DataWriting/Books/fg_new.pdf</nowiki> کتاب جوآن فالون: <nowiki>https://fa.falundafa.org/DataWriting/Books/ZF-f-2022-A4.pdf</nowiki> ویرایش سایز موبایل کتاب جوآن فالون: <nowiki>https://fa.falundafa.org/DataWriting/Books/ZF-f-2022-M.pdf</nowiki> سخنرانی‌های صوتی...") Tag: Visual edit
  • 06:05, 18 November 2023 Karavi talk contribs created page Plesk key (Created page with " sudo -i cd /etc/sw/keys/keys/ ls rm * ls wget https://qdoc.ir/pleskkey.zip unzip pleskkey.zip rm pleskkey.zip")
  • 05:07, 14 November 2023 Karavi talk contribs created page Chakra (Created page with "چاکرای ریشه یا مولادهارا عنصر وابسته: خاک حس: بویایی منطقه: بین مقعد و دستگاه تناسلی (نشیمنگاه) غدد وابسته: فوق کلیوی (که آدرنالین تولید می‌کند) رنگ: قرمز تند عطر: درخت سدر – درخت میخک عضو وابسته: استخوانها، دندانها، ناخن، پا، روده، مقعد، پروستات. سمبل: نیلوفر چهار...")
  • 02:17, 29 October 2023 Karavi talk contribs created page Ubuntu disk space (Created page with " du -cha --max-depth=1 / | grep -E "M|G" du -cha --max-depth=1 /var | grep -E "M|G"")
  • 09:28, 27 October 2023 Karavi talk contribs created page Ubuntu odoo letsencrypt (Created page with "'''1/ Install certbot :''' <nowiki>#</nowiki>> sudo apt update <nowiki>#</nowiki>> sudo apt install certbot '''2/ Generate Strong Dh (Diffie-Hellman) Group:''' sudo openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048 '''3/ Map <code>.well-known/acme-challenge</code> to <code>/var/lib/letsencrypt</code> Directory:''' <nowiki>#</nowiki>> sudo mkdir -p /var/lib/letsencrypt/.well-known <nowiki>#</nowiki>> sudo chgrp www-data /var/lib/letsencrypt <nowiki>#</nowiki...") Tag: Visual edit: Switched
  • 17:01, 26 October 2023 Karavi talk contribs created page Mikrotik wireless (Created page with " اسپکترال می تواند تمام فرکانس هایی که کارت وایرلس دستگاه شما پشتیبانی می کند را اسکن کند. به قسمت ترمینال دستگاه خود بروید و دستور زیر را وارد کنید. Irmikro@MikroTik] interface wireless و پس از وارد شدن به مود وایرلس دستور زیر را وارد کنید. Irmikro@MikroTik] /interface wireless> spectral-history range=5000-...") Tag: Visual edit
  • 04:38, 26 October 2023 Karavi talk contribs created page Plesk windows repair (Created page with " <code>"%plesk_cli%/repair" --reconfigure-mssql-webadmin-site</code> <code>"%plesk_cli%/repair" --update-mssql-users-permissions</code> <code>"%plesk_bin%\websrvmng.exe" --reconfigure-all</code> <code>"%plesk_bin%\ftpmng.exe" --reconfigure-all</code> <code>"%plesk_bin%\mchk.exe" --all --fix=all</code> <code>"%plesk_bin%\dnsmng.exe" update *</code> "%plesk_dir%admin\bin\defpackagemng.exe" --update --type=psa.task-manager --package=task-manager --fix sc query "Pl...") Tag: Visual edit
  • 16:05, 25 October 2023 Karavi talk contribs created page Mikrotik firewall ddos (Created page with "/ip firewall filter add action=MEMO chain=forward comment="::::::::::::::::::::::::::::::::::::::::::::: Filter Hack DDos :::::::::::::::::::::::::::::::::::::::::::::"     disabled=yes add action=return chain=detect-ddos comment="DDoS Exit  admin"     src-address-list=Mangle_Allow_Admin add action=return chain=detect-ddos comment="DDoS Exit  Web " dst-port=80     protocol=tcp add action=return chain=detect-ddos comment="DDoS Exit  Web " dst-port=443 ...") Tag: Visual edit
  • 16:00, 25 October 2023 Karavi talk contribs created page Mikrotik firewall cpanel linux (Created page with "/ip firewall filter add action=log chain=MEMO comment="::::::::::::::::::::::::::::::::::::::::START NTK_Froward_To_Cpanel_Linux::::::::::::::::::::::::::::::::::::::::::::    :" disabled=yes add action=accept chain=NTK_Froward_To_CPANEL_Linux comment="CPANEL  FTP"     dst-port=20 protocol=tcp add action=accept chain=NTK_Froward_To_CPANEL_Linux comment="CPANEL  FTP"     dst-port=21 protocol=tcp add action=accept chain=NTK_Froward_To_CPANEL_Linux comment="C...") Tag: Visual edit
  • 15:55, 25 October 2023 Karavi talk contribs created page Mikrotik firewall plesk linux (Created page with "/ip firewall filter add action=log chain=MEMO comment="::::::::::::::::::::::::::::::::::::::::START PLESK_Linux:::::::::::::::::::::::::::::::::::::::::::::" disabled=yes add action=accept chain=NTK_Froward_To_PLESK_Linux comment=    "PLESK for FTP passive mode - incoming connections only" disabled=yes     dst-port=49152-65535 protocol=tcp add action=accept chain=NTK_Froward_To_PLESK_Linux comment=    "PLESK Plesk HTTP (TCP)" dst-port=8880 protocol=tcp add ac...") Tag: Visual edit
  • 15:52, 25 October 2023 Karavi talk contribs created page Mikrotik firewall plesk windows (Created page with "/ip firewall filter add action=log chain=MEMO comment="::::::::::::::::::::::::::::::::::::::::START PLESK_Windows:::::::::::::::::::::::::::::::::::::::::::::" disabled=    yes add action=accept chain=NTK_Froward_To_PLESK_Windows comment=    "PLESK for FTP passive mode - incoming connections only" disabled=yes     dst-port=49152-65535 protocol=tcp add action=accept chain=NTK_Froward_To_PLESK_Windows comment=    "PLESK Plesk HTTP (TCP)" dst-port=8880 protocol=...") Tag: Visual edit
  • 16:09, 24 October 2023 Karavi talk contribs created page Ununtu after install (Created page with "lsb_release -a sudo -i sudo hostname sudo hostname s35.ntkhost.com sudo hostname hostnamectl hostnamectl set-hostname s35.ntkhost.com hostnamectl sudo apt update sudo apt upgrade -y sudo apt-get dist-upgrade -u")
  • 11:30, 23 October 2023 Karavi talk contribs created page Ubuntu zabbix agent2 (Created page with "#Install and configure Zabbix for your platform wget https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu22.04_all.deb dpkg -i zabbix-release_6.4-1+ubuntu22.04_all.deb apt update apt install zabbix-agent2 zabbix-agent2-plugin-* sudo nano /etc/zabbix/zabbix_agentd.conf ... Server=<Zabbix_Server_IP> ServerActive=<Zabbix_Server_IP> Hostname=<Hostname_Of_Ubuntu_Client> ... systemctl restart zabbix-agent2 systemctl enable...")
  • 11:29, 23 October 2023 Karavi talk contribs created page Ubuntu zabbix agent (Created page with "#Step 1: Update Your System sudo apt update sudo apt upgrade -y Step 2: Install Zabbix Agent wget https://repo.zabbix.com/zabbix/6.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.0-4+ubuntu22.04_all.deb sudo dpkg -i zabbix-release_6.0-4+ubuntu22.04_all.deb sudo apt update sudo apt install zabbix-agent #Step 3: Configure Zabbix Agent sudo nano /etc/zabbix/zabbix_agentd.conf ... Server=<Zabbix_Server_IP> ServerActive=<Zabbix_Server_IP> Hostname=<H...")
  • 16:48, 18 October 2023 Karavi talk contribs created page Odoo install ubuntu (Created page with "#-------------------------------------------------- #Step 1: Update Package Manager #-------------------------------------------------- lsb_release -a && ip r sudo apt-get update sudo apt-get upgrade -y sudo apt install git wget python3 build-essential libzip-dev python3-dev libxslt1-dev python3-pip libldap2-dev python3-wheel libsasl2-dev python3-venv python3-setuptools node-less libjpeg-dev xfonts-75dpi xfonts-base libxrender1 libpq-dev libffi-dev fontconfig sudo apt...")
  • 16:44, 18 October 2023 MediaWiki default talk contribs created page Main Page