Collecting Ubuntu Linux System Information

 Hệ thống  Comments Off on Collecting Ubuntu Linux System Information
Nov 162015
 

Find the system host name Display the system’s host name: $ hostname $ cat /etc/hostname server1 Display the system’s DNS domain name: $ dnsdomainname cyberciti.biz Display the system’s Fully Qualified Domain Name (FQDN): $ hostname -f server1.cyberciti.biz Find the system serial number, manufacturer of the system and model name $ sudo dmidecode -s system-serial-number $ […]

[DBA] Hướng dẫn thao tác với Partition trong Oracle DB

 Database  Comments Off on [DBA] Hướng dẫn thao tác với Partition trong Oracle DB
Nov 162015
 

Hướng dẫn thao tác với Partition trong Oracle DB Drop partition Drop một partition sẽ xóa toàn bộ dữ liệu trên partition đó –drop a partition alter table thetest drop partition p201510; –>drop a partition + its data + drop the corresponding partitions in each local index Insert dữ liệu vào một bảng đã có […]

Xử lý lỗi The listener supports no services trên Oracle Database (lsnrctl status)

 Database  Comments Off on Xử lý lỗi The listener supports no services trên Oracle Database (lsnrctl status)
Nov 162015
 

Xử lý lỗi The listener supports no services trên Oracle Database (lsnrctl status) Tình huống Khi thực hiện login root vào server DB bình thường, telnet từ client đến cổng 1521 của server database được nhưng khi kết nối bằng client (sqlplus) báo lỗi ORA-12514: TNS:listener does not currently know of service requested in connect descriptor […]

Tổng quan kiến trúc database vật lý của Oracle

 Database  Comments Off on Tổng quan kiến trúc database vật lý của Oracle
Nov 162015
 

Tổng quan kiến trúc database vật lý của Oracle Phần này sẽ mô tả kiến trúc vật lý của database Oracle sau khi đã mô tả kiến trúc ứng dụng của Oracle trong bài trước. Các vấn đề đề cập đến bao gồm datafiles, redo log files và control files. Phần này sẽ khó hiểu […]

Install Php Oracle Client on Ubuntu

 Database, Linux  Comments Off on Install Php Oracle Client on Ubuntu
Nov 162015
 

Yêu cầu: – Hệ điều hành: Ubuntu. – PHP phiên bản: 5.5.29. – Oracle Client: 2 gói phần mềm có tên instantclient-basic-linux-12.1.0.2.0 và instantclient-sdk-linux-12.1.0.2.0. Các bước cài đặt: Bước 1: bạn chạy các câu lệnh sau: sudo apt-get install build-essential sudo apt-get install php5-dev php-pear libaio1   Bước 2: Bạn chỉnh sửa file /etc/environment chú […]

Docker basic

 Hệ thống  Comments Off on Docker basic
Nov 152015
 
Docker basic

What is Docker? When people talk about docker they are most likely talking about the docker engine. Docker is in fact an organization which creates tools to assist with the creation and deployment of software in a portable manor. As well as creating the docker engine they also have projects which orchestrates and manages deployed […]

AppCatalyst & Docker Lab

 Hệ thống  Comments Off on AppCatalyst & Docker Lab
Nov 152015
 
AppCatalyst & Docker Lab

“VMware AppCatalyst is an API and Command Line Interface (CLI)-driven Mac hypervisor that is purpose-built for developers, with the goal of bringing the datacenter to the desktop.” This Hands-on Lab will walk you through the installation of VMware AppCatalyst and Docker Basics including Docker Machine, Docker Compose, and Docker Swarm. AppCatalyst is currently Tech Preview […]

CREATING A DOCKER CONTAINER FOR HIPPO CMS

 Hệ thống, Linux  Comments Off on CREATING A DOCKER CONTAINER FOR HIPPO CMS
Nov 152015
 

Introduction Don’t we all know  Docker by now? In short, Docker is a so called “container solution”, which you can use to create application containers. Such a container is constructed from a base image and provisioned with e.g. an application and its configuration files. Unlike VM-based solutions, where a guest operating system runs fully independent of […]

[Docker]- Part3 – Cài đặt Docker trên Ubuntu 14.04

 Linux  Comments Off on [Docker]- Part3 – Cài đặt Docker trên Ubuntu 14.04
Nov 112015
 

Tiếp theo loạt bài về Docker, mình sẽ hướng dẫn các bạn các cài đặt Docker trên Ubuntu 14.04 (vì mình sử dụng phiên bản này). 1, Đăng nhập vào user có thể thực thi câu lệnh sudo với quyền admin. 2, Kiểm tra xem curl đã được cài đặt hay chưa $ which curl […]

[Docker] – Part 2 – Cấu trúc và quy trình hoạt động của Docker.

 Linux  Comments Off on [Docker] – Part 2 – Cấu trúc và quy trình hoạt động của Docker.
Nov 112015
 
[Docker] – Part 2 – Cấu trúc và quy trình hoạt động của Docker.

1, Đặt vấn đề Ở phần 1 mình và các bạn đã cùng có cái nhìn tổng quan nhất về Docker. Tiếp tục loạt bài về Docker, mình và các bạn sẽ cùng tìm hiểu về cấu trúc và hoạt động của Docker. Trong bài viết này chúng ta sẽ cùng trả lời những câu hỏi […]