heroku:how to get secondary nameserver for ssl https - heroku

my hosting platform is freenom which requires two nameservers but heroku gives only on nameserver
is their a way to get secondary nameserver ?
is their a hosting platform which requires only one name server ?
i have tried installing zerigo plugin
heroku addons:add zerigo_dns
but it says
» Warning: heroku update available from 7.19.4 to 7.22.8
Creating zerigo_dns on ⬢ dataentrywebsite... !
! Couldn't find either the add-on service or the add-on plan of "zerigo_dns".
perhaps does not exist anymore

Just try poinyDNS which will provide you 3 NS instead of 1 and is quite popular.

Related

unable to init nuxt 3 npx showing " ERROR Failed to download template from registry: fetch failed"

I have fixed it by just updating DNS in windows, it might also fix on ubuntu.
Just add preferred 8.8.8.8 and Alternate DNS will be 8.8.4.4
Restart CMD and try again, make sure to restart all open CMD
One Additional help here to starting Nuxt Project
https://nuxt.new/

Deploy API REST IBM Hyperledger Composer Blockchain

I'm developing a POC over IBM HyperLedger Blockchain. I have a business network developed and deployed in IBM Cloud. I can generate a working local API REST, but cannot make it work on cloud, on the deployed IP.
I'm following this guide:
https://ibm-blockchain.github.io/interacting/
You just have to execute the following command:
./create/create_composer-rest-server.sh --business-network-card MY_BIZNET_CARD_NAME
But it doesn't deploy anything, and get the following (more related to kubernetes than blockchain).
Preparing yaml file for create composer-rest-server
Creating composer-rest-server pod
Running: kubectl create -f /Users/sm/jsblock/ibm-container-service/cs-offerings/scripts/../kube-configs/composer-rest-server.yaml
The connection to the server localhost:8080 was refused - did you specify the right host or port?
the server doesn't have a resource type "svc"
Creating composer-rest-server service
Running: kubectl create -f /Users/sm/jsblock/ibm-container-service/cs-offerings/scripts/../kube-configs/composer-rest-server-services-free.yaml
The connection to the server localhost:8080 was refused - did you specify the right host or port?
Composer rest server created successfully
Any ideas? Thanks too much.
You need to ensure you have a correct kube config setup. Step 10 in https://ibm-blockchain.github.io/setup/ provides the details to set up KUBECONFIG as the error suggests that either it is not configured or not configured correctly.
The document you refer to https://ibm-blockchain.github.io/interacting/ is being updated and should be available soon.
When you run the command ./create/create_composer-rest-server.sh --business-network-card MY_BIZNET_CARD_NAME - should be the name of the Network Admin for the network you deployed, NOT the PeerAdmin card so it will be something like ./create/create_composer-rest-server.sh --business-network-card admin#perishable-network
Look like it's an issue of acceess control. You should make sure again you are running with Local Admin configuration.it will help you to run queries

tool like Ngrok to Access XAMPP Localhost from Internet

I have read this question, I found the best answer for me was : http://ngrok.com small tool
This tool is really great, but to add a custom domain you need paying plans
Is there any other tool like Ngrok to Access XAMPP Localhost from Internet
There npm module localtunnel.me which allows you to specify custom subdomain.
npm install -g localtunnel
then start tunnel like this
lt --port 8000 --subdomain yoursubdomain
then you'll be able to access it like subdomain.localtunnel.me

heroku command not working error Installing core plugins

I'm keep getting this error. I have installed heroku toolkit successfully
C:\Users\hp-u>heroku login
Would you like to submit Heroku CLI usage information to better improve the CLI user experience?
[y/N] Y
heroku-cli: Installing core plugins...Error reading plugin heroku-apps.
Reinstalling... Error reading plugin heroku-apps. Reinstalling ... Error reading plugin heroku-apps. Reinstalling
I removed the s from https:// in the value HTTPS_PROXY variable and it worked.
so:
export HTTPS_PROXY="http://myproxy.com:8080"
//instead of
export HTTPS_PROXY="https://myproxy.com:8080"
i.e. somehow the internal college proxy itself might not be able to perform SSL communication

unknown heroku error

i am experiencing following error while trying to run application on heroku
2011-06-03T11:24:25-07:00 heroku[nginx]: GET / HTTP/1.1
2011-06-03T18:24:37+00:00 heroku[router]: Error H14 (No web processes runnig)
that's the only message i am getting, and it's not even mentioned in heroku error codes at http://devcenter.heroku.com/articles/error-codes
what could be the reason of this?
heroku restart
made it work properly again
As given on http://devcenter.heroku.com/articles/error-codes
H14 - No web processes running
This is most likely the result of scaling your web processes down to zero through the client.
$ heroku scale web=0
Use the heroku ps command to determine the state of your web processes.
If problems persists after heroku restart;
Destroy the heroku app and re-create.
Heroku restart
didn't fix the issue. I added a new line in my Gemfile (just a new line, no text) to force heroku to reinstall gems and this fixed the issue.

Resources