I came home after a test, preparing for the next test. I found that I got a question wrong about storage. I usually do cloud and it’s not on my resume, but still they asked and I failed. SANs typically utilizes Fibre Channel connectivity, while NAS solutions typically use TCP/IP networks, such as Ethernet. But the …
Git – Basic Branching and Merging
Be organized with your git, especially if you have worldwide contributers. git checkout -b iss53 Switched to a new branch “iss53” This is shorthand for: $ git branch iss53 $ git checkout iss53 Figure 19. Creating a new branch pointer You work on your website and do some commits. Doing so moves the iss53 branch forward, because …
knife.rb explained
source: https://gist.github.com/jtimberman/1718805 # Knife Configuration File. # # This is a Ruby DSL to set configuration parameters for Knife’s # general options. The default location for this file is # ~/.chef/knife.rb. If multiple Chef repositories are used, # per-repository configuration files can be created. A per repository # configuration file must be .chef/knife.rb in the …
Dockerize an SSH service | Docker Documentation
I want to make a fancy environment for testing out CI/CD methods, but don’t want a larger cloud bill next month. SO I fired up an ancient linux server old desktop. to begin with I want to do stuff with jenkins ssh slave, so I need an ssh server, this worked out of the box. …
Continue reading “Dockerize an SSH service | Docker Documentation”
Customer Portal – Password Reset sends ****** — Vtiger
I am not sure if these instructions work for Vtiger 7 or not, will try and maybe update here Hi please check this for vt 6.5 password reset problem: in file soap/customerportal.php line 1140 find this code: ********************************** if (!empty($adb->query_result($res, 0, ‘cryptmode’))) { $password = ‘*****’; // TODO – we need to send link to …
Continue reading “Customer Portal – Password Reset sends ****** — Vtiger”
Jenkins and Chef: Infrastructure CI and Automated Deployment
Remember for your interview and even more important to keep that job! Jenkins does infrastructure as code Chef as well as puppet do configuration management Git is a Source Code Management (SCM) system not software configuration management system https://github.com/gchq/BoilingFrogs/issues/5 So you need all 3 Manage your code updates, even scripts in Github. Git remember every …
Continue reading “Jenkins and Chef: Infrastructure CI and Automated Deployment”
Who knew ? #Email Client Market Share and Popularity – April 2018 – #Outlook is distant 5th
Outlook refuses to connect to Linux Dovecot / Postfix (Linux which MS claims to now love) I will now test my servers for usefulness on Androids and Iphones and webmail that I configure!!!1 Way toooooooo many wasted nights trying to get it to work. Just let it go. #1 Apple …
Set up a Postfix Mail Server With Dovecot and Squirrelmail on Ubuntu 16.04 – 1&1
Simple setup for Postfix without MySql. I am following directions from link at the end. Firewall Access You will need to set your firewall(s) to allow access to the following ports: SMTP: 25 POP3: 110 IMAP: 143 SMTP Secure: 465 MSA: 587 IMAP Secure: 993 POP3 Secure: 995 … Configure Postfix After the installation is complete, run the command to configure Postfix: …
Continue reading “Set up a Postfix Mail Server With Dovecot and Squirrelmail on Ubuntu 16.04 – 1&1”
WooCommerce Shortcodes Comprehensive Guide Product Categories Product Categories
Product Categories Product Categories allow you to add product categories loop and output with this shortcode: [product_category category=”one”]. For the purpose of categories section, here are seven more attributes you can apply to this shortcode: ‘number‘ => ‘null‘, – This shortcode represent the number of categories. ‘orderby‘ => ‘name‘, – This shortcode represent the order, “name” and “date” …
Continue reading “WooCommerce Shortcodes Comprehensive Guide Product Categories Product Categories “
Why Do Most Saas Companies Fail? – Chargebee’s SaaS Dispatch
Continued growth in our Charming Biz is a challenge, SO I read this: 1. Lack of a Market Yes. You probably expected the first reason to be related to technology but no, it’s related to the market. Most SaaS businesses fail because they are simply not solving any existing problem. Others may be solving a …
Continue reading “Why Do Most Saas Companies Fail? – Chargebee’s SaaS Dispatch”
Scattered Thoughts about first real usage of @Azure
ALL of this is with Ubuntu 16.04 linux in Azure, not Windows I have been pretty locked into AWS for a few years. I got the hang of it and have been selling great installations via AWS Marketplace. http://charming.co.il/aws-marketplace I have been accepted to the same via Azure. So hear are my first thoughts. I …
Continue reading “Scattered Thoughts about first real usage of @Azure”
Capture an image of a Linux VM in Azure using CLI 2.0 | Microsoft Docs
I used the following instructions to create my first Azure VM Image. sudo waagent -deprovision+user Note Only run this command on a VM that you intend to capture as an image. It does not guarantee that the image is cleared of all sensitive information or is suitable for redistribution. The +user parameter also removes the last provisioned …
Continue reading “Capture an image of a Linux VM in Azure using CLI 2.0 | Microsoft Docs”
How To Install and Configure Postfix on Ubuntu 16.04
Back to configuring a simpler version of Postfix, for small biz and Hipaa Step 1: Install Postfix Postfix is included in Ubuntu’s default repositories, so installation is incredibly simple. To begin, update your local apt package cache and then install the software. We will be passing in the DEBIAN_PRIORITY=low environmental variable into our installation command in order to answer …
Continue reading “How To Install and Configure Postfix on Ubuntu 16.04”