Main public logs
From wiki.jacobjohns.com
Combined display of all available logs of wiki.jacobjohns.com. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:19, 27 July 2024 Jjohns talk contribs created page File:Openlitespeed-logo-1200x300.png
- 16:19, 27 July 2024 Jjohns talk contribs uploaded File:Openlitespeed-logo-1200x300.png
- 16:19, 27 July 2024 Jjohns talk contribs created page File:Media Wiki Logo.png
- 16:19, 27 July 2024 Jjohns talk contribs uploaded File:Media Wiki Logo.png
- 16:19, 27 July 2024 Jjohns talk contribs created page File:GitHub Logo.png
- 16:19, 27 July 2024 Jjohns talk contribs uploaded File:GitHub Logo.png
- 16:18, 27 July 2024 Jjohns talk contribs created page File:Docker Logo.png
- 16:18, 27 July 2024 Jjohns talk contribs uploaded File:Docker Logo.png
- 16:16, 27 July 2024 Jjohns talk contribs created page File:Debian logo.png
- 16:16, 27 July 2024 Jjohns talk contribs uploaded File:Debian logo.png
- 16:13, 27 July 2024 Jjohns talk contribs created page GibHub: Using SSH (Created page with "center|frameless <hr /><br /> # Ensure git is installed by running <code>git -v</code> # Using Powershell change the working directory to .ssh #* <code>cd C:\users\$env:USERNAME\.ssh\</code> # Launch Git Bash #* <code>bash</code> # Generate ssh key #* Ed25519 #** <code>ssh-keygen -t ed25519 -C "[email protected]"</code> #* RSA #** <code>ssh-keygen -t rsa -b 4096 -C "[email protected]"</code> # For GitHub, set a passphrase. From my tests i...") Tag: Visual edit: Switched
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Windows Server: Upgrade Eval to Standard (content was: "center|frameless <hr /><br /> # Once connected to the server start an elevated command prompt. # Enter the below command. #* ''dism /online /set-edition:serverstandard /productkey:12345-67890-11121-31415-16171 /accepteula'' # DISM will run and request a restart. none|thumb|959x959px # After the restart we are on Windows Server Standard.")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Windows Server (content was: "center|frameless <hr /> <br /> * Windows Server: Upgrade Eval to Standard")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Windows Server: Upgrade Eval to Standard (content was: "center|frameless <hr /><br /> # Once connected to the server start an elevated command prompt. # Enter the below command. #* ''dism /online /set-edition:serverstandard /productkey:12345-67890-11121-31415-16171 /accepteula'' # DISM will run and request a restart. none|thumb|959x959px # After the restart we are on Windows Server Standard.")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Windows Desktop (content was: "center|frameless|620x620px == Windows 10 == <br /> * Windows 10: Move Recovery Partition")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Windows 10: Move Recovery Partition (content was: "center|frameless|500x500px <hr /><br /> # Add space to the disk via VMWare, Hyper-V, etc... # In <code>diskmgmt.msc</code> make a filler partition and leave enough space at the end of the disk to move recovery to it. # Create another partition with the remaining space. This is where our Recovery Partition will move to. Here we are using N. #Using <code>DISKPART</code> #*<code>list disk</code> #*<code>select disk <of recovery partition></code> #*<...")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:VMware esxcli: Remove NFS Share (content was: "center|frameless <hr /><br /> # SSH to host # List NFS storage #* <code>esxcli storage nfs list</code> # Remove the NFS storage. #* <code>esxcli storage nfs remove -v ''NFS_Datastore_Name''</code> # List NFS storage again to verify it is gone. # Remount via CLI or GUI. #* <code>esxcli storage nfs add -H ''NFS_IP''|''NFS_HOSTNAME'' -s ''Share_mount_point_on_the_NFS'' -v ''DatastoreName''</code> #* <code>exit</code> #Disable SSH")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:VMware ESXi (content was: "center|frameless == esxcli == <br /> * VMware esxcli: Remove NFS Share")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Sencha: Manipulating Objects (content was: "center|frameless <hr /><br /> # To manipulate any object in Sencha the object must have an <code>itemId</code>. Select the object and search the '<nowiki/>''Filter Configs...''' for itemId, and enter a matching Id name for the object. # In the event where we are manipulating our object use the below to make changes to the object. #* <code>this.queryById("<itemID>").hide();</code>")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Sencha (content was: "center|frameless == Instructions == <br /> * Sencha: Manipulating Objects")
- 16:10, 27 July 2024 Jjohns talk contribs deleted page Wiki:Remix: Deploy to Cloudflare (content was: "center|frameless <br /> <hr> <br /> There is a guide on Cloudflare here: [https://developers.cloudflare.com/pages/framework-guides/deploy-a-remix-site/ Deploy a Remix site] #Use Chocolatey to install Node JS ##[https://community.chocolatey.org/packages/nodejs.install Chocolatey Software | Node JS (Install)] #Run ##<code>npm create cloudflare@latest my-project-name -- --framework=remix</code> ##<code>cd my-project-name</code> ##<code>npm install</code> ##...")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:Remix (content was: "center|frameless = Instructions = <br /> * Remix: Deploy to Cloudflare")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:React: Create React App (content was: "center|frameless| # <hr /><br /> # Go to working directory where the project will live. #* <code>cd c:\users\$env:USERPROFILE\gitDir\</code> # Create app with npx, cd to directory, and start the app. #* <code>npx create-react-app my-app</code> #* <code>cd my-app</code> #* <code>npm start</code> # Browse to [http://localhost:3000/ localhost].")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:React (content was: "center|frameless == Instructions == <br /> * React: Create React App")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:OsTicket: Reset User Password via SQL (content was: "{{DISPLAYTITLE:osTicket: Reset User Password via SQL}} center|frameless <hr /><br /> # Connect to the osTicket database on the osTicket host. #* <code>sudo mysql</code> # Show databases. #* <code>SHOW databases;</code> # Use the osTicket database. #* <code>USE osticket_database;</code> # Show tables and look for _staff. #* <code>SHOW tables;</code> # Change the password for the desired user. #* <code>update _staff set passwd=MD5('NEW_PASSWORD') Where...")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:OsTicket (content was: "{{DISPLAYTITLE:osTicket}} center|frameless == Troubleshooting == <br /> * osTicket: Reset User Password via SQL {{DEFAULTSORT:osTicket}}")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:OpenLiteSpeed (content was: "center|frameless|407x407px == Instructions == <br /> * OLS: Ols1clk")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:OLS: Ols1clk (content was: "center|frameless|400x400px <hr /><br /> # As root, install OSL with <code>ols1clk.sh</code> with the below. #* <code>wget <nowiki>https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh</nowiki> && bash ols1clk.sh --wordpressplus mydomain.com</code> # If not logged in as root, use <code>sudo su</code> to enter root as a sudo user. # See more options for <code>ols1clk.sh</code> [https://openlitespeed.org/kb/1-click-insta...")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:Media Wiki: Getting Started (content was: "center|frameless ==Getting started== *[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list] *[https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ] *[https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list] *[https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki fo...")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:Media Wiki (content was: "center|frameless == Instructions == <br /> * Media Wiki: Getting Started")
- 16:09, 27 July 2024 Jjohns talk contribs deleted page Wiki:Index (content was: "* '''Debian''' ** Debian: Edit User Password ** Debian: Enable SSH ** Debian: Install Sudo ** Debian: Set Static IP * '''Docker''' ** Docker: Check Container Logs ** Docker: Enable API ** Docker: Save Current State * '''GitHub''' ** GitHub: Using SSH * '''Media Wiki''' ** Media Wiki: Getting Started *'''OpenLiteSpeed''' **OLS: Ols1clk * '''osTicket''' ** osTicket: Reset User...")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:GitHub (content was: "center|frameless == Instructions == <br /> * GibHub: Using SSH")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Docker: Save Current State (content was: "center|frameless|250x250px <hr /><br /> # Use <code>docker commit</code> to save a containers current state. #* <code>docker commit nginx nginx:backup</code> # This adds an image of the container to the local repository. So, if a change is made to a container and needs to be reverted it can be done so individually. # To remove an image use <code>docker images</code> to list all images and <code>docker rmi</code> to remove the image by <code>name:tag</...")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Docker: Enable API (content was: "center|frameless|250x250px == Enable Docker API == # Edit the docker.service: <code>sudo systemctl edit docker.service</code> #* Add the below above the '''### Lines below this comment will be discarded line''<nowiki/>': [Service] ExecStart= ExecStart=/usr/bin/dockerd 2. Create <code>/etc/docker/daemon.json</code> with the below: { "hosts": ["unix:///var/run/docker.sock", "tcp://<...")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Docker: Check Container Logs (Broken redirect: content was: "center|frameless|250x250px <hr /><br /> # Use the <code>docker logs</code> command. #* <code>docker logs --tail 50 --follow --timestamps <container></code> # Where: #* <code>--tail</code> is the number of lines to show form the end of the logs (default "all") #* <code>--follow</code> follows log output #* <code>--timestamps</code> shows timestamps # See <code>docker logs --help</code> for all options. #* <code>--details</code> Show extr...)
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Docker (Broken redirect: content was: "center|frameless|250x250px == Instructions == <br /> *Docker: Check Container Logs *Docker: Enable API *Docker: Save Current State")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Debian: Set Static IP (content was: "center|frameless <hr /><br /> #Backup the original interfaces file to desired backup location. #*<code>cp /etc/network/interfaces /usr/bu</code> #Modify the original file, configuring: #*<code>iface <interface> inet static</code> #*<code>address <desired static ip></code> #*<code>netmask <netmask></code> #*<code>gateway <gateway></code> #*<code>dns-nameservers <nameserver ip> <nameserver ip></code> #Save the file and restart the networking service. #*<c...")
- 16:08, 27 July 2024 Jjohns talk contribs deleted page Wiki:Debian: Install Sudo (Broken redirect: content was: "center|frameless <hr /><br /> # Install sudo #* <code>apt install sudo -y</code> #Add user to sudo using: #*<code>sudo adduser <username> sudo</code> # Or via <code>sudo visudo</code> adding the below line to the file. #* <code><username> ALL=(ALL:ALL) ALL</code> # Check the access under the defined <code><username></code> by signing in and executing a command via sudo. # The file should resemble the below. # # This file MUS...)
- 16:07, 27 July 2024 Jjohns talk contribs deleted page Wiki:Debian: Enable SSH (content was: "center|frameless <hr /><br /> # Install openssh-server #* <code>apt install openssh-server -y</code> # Check the service is running after installation #* <code>systemctl status ssh</code> # If not running start the service #* <code>systemctl start ssh</code> # Enable ssh at startup #* <code>systemctl enable ssh</code> # Optionally enable root access (not secure) #* Open <code>/etc/ssh/sshd_config</code> #* Add the following to the end of the file, searc...")
- 16:07, 27 July 2024 Jjohns talk contribs deleted page Wiki:Debian: Edit User Password (Broken redirect: content was: "center|frameless <hr /><br /> ===Change=== #Use the following to change a user's password #*<code>sudo passwd <user></code> ===Delete=== #To delete a user's password: #*<code>sudo passwd -d <user></code> #Again, not specifying a user takes action on <code>root</code> #*sudo passwd -d ===Expire=== #To expire: #*<code>sudo passwd --expire <user></code> ===Notice=== #To check for sudo access use: #*<code>sudo -v</code> #Not specifyin...)
- 16:07, 27 July 2024 Jjohns talk contribs deleted page Wiki:Debian (Broken redirect: content was: "center|frameless == Instructions == <br /> *Debian: Edit User Password *Debian: Enable SSH *Debian: Install Sudo * Debian: Set Static IP")
- 16:06, 27 July 2024 Jjohns talk contribs imported Windows Server: Upgrade Eval to Standard by file upload (7 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Windows Server by file upload (7 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Windows 10: Move Recovery Partition by file upload (7 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Windows Desktop by file upload (3 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported VMware esxcli: Remove NFS Share by file upload (3 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported VMware ESXi by file upload (3 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Sencha: Manipulating Objects by file upload (2 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Sencha by file upload (4 revisions)
- 16:06, 27 July 2024 Jjohns talk contribs imported Remix: Deploy to Cloudflare by file upload (2 revisions)
