Skip to main content

/var/run/docker.sock: no such file or directory

 After installing docker you want to try pull the artifact you desire you use by this command:

docker pull <docker-something>

then you face this kind of error:

Post http:///var/run/docker.sock/v1.19/images/create?fromImage=dataplatform%2Fdocker-comp%3Alatest: dial unix /var/run/docker.sock: no such file or directory. Are you trying to connect to a TLS-enabled daemon without TLS?


all you need to do is to restart your VM after installing docker and re-run the same command:


docker pull dataplatform/docker-vertica

latest: Pulling from dataplatform/docker-vertica

77ec837caf85: Pull complete

27fb25a22e6b: Pull complete

668a3fc0cef3: Pull complete

ad221bf67cf4: Pull complete

93f6219c4eb0: Pull complete

6b8b4428ed45: Pull complete

276ef14f1f71: Pull complete

b46224d4af2e: Pull complete

0a46860a1ad8: Pull complete

9331554e6b27: Pull complete

0ec28280d2da: Pull complete

3c92af96e21c: Pull complete

1b2e21c5666c: Pull complete

54ccfcf9041d: Pull complete

9463c76571df: Pull complete

3cb30b167e1b: Pull complete

e7419a9ddeec: Pull complete

7e2236b28157: Pull complete

b3a3dce6a62e: Pull complete

bd3bb667c345: Pull complete

6b50cd3c6589: Pull complete

b3606b0485a6: Pull complete

96a275863173: Pull complete

75e7aac75e8d: Pull complete

720653b28651: Pull complete

97d273412038: Pull complete

7d29c7e1f876: Pull complete

bd2910c22ad3: Pull complete

5163a2d7ffe9: Pull complete

3bca37fba9b4: Pull complete

a6e0e2e3c95d: Pull complete

8164b6665611: Pull complete

7e3325d59d46: Pull complete

cdffa310ea3f: Pull complete

Digest: sha256:1b2aa296d7f0554e5350fec84a11ad49ce2a1e02d4196ce22229593ebbe99ab3

Status: Downloaded newer image for dataplatform/docker-vertica:latest



Comments

Popular posts from this blog

Missing command :fuser Prerequisite check "CheckSystemCommandAvailable" failed

When trying to apply patch you may face this error the solution is described below. ERROR: bash-4.2$ ../opatch apply Oracle Interim Patch Installer version 12.2.0.1.5 Copyright (c) 2016, Oracle Corporation.  All rights reserved. Oracle Home       : /oracle/app/oracle/product/12.1.0 Central Inventory : /oracle/app/oracle/oraInventory    from           : /oracle/app/oracle/product/12.1.0/oraInst.loc OPatch version    : 12.2.0.1.5 OUI version       : 12.1.0.2.0 Log file location : /oracle/app/oracle/product/12.1.0/cfgtoollogs/opatch/opatch2016-07-27_16-27-44PM_1.log Verifying environment and performing prerequisite checks... Prerequisite check "CheckSystemCommandAvailable" failed. The details are: Missing command :fuser Prerequisite check "CheckSystemCommandAvailable" failed. The details are: Missing command :fuser Prerequisite ...

ORA-27104: system-defined limits for shared memory was misconfigured

I faced this error while trying to restore & recover of a PDB (pluggable database) part of the log file and the solution is described here below: log: initialization parameters used for automatic instance: db_name=CDB db_unique_name=gbux_pitr_PDB1_CDB compatible=12.1.0.2.0 db_block_size=8192 db_files=200 diagnostic_dest=/oracle/app/oracle _system_trig_enabled=FALSE sga_target=1888M processes=200 db_create_file_dest=/oracle/auxilary log_archive_dest_1='location=/oracle/auxilary' enable_pluggable_database=true _clone_one_pdb_recovery=true #No auxiliary parameter file used starting up automatic instance CDB RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of recover command at 07/31/2016 16:22:20 RMAN-04014: startup failed: ORA-27104: system-defined limits for shared...

ora-65035 while create pluggable database from another one

or : ORA-21000: error number argument to raise_application_error of -65035 is out of range Cause: this error caused because of an unrecoverable transaction in the source DB. Solution: 1. either stop and start your pluggable source DB 2. identify the open transaction and kill it if you can. use this query to do so: select * from v$transaction t,v$session  s where t.ses_addr = s.saddr;