Dọn dẹp kho ống kính máy ảnh

Bà con ACE thân mến, hiện mình đang dọn dẹp “cơ cấu” lại cái kho của mình để cho nó chuyên nghiệp hơn. ACE nào yêu thích lens MF thì đây là cơ hội cho mọi người, đây là đồ mình bỏ công sức tuyển lựa sưu tầm dùng để học và sáng tác. Đa số ngoại hình rất tốt, ko phải lens treo đầu dê bán thịt chó ngoài chợ. ACE nào thắc mắc tại sao giá mắc này nọ thì để giải thích đơn giản như vầy. Cái nào cũng có giá của nó. Những lens này cái thời của nó ko hề rẻ, chỉ là bây giờ người ta ko thích cực khổ giống ông bà ngày xưa khi chụp ảnh phải ngồi canh ngồi chỉnh bằng máy cơ tê hết cả đít, Kit lens thì sáng, rõ và nét nhưng 10 cái như 1, ko có bokeh, ko có chất ảnh gì khác người grin emoticon

bà con muốn khác biệt thì cứ Manual Focus lens mà quay tay. Vừa chơi vừa học sẽ thấy giá trị nó khác ngay.

Bạn nào có nhu cầu liên hệ mình qua đt cho lẹ 0909 513 255 (nhắn tin mỏi tay lắm)
https://drive.google.com/open…

1tr3 Beroflex 28mm f2.8 Minolta MD mount

1tr3 Soligor 135mm f2.8 tele-auto Minolta MD mount
1tr8 Minolta mc rokkor-sg 28mm f/3.5 Minolta MD mount
1tr8 Sakar mc 135mm f 2.8 Nikon AI mount
2tr1 Vivitar Series 1 28-105mm F2.8-3.8 FD Mount VMC Macro Focusing Zoom
2tr3 Tokina RMC FAST 35-105mm F3.5 Close Focus Canon FD mount 72mm filter (bị sương ở trong, ra Tèo lau là xong ngay)
2tr5 starblitz 24mm f2.8 macro pentax pk mount
7tr Pentacon 300mm f4 M42 mount 19 Blades
8tr Lester dine Kiron 105mm f2.8 macro 1:1 Minolta MD mount
2tr5 Minolta MC Rokkor-PG 50mm f1.4
7tr5 Panagor PMC Auto Macro 1:1 90mm f2.8 Canon FD mount

900k Industar 50-2 50mm f/3.5 M42 mount

1tr4 Helios 44 2 58mm f2 8 blades M42 mount

1tr7 Helios 44m-4 58mm f/2 M42 mount

1tr5 Pentax SMC-A 50mm f2

Kiron 1tr5 28-210mm f/4-5.6 Macro Konica AR mount

Kiron 1tr5 30-80mm f3.5-4.5 macro PK mount

Kiron 1tr7 80-200 mm f/4 Macro 1:4 Zoom Lens PK mount

Kiron 1tr7 28mm F2 MC FD mount

Kiron 1tr9 28-85mm f/2.8-3.8 macro MD mount

Kiron 2tr2 70-150mm f4 Macro OM mount

Kiron 2tr5 28mm F2 MC PK mount

Kiron 2tr7 70-210mm f/4 macro with zoom lock OM mount

Ubuntu 14.04 – Mysql Galera Cluster for WordPress

This cluster has 2 nodes run in multi master mode

Installing cluster
sudo apt-key adv –recv-keys –keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db
sudo add-apt-repository ‘deb http://mirror3.layerjet.com/mariadb/repo/5.5/ubuntu trusty main’
sudo apt-get update -y ; sudo apt-get install -y galera mariadb-galera-server rsync

Configuring cluster
On each of the host in the cluster add this configuration
vi /etc/mysql/conf.d/galera.cnf
[mysqld]
#mysql settings
binlog_format=ROW
default-storage-engine=innodb
innodb_autoinc_lock_mode=2
query_cache_size=0
query_cache_type=0
bind-address=0.0.0.0
#galera settings
wsrep_provider=/usr/lib/galera/libgalera_smm.so
wsrep_cluster_name=”my_wsrep_cluster”
wsrep_cluster_address=”gcomm://192.20.3.31,192.20.3.32″
wsrep_sst_method=rsync

Stop MariaDB instance in all of the Galera hosts
sudo service mysql stop

Init the Galera cluster on my 1st node by start MariaDB
sudo service mysql start –wsrep-new-cluster

Just start MariaDB on my 2nd node
sudo service mysql start

To prevent startup error on 2nd node we need to copy /etc/mysql/debian.cnf content from node1 to node2 and then restart MariaDB on 2nd node

Confirm cluster status has started
mysql -u root -p -e ‘SELECT VARIABLE_VALUE as “cluster size” FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME=”wsrep_cluster_size”‘
Enter password: 
+————–+
| cluster size |
+————–+
| 2            |
+————–+

From now on the data will sync between both hosts. To test it try create one database from 1st node then go to 2nd node and see it is there.
On 1st node
mysql -u root -p
create database HelloWorld;
On 2nd node
mysql -u root -p
show databases;
if Helloworld database was there. That’s kool. We’re ready to go.

Grant Remote privilege to remote user on DBcluster
On one of the DB host (node1 or node2)
mysql -u root -p
create user ‘handsome’@’%’ identified by handsome_password;
grant all privileges on Database_name . * to  ‘handsome’@’%’;
flush privileges;
show grants for ‘handsome’@’%’;

Note: 
Replace handsome with your username or root
Replace Database_name with your DB name or * to grant privileges on all Database

DNS setting
On my premise DNS server I add a Round Robin DNS record point to 2 Galera host
dbcluster -> 192.20.3.31
dbcluster -> 192.20.3.32

On my PHP app server I can connect to the dbcluster with this command
mysql -u root -p -h dbcluster 

If it not work, you could have a look on MariaDB log

Reference link:
https://www.linode.com/docs/databases/mariadb/clustering-with-mariadb-and-galera