Just trying to setup either a wildcard *.mydomain.nz
or mydomain.nz
, but resulting in Invalid public domain
failed status.
Their learn more link doesn't hint at what TLDs are supported.
Just trying to setup either a wildcard *.mydomain.nz
or mydomain.nz
, but resulting in Invalid public domain
failed status.
Their learn more link doesn't hint at what TLDs are supported.
Given repo "A", a Ruby project with a dependency on a gem, contained within another private Github repo, "B", I need to give Docker Hub permission to clone repo "B" when it builds the image.
I'm unsure of what the ideal setup for this is - ie, does it require an additional Github user for just the deploy keys for repo "B" or should it all work with the primary GH account I have already linked to Docker Hub and is working fine for accessing repo "A"?
I currently utilize Vagrant and Chef to provision individual linux VMs for different apps.
These apps are domain addressable from host, without requiring anything else set up on the host. This is achieved using avahi on the linux guest. Host then accesses via guest's hostname, such as:
myguest1.local -> VM#1
myguest2.local -> VM#2
I now have another app about to install, which to replicate the production server, should have 2 Apache virtual hosts addressable within the one VM, such as:
myguest3.local
-> VM#3
myguest4.local
Can I also achieve this completely with Vagrant/Chef, without needing any modification to the host machine?
Title is quite explanatory, but I have just deleted an s3 bucket as it was in the wrong region and am wanting to recreate it in the correct region with same name as the just deleted one.
Is there any documentation of this or user experience?
I have an IIS project which is stored on a Samba shared, network mounted with the following line:
X: \\my-samba-server\dev /user:freddie
Connectivity is fine, can read/write files from X:
.
In IIS, I'm trying to set it as the Physical path
via \\my-samba-server\dev\folder\to\my\files
, which results in the following 500.19
error:
Config Error | Cannot read configuration file due to insufficient permissions
It is by default trying to use the Pass-through authentication
. If I try to set this to connect as the specific user freddie
, I receive:
The specified user does not exist
What is the correct way to connect to a path which has been setup as described above?
**Samba man pages indicate version 3.6 is on the Debian host*
I'm trying to interact with the nodejs Azure sdk from a CentOS installation of Rundeck.
If I try from the "run" adhoc virtual shell, I am able to after running azure account import <mykey>
and can then also execute other Azure commands inside of jobs if I set them as Rundeck node tasks and not selecting "dispatch to nodes" in the job settings.
Trying to run the Azure sdk commands as commands to be dispatched to the node (local) fails with the error:
localhost1-NodeDispatch-localexec
04:53:04 /usr/bin/env: node: No such file or directory
04:53:04 Failed: NonZeroResultCode: Result code was 127
I am not able to "jumpstart" the same environment by running azure account import <mykey>
I am assuming this is a permissions/environmental issue, though not sure how to fix it.
UPDATE:
Executing whoami
from the same job returns rundeck
, so I assume I will need to either modify that to execute tasks as my system user or grant permissions to get the rundeck
user into the node environment the Azure sdk is running in?