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

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

mount.nfs: backgrounding

if you face this kind of error with your remote NFS: [root@Vertica000 ~]# mount /files/application/Rremote3 mount.nfs: backgrounding "10.0.0.2:/files/application/remoteFiles" mount.nfs: mount options: "bg,hard,nointr,rsize=65536,wsize=65536,tcp,actimeo=0,vers=3,timeo=600,addr=10.0.0.2" look for the problem in the log file: cat /var/log/messages | grep mount  mount to NFS server '10.0.0.2' failed: timed out, retrying Solution: In most of the cases, you have a problem with your iptables in the destination server login as root to dest server (10.0.0.2) in my case and type this command: iptables --flush  the go back to your origin server to try remount the problematic NFS file system of course this is in case nfs server was installed and functioning properly. Good luck.

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;