Does puppet have an official module for Oracle Db operations - puppet

Is there an official puppetlab module for the Oracle database? (I found one for MySQL and Postgres)

There's not a PuppetLabs maintained module for OracleDB (as of when I'm writing this post, there may be in the future - Here's a search to use to check)
But if you search on the Forge as BMW suggested, there are a number of non-PuppetLabs maintained modules you could try:
https://github.com/biemond/biemond-oradb
https://github.com/hajee/oracle

Related

Install MySQL NDB cluster on CentOS. What version use?

I am new in Linux.
I need for test purpose install NDB Mysql cluser.
Read a lot of documentation and How to do.
As a result I am not understand. For example
https://featout.com/the-complete-guide-mysql-cluster-on-centos-7/
It has instruction for example
wget http://cdn.mysql.com//Downloads/MySQL-Cluster-7.6/mysql-cluster-community-**7.6.15-1.el7.x86_64**.rpm-bundle.tar
tar -xvf mysql-cluster-community-7.6.15-1.el7.x86_64.rpm-bundle.tar
I have question why instruction have version of Mysql mysql-cluster-community-7.6.15-1.el7.x86_64.rpm-bundle.tar. Document can wrote many years ago. How can i find most suitable and up to date version for my CentOS.
How can i find version according my version of OS or may be it is not important?
Thank you!!
Official doc tells about it is very recommended to use last update version of software. To do this need to add additional repository
of mysql, because standard repository does not contain it.
Some documentation, which is use some version of software without explanation about that you need to find new and how to do it, for starter of linux not clear.

Sequalize - highest PostgreSQL version supported

I'm looking to use Sequalize library in a new Node.js project. However, I noticed it only supports version 6 of pg driver library. I'm not sure what is the highest version of PostgreSQL database that I can use it considering I want to use full-fledged JSON support?
I tried looking in https://github.com/brianc/node-postgres and https://github.com/sequelize/sequelize for any documentation or hint but couldn't find any.
This is what i found on their support page.
node-postgres conforms to v3 of the PostgreSQL wire protocol. This means node-postgres supports PostgreSQL server 8.x - current
https://node-postgres.com/support
Here is the supported PostgreSQL and pg based for the sequelize version you want to use.
https://sequelize.org/releases/#postgresql-support-table

Nodejs dateformat module reference

Where dateformat module is located and where I can find it's api docs?
I see there is a package in npm with name dateformat, but on my machine dateformat module is already installed. I'm unable to find it in nodejs official docs.
A'm I missing a whole branch of available modules in nodejs?
Looking forward for some explanation.
Option #1 - Date() Documentation
Well Node.js JavaScript, so you can just use the Date() documentation.
Option #2 - Additional Functionality
However the functions included within the Date API, is limited, which is why, as you mentioned, you may want to use an external library. A common, and very stable well supported choice would be moment.js

How to use CouchDB in Sails.js

I want to create a web in node js with the using the "Sails.js" framework and "CouchDB" database. I have check its package and I found lots of package for that.
https://www.npmjs.com/search?q=couchdb
So any one can suggest which package I can used for my application and also want to know for this I need to create a custom adapter.
If there has no requirement of create a custom adapter, so can I use the sails module feature.
The most popular CouchDB adapter in JS :
PouchDB
nanoDB
They are both available on NPM.
PouchDB has a lot of features and his API is easy to use. It also supports a lot of return types (callbacks,promises, async/await). There's also a lot of plugins around PouchDB.
As for nanoDB, it has less features(since it`s minimalist) but it covers all the general features of CouchDB.
Note: nanoDB normal implementation is with callbacks(which can be very ugly). There is an implementation of nanoDB with promises here.
You can take a look also to this adapter sails-couchdb-orm, but it could be no longer maintained. If you plan deploying your project using IBM Bluemix, you should try using sails-cloudant-orm. Cloudant is based on Apache CouchDB.

Changing internal database to external JDBC in Atlassian crowd

I have installed Atlassian crowd using the internal database method on Centos 6. Installation went successfully and now i want to use external database (mysql) using JDBC. I cant find the option to accomplish that. How can i do that?
See Atlassian's documentation for how to Migrate to Another Database:
This guide applies to situations when you may need to migrate Crowd to another database.

Resources