Unable to establish SSL connection upon wget on Ubuntu 14.04 LTS


Question I tried to download an image through wget but I got an error: Unable to establish SSL connection. wget https://www.website.com/image.jpg --2015-02-26 01:30:17-- https://www.website.com/image.jpg Resolving www.website.com (www.website.com)... xx.xxx.xx.xx Connecting to www.website.com (www.website.com)|xx.xxx.xx.xx|:443... connected. Unable to establish SSL connection. My test case: Using Ubuntu 12.04.4 LTS (GNU/Linux 3.8.0-44-generic x86_64), GNU Wget 1.13.4 built on linux-gnu, I was able to download the image using the code above. No error. Using Ubuntu 14.04 LTS (GNU/Linux 3.…
Read more ⟶

How to resolve error :dbpath (/data/db/) does not exist permanently in MongoDB


Question I have installed mongodb in my Ubuntu 10.04. I know that when it comes to start the mongodb server with the command "mongod",then it expects /data/db folder and it can be easily resolved by creating "/data/db/". One more way is to provide your own path using mongod --dbpath "path",when we intend to give our own custom path for db. But while going through http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/ link i found that there is a configuration file.…
Read more ⟶

Are there any uml tools on Ubuntu ? [closed]


Question Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. </div> Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. Closed 9 years ago. Improve this question Are there any UML tools (as Rose) on Ubuntu?…
Read more ⟶

How to make python3 command run Python 3.6 instead of 3.5?


Question I just downloaded Python 3.6.1, but when I type python3 -V in the terminal it's still Python 3.5.3. How can I make python3 point to Python 3.6? All versions are in the /usr/bin/ directory. Answer do rm /usr/bin/python3 ln -s /usr/bin/python3.6 /usr/bin/python3 much better solution: Damn, Python is used throughout much of Ubuntu for system scripts and software, and software relies on having Python (and the commands to start Python) in a certain spot.…
Read more ⟶

Docker pull error : x509: certificate has expired or is not yet valid


Question Description of problem: I'm trying to pull ubuntu from the public registry with this command : docker pull ubuntu And then i got this results (the previous command was working yesterday) : "Error while pulling image: Get https://index.docker.io/v1/repositories/library/ubuntu/images: x509: certificate has expired or is not yet valid" docker version : Client: Version: 1.10.0 API version: 1.22 Go version: go1.5.3 Git commit: 590d510 Built: Thu Feb 4 18:36:33 2016 OS/Arch: linux/amd64 Server: Version: 1.…
Read more ⟶

how to search for a directory from the terminal in ubuntu


Question I am using Ubuntu and I want to search for a specific Directory called "sdk". All that I know is, that "sdk" Directory is located somewhere under /user Directory how can I search for "sdk" Directory from the terminal? I tried the following find / -name example docs -type d but it says no such file or Directory. Answer you can search for directory by using find with flag -name…
Read more ⟶

Maven 3.8.0 Compiler - Fatal error compiling: release version 11 not supported


Question I'm unable to build using Java 11 with the latest version of the maven-compiler-plugin. pom.xml: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <release>11</release> </configuration> </plugin> <plugins> <build> when I try to build using Maven: ➜ mvn clean compile [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building service 0.0.1-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-compiler-plugin:3.8.0:compile (default-compile) @ service --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 80 source files to /home/mip/service/target/classes [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.…
Read more ⟶