Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

8 total results found

Deploy a DotNet Service with Ansible

HowTo Ansible

The following shell command will deploy the binaries and appropriate configuration for a service, to an inventoried host: ansible-playbook deploy-service.yml \ -e "var_host=blissdev" \ -e "var_binrepo=oga-built-dev" \ -e "var_servicename=OGA.HostControl.Se...

dotnet
deployment
ansible

DotNet Startup Remote Debugging Hook

HowTo

When performing remote debugging of an application or service, it may be necessary to see what is happening during early startup. Adapted from this article: I Wish I Knew About Debugger.Launch Earlier Normally. By the time you have started the remote process...

dotnet
.net
programming
debugging
deployment
remote-debug

Install DotNet 6 on Ubuntu 24.04

HowTo

The process of installing DotNet on Ubuntu has evolved a bit.It was especially rocky on Ubuntu v22, where the OS package manager had conflicts with the official Microsoft packages, rendering the installation broken. But, it appears that in Ubuntu 24.04, it wo...

dotnet
deployment
.net
Linux

Jenkins Notes and Links

Jenkins

Here are links to Jenkins references. Jenkins User Manual: Jenkins User Handbook Dealing with the Jenkins System Account: Jenkins: Home Profile

deployment
dotnet
.net
infrastructure
programming
Linux
Jenkins
angular
angular

Kali in VMWare

System Administration

Here are some things for installing Kali in a VMWare VM. Adapted from here: https://www.kali.org/docs/virtualization/install-vmware-guest-vm/   Choose the latest Workstation Hardware version. 16.x is current as of this writing. Kali is debian based, so use...

Linux
deployment

Ubuntu v24 Host Setup

System Administration

Setting the Host Name Get the current hostname with this:  hostnamectl To set it, use this: sudo hostnamectl set-hostname new-hostname (replace new-hostname) Once set, confirm it with the previous command. Now, you need to update the hostname in your h...

deployment
ubuntu
Administration
Linux

HowTo Run DotNet Core App as Standalone

.NET

How to startup a net core application and specify the listening IP address and port: exename.exe run --urls "http://192.168.1.110:6000"

deployment
dotnet
.net

Docker Commands

System Administration

Here’s a list of commands to remember for docker administration. List Containers To list all docker containers on a host: sudo docker ps -a Remove Containers To remove all docker containers on a host: sudo docker rm -f $(sudo docker ps -aq) Container Lo...

Administration
docker
deployment