Archivo del Autor: carlosap

TOP clause progress (Limit sql)

TOP clause Limits the rows returned by an OpenEdge SQL query at the statement level and is supported in subqueries. Syntax TOP n[ column_name [, column_name ] …..| * ] Parameters n Indicates the number of records per table. [ column_name [, column_name ] …..| * ] Indicates the columns within a table. When the… Leer más »

quick create root CA and self signed for chrome 58+

create RootCA first cat createRootCa.sh #!/usr/bin/env bash mkdir /root/ca/ openssl genrsa -des3 -out /root/ca/rootCA.key 2048 openssl req -x509 -new -nodes -key /root/ca/rootCA.key -sha256 -days 7300 -out /root/ca/rootCA.pem Create server.csr.cnf [req] default_bits = 2048 prompt = no default_md = sha256 distinguished_name = req_distinguished_name [ req_distinguished_name ] # See <https://en.wikipedia.org/wiki/Certificate_signing_request>. countryName = MX stateOrProvinceName = MX localityName… Leer más »

Git 2.9 by Software Collections centos 7 rhel 7

rh-git29 – A release of Git, a distributed revision control system with a decentralized architecture. As opposed to centralized version control systems with a client-server model, Git ensures that each working copy of a Git repository is its exact copy with complete revision history. EL6 tests EL7 tests Instructions You can get started in three… Leer más »

add self certificate CHROME linux

“Private key is missing or invalid when importing a certificate” in Google Chrome You may be trying to do is add it to the wrong certificate store. If you’re attempting to add it under «Your Certificates», you’re gonna have a bad time. That tab is for adding identity certificates; what your browser offers to the… Leer más »

install chrome centos 7 / rhel 7

Google Chrome is the freeware web browser developed by Google that uses the WebKit fork blink engine. As of July Google Chrome is the most widely used browser having, it shares around 45% worldwide browser usage. Google Chrome has the inbuilt translate faculty for translation of over 52 languages. Google Chrome has the option to… Leer más »

nginx reverse proxy

To pass a request to an HTTP proxied server, the proxy_pass directive is specified inside a location. For example: location /some/path/ { proxy_pass http://www.example.com/link/; } This example configuration results in passing all requests processed in this location to the proxied server at the specified address. This address can be specified as a domain name or an IP address.… Leer más »