godleon.github.io godleon.github.io

godleon.github.io

小信豬的原始部落

http://godleon.github.io/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR GODLEON.GITHUB.IO

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

August

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.5 out of 5 with 6 reviews
5 star
2
4 star
1
3 star
2
2 star
0
1 star
1

Hey there! Start your review of godleon.github.io

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.5 seconds

FAVICON PREVIEW

  • godleon.github.io

    16x16

CONTACTS AT GODLEON.GITHUB.IO

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
小信豬的原始部落 | godleon.github.io Reviews
<META>
DESCRIPTION
從 <a href='http://godleon.blogspot.com' target='_blank'
<META>
KEYWORDS
1 google blogger
2 搬過來囉
3 記錄在 it 方面學習的點點滴滴
4 小信豬的原始部落
5 ansible include 使用介紹
6 vagrant 同時客製化多個 vm
7 openstack high availability
8 ansible role 使用介紹
9 ansible inventory 使用介紹
10 ansible playbook 入門
CONTENT
Page content here
KEYWORDS ON
PAGE
google blogger,搬過來囉,記錄在 it 方面學習的點點滴滴,小信豬的原始部落,ansible include 使用介紹,vagrant 同時客製化多個 vm,openstack high availability,ansible role 使用介紹,ansible inventory 使用介紹,ansible playbook 入門,ansible 初探 ansible,openstack 啟動第一個 vm,openstack openstack 概觀,pycharm 使用技巧筆記,rhce
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

小信豬的原始部落 | godleon.github.io Reviews

https://godleon.github.io

從 <a href='http://godleon.blogspot.com' target='_blank'

INTERNAL PAGES

godleon.github.io godleon.github.io
1

[Ansible] playbook 使用介紹(vars & handler & template) – 小信豬的原始部落

http://godleon.github.io/blog/2015/03/26/ansible-playbooks-tutorial-2

Ansible] playbook 使用介紹(vars and handler and template). 這次我們要透過 playbook 安裝一個支援 SSL 的 nginx web server,以下是 playbook 的內容. Configure web server with nginx and ssl. 使用 apt module 安裝 nginx web server. 透過 file module 建立存放 SSL 憑證的目錄. Create directories for ssl certificates. 透過 copy module 複製 SSL 金鑰檔案到指定位置(使用 vars and template). Dest={ key file }. 透過 copy module 複製 SSL 憑證檔案到指定位置(使用 vars and template). 並使用 notify 關鍵字呼叫 handler 重新啟動 nginx. Dest={ cert file }. 使用 template module 直接指定 jinja2 template 並套用上面定義的變數作為來源檔案.

2

[Ubuntu] MAAS(Metal as a Service) 的安裝 & 設定 – 小信豬的原始部落

http://godleon.github.io/blog/2015/05/07/Ubuntu-MAAS-Install-Configure

Ubuntu] MAAS(Metal as a Service) 的安裝 and 設定. 甚麼是 MAAS (Metal as a Service)? 首先來看看 Ubuntu MAAS 官網. Metal as a Service brings the language of the cloud to physical servers. It makes it easy to set up the hardware on which to deploy any service that needs to scale up and down dynamically; a cloud being just one example. MAAS works closely with the service orchestration tool Juju to make deploying services fast, reliable, repeatable and scalable. OS version Ubuntu 14.04.02 LTS. Sudo sh -c "echo 'LC ALL=.

3

[Cluster] 在 Ubuntu 上安裝 Percona XtraDB Cluster – 小信豬的原始部落

http://godleon.github.io/blog/2015/05/28/Build-Percona-XtraDB-Cluster-in-Ubuntu

Cluster] 在 Ubuntu 上安裝 Percona XtraDB Cluster. 其實研究這個 topic 是為了之後要把這個功能設定到 OpenStack 的環境之中而準備的 XD. 在 OpenStack 中資料庫是非常重要的一個服務,因此資料庫要有 HA 的保護自然也是不在話下。 Percona XtraDB Cluster HA 運作原理. 要建置 Percona XtraDB Cluster 的環境,必須至少要有 3 nodes。 在 cluster 中,所有的 nodes 會自動同步資料庫中的資料,只要在 cluster 中的 node 沒有全部掛掉,就還是可以提供資料庫服務。 當 cluster 中有 node 掛掉時,隨著時間的變動,資料也會有所異動,當掛掉的 node 回復正常重新加入 cluster 後,有兩種方法可以進行資料的同步. 1、State Snapshot Transfer: (SST). SST 的功能是將 working node 的資料完整的複製並傳給新加入的 node,目前有三種傳送方式可以選擇. Ubnutu 14.04 trusty64. Packa...

4

[Vagrant] 同時客製化多個 VM – 小信豬的原始部落

http://godleon.github.io/blog/2015/05/22/vagrant-customize-virtual-machines

可以設定不同的 cpu 數量 and memory 大小. Vi: set ft=ruby :. VM 設定 (使用 json 格式定義). Vm disks/node01 disk2.vdi". Vm disks/node01 disk3.vdi". Vm disks/node02 disk2.vdi". Vm disks/node02 disk3.vdi". 設定 VM 網卡(private network = host-only). 設定 VM 開機時執行的 shell command. 設定 VM cpu and memory. 將 VHD 與 VM disk controller 綁定. Tips and Tricks - Vagrantfile - Vagrant Documentation. Multi-machine Vagrantfile with Shorter, Cleaner Syntax Using JSON and Loops. Add a second disk to system using vagrant. May 22, 2015.

5

[Ansible] Include 使用介紹 – 小信豬的原始部落

http://godleon.github.io/blog/2015/05/24/ansible-how-to-use-include

這時候也許就會考慮將容易重複利用的內容從 playbook 中拉出,獨立成一個個的小檔案,當有需要呼叫此內容時,再透過 * includes*. Handlers handlers.yml Inventory task1.yml tasks foo.yml. Cluster] node01 ansible ssh host. 192168.122.101 node02 ansible ssh host. Bin/echo "First Command ". Bin/echo "Second Command ". Ansible-playbook task1.yml -i Inventory -K -v. Tasks/foo.yml usr 1=Larry usr 2=Page. Name=apache2 state=present update cache=yes. Playbook Roles and Include Statements Ansible Documentation. May 24, 2015. 2016 godleon. Powered by Jekyll.

UPGRADE TO PREMIUM TO VIEW 13 MORE

TOTAL PAGES IN THIS WEBSITE

18

LINKS TO THIS WEBSITE

godleon.blogspot.com godleon.blogspot.com

小信豬的原始部落: 十一月 2014

http://godleon.blogspot.com/2014_11_01_archive.html

覺得使用 markdown 寫 blog 輕鬆太多了. 花了一些時間把 GitHub Pages Jekyll 整合好! 所以就決定把 blog 遷到 https:/ godleon.github.io. 訂閱: 文章 (Atom). 12304;時間花在那裡,成就就在那裡】 與大家共勉之! Simple範本. 範本圖片製作者: luoman.

UPGRADE TO PREMIUM TO VIEW 2 MORE

TOTAL LINKS TO THIS WEBSITE

3

SOCIAL ENGAGEMENT



OTHER SITES

godleman.com godleman.com

Martin Godleman — writer & journalist

Thinking, writing, filming. This website is the arena for some of my current writing projects, as well as a potted history of my experiences as a journalist, interviewing people with very different world views ranging from those of Noam Chomsky to the pontifications of Ray Winstone.

godlens.com godlens.com

GodLens.com

View Basket ». Canon EF 24-105mm f/4L IS USM Autofocus Zoom Wide Angle-Telephoto Lens (Import). Canon EF 24-70mm f/2.8L II USM Zoom Lens (Import). Canon EF 28-300mm f/3.5-5.6L IS USM AutoFocus Wide Angle Telephoto Zoom Lens. Canon EF 70-200mm f/2.8L IS II USM Zoom Telephoto Autofocus Lens. Canon EF 85mm f/1.2L II USM AutoFocus Telephoto Lens. Canon EF 100-400mm f/4.5-5.6L IS USM AutoFocus Image Stabilized Telephoto Zoom Lens. Canon EF 70-200mm f/2.8L USM Autofocus Zoom Telephoto Lens (Import).

godleon.blogspot.com godleon.blogspot.com

小信豬的原始部落

覺得使用 markdown 寫 blog 輕鬆太多了. 花了一些時間把 GitHub Pages Jekyll 整合好! 所以就決定把 blog 遷到 https:/ godleon.github.io. 1、OpenStack Swift 是什麼? 24 Object URL 組成. 4、Swift Consistency Services. 5、Swift Cluster 分群概念. 1、OpenStack Swift 是什麼? OpenStack Swift is a multi-tenant, highly scalable and durable object storage system that was designed to store large amounts of unstructured data at low cost via a RESTful HTTP API. 從上述簡單的定義,無法完全表達 Swift 的強大,因此以下列出 Swift 的特色:. Open source and 免費。 所有儲存在 Swift 的物件、檔案都有一個 URL。 有了 Account / C...

godleon.deviantart.com godleon.deviantart.com

Godleon (Fortune Being) - DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? I know im odd and i love it! Deviant for 7 Years. 5 Month Core Membership. Daily Pageviews ». Last Visit: 4 hours ago. I know im odd and i love it! This is the place where you can personalize your profile!

godleon.github.io godleon.github.io

小信豬的原始部落

一步一腳印朝 open source 的方向努力學習! Linux] 使用 Linux(Linux Mint) 作為桌面環境的 trouble shooting 紀錄. OpenStack] Nova Network 簡介. LXC] Linux Container(LXC) 學習筆記. Cluster] 在 Ubuntu 上安裝 RabbitMQ Cluster. Cluster] 在 Ubuntu 上安裝 Percona XtraDB Cluster. Cluster] 在 Ubuntu 上安裝 MariaDB Galera Cluster. HA] 建置 Two Nodes HA Cluster by corosync and pacemake @ Ubuntu 14.04. Ubuntu] Service Orchestration by Juju. Ubuntu] Juju 的安裝 and 設定. Ubuntu] MAAS(Metal as a Service) 的安裝 and 設定. Ansible] playbook 使用介紹(vars and handler and template).

godleonardo.info godleonardo.info

godleonardo.info - Crazy Domains

Search and register domain names. Move your domains to us FREE. Everything you need for your domains. Express cheap domain renewal. Control your CNAME, MX and A records. 700 New global domains. Get the domain name you want. Find who owns a particular domain. Earn points with every purchase. Sell domains under your brand. Get paid commission on referrals. Register your domain and Get Started Online. Fast, reliable space for your website. Web Hosting - Transfer. Move your website and email to us. Activate ...

godleonardo.net godleonardo.net

godleonardo.net - Crazy Domains

Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.

godleonardo.org godleonardo.org

godleonardo.org - Crazy Domains

Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.

godler.com godler.com

Web hosting provider - Bluehost.com - domain hosting - PHP Hosting - cheap web hosting - Frontpage Hosting E-Commerce Web Hosting Bluehost

Web Hosting - courtesy of www.bluehost.com. There is no content here.

godles-savage-garden.deviantart.com godles-savage-garden.deviantart.com

Godles-Savage-Garden | DeviantArt

Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Deviant for 13 Years. Last Visit: 184 weeks ago. This deviant's activity is hidden. Deviant since Apr 24, 2004. This is the place where you can personalize your profile! By moving, adding and personalizing widgets. You can drag and drop to rearrange. You can edit widgets to customize them. The bottom has widgets you can add! We've split the page into zones!