Ubuntu :: Error Server:> Openssl S_client -connect Pop.gmail.com:995 -showcerts
Nov 10, 2010
I am using fetchmail (with ssl support) to download my e-mail. About a week ago, the downloading from two servers stopped, among them gmail.com, due to an ssl error. Usually that means updating the ssl fingerprint in fetchmail.conf, and when I wanted to do this I discovered that there seems to a issue with openssl.
When I do openssl s_client -connect pop.gmail.com:995 -showcerts I now get an error
server:> openssl s_client -connect pop.gmail.com:995 -showcerts
CONNECTED(00000003) 5448:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:s23_lib.c:188:
Ubuntu 8.04 (2.6.24-28-server #1 SMP Sat Oct 16 17:53:34 UTC 2010 i686 GNU/Linux)OpenSSL 0.9.8g 19 Oct 2007
Can anybody explain to me what the error means and how to fix it?
View 1 Replies
ADVERTISEMENT
Jul 5, 2010
I'm try to connect to pop.gmail.com via openssl usingopenssl s_client -connect pop.gmail.com:995and i always have one error socket: Connection refusedconnect:errno=29what can i do to make it work?
View 5 Replies
View Related
Sep 19, 2010
for like two weeks I have been trying to send email using evolution for some reason I always get the same Code: Could not connect to smtp.gmail.com: Input/output error
View 6 Replies
View Related
Nov 1, 2010
I'm using CentOS 5 with WHM & exim 4, & when I configured exim to use gmail as an outgoing mail server I got this error:
Code:
2010-10-13 20:20:33 1P64vN-0002h0-7v ** email@domain.com R=send_via_gmail T=gmail_smtp: SMTP error from remote mail server after MAIL FROM: SIZE=5387: host gmail-smtp.l.google.com [**.**.**.**]: 530-5.5.1 Authentication Required.
Learn more at 530 5.5.1 [URL]
Only debian solutions & paths that doesn't exist in my servers.
View 2 Replies
View Related
Oct 28, 2010
I would like to send emails form my server using my gmail account.Does anybody know how to do it?
OS = OPENSUSE 11.3 server installation - NO GUI....
View 9 Replies
View Related
Sep 24, 2011
every time I try to connect to the ftp server I setup i am recieving this error Response:*** buffer overflow detected ***: /usr/sbin/vsftpd terminated Error:Could not connect to server
View 1 Replies
View Related
Jul 24, 2010
I've spent ages trying to get evolution & Gmail to talk to each other. Whenever I press Send/receive it tries then I get 'Error while Scanning folders in "IMAP server imap.gmail.com" '. I've tried changing the ports etc, deleting the account from evolution and redoing it. I've looked thru various forums and walkthroughs. I've checked that the right password is stored in the keyring. I'm sure all my settings are right, but evolution can neither sync with my inbox nor send emails.
I have synced my google contacts and calendar with evolution, however. I use my Gmail on a variety of devices so I don't want to use POP and in any case SMTP isn't working either. I'm running ubuntu 10.04 on an acer 5738 thru a not particularly fast ADSL connection.
View 4 Replies
View Related
Jan 23, 2010
I cannot use cvs within eclipse to connect to the server, but when I use cvs in terminal everything works fine.
ERROR Message: Could not connect to :extssh:hongyang@bleong.ndslab.net:/var/cvsroot: CVS communication error: org.eclipse.team.internal.ccvs.ssh2.CVSSSH2ServerConnection$SSH2IOException: Network is unreachable
Network is unreachable
View 6 Replies
View Related
Mar 17, 2011
this is my first post i have this error in ./configure for bind 9.7.3: checking for OpenSSL library... using OpenSSL from /usr/lib and /usr/includechecking whether linking with OpenSSL works... yeschecking whether linking with OpenSSL requires -ldl... unknown configure: error: OpenSSL has unsupported dynamic loading
View 1 Replies
View Related
Jan 9, 2010
I'm on a fresh Ubuntu 9.10 x86_64 install and I'm trying to configure Evolution to grab my email from Gmail using IMAP.
For receiving mail my server is set to imap.gmail.com:993 and my user name is ___@gmail.com
I'm using SSL and the authentication type is "Password"
If I click the "Check for supported types button, the "Please wait. Querying server for a list of supported authentication mechanisms." window pops up, but it never finishes.
When I try to sync my mail, evolution doesn't ask for my password, and the send and receive mail window displays my account as "Scanning folders in "IMAP server imap.gmail.com" indefinitely.
Running Evolution from the terminal doesn't seem to print any IMAP related errors only
Code:
** (evolution:5565): CRITICAL **: atk_object_set_name: assertion `name != NULL' failed
POP works fine, but that isn't really an option.
View 4 Replies
View Related
Apr 1, 2010
I want to recompile Apache in order to be SNI supportive because I need to use ssl named based virtual host:
I referred to the following links:
[URL]
I installed the latest version of openssl which is now openssl-1.0.0 I ran the following commands:
./config enable-tlsext --prefix=/usr/local2 --openssldir=/usr/local2/openssl
make
make test
make install
then to recompile apache with new SNI support I ran the following:
./configure --enable-so --enable-ssl --enable-rewrite --enable-unique-id --with-ssl=/usr/local2/openssl
make
make install
After that when I start Apache: /usr/local/apache2/bin/apachectl -k start I get the following error:
SSLStrictSNIVHostCheck failed; OpenSSL is not built with support for TLS extensions and SNI indication. Refer to the documentation, and build a compatible version of OpenSSL.
View 11 Replies
View Related
Jul 14, 2010
I got an task assigned to me, i have to create new ssl key, csr & crt files using openssl. But the file name must be of this kind (*.aaa.xx.aa). When I tried the file name starting with * its not accepting the file name. But when I tried with the file name starting with . its getting generated.
View 1 Replies
View Related
Jan 18, 2011
I inherited a project that someone built in lampp, and I need create new SSL certs.
So I go to do so and it says that OpenSSL is not installed and to apt-get and install it.(Ubuntu by the way)
So before I did so, I wondered if it would cause any problems...since it was supposed to be part of the lampp stack.
View 3 Replies
View Related
Feb 25, 2010
I would like to encrypt and decrypt zip file using OpenSSL keys. I have generated the keys and can encrypt normal text files but if I try to encrypt the zip file, I get error: "Error reading input Data" Following is what I have done.
generate keys:
Code:
openssl genrsa 4096 > private-key.pem
openssl rsa -pubout < private-key.pem
openssl rsa -pubout < private-key.pem > public-key.pem
encrypt the file:
Code:
openssl rsautl -encrypt -pubin -inkey public-key.pem -in test.zip test.zip.encrypted
I must use public/ private key pair (without any password) and I must use OpenSSL. But I can use any algorithm other than RSA (not sure which one to use and how).
View 3 Replies
View Related
Jan 7, 2011
I am merely trying to change the port for my ssh server.However it isn't changing.I edited my ssh_config file to:
Code:
# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for[code]...
When i try to connect to my server via port 443 i get a connection refused error. However when i try to connect via port 22 it connects. Since that didn't work, i tried restarting the entire server.To restate, i changed the config file and restarted ssh then the computer, however the port didn't change.Ohh and yes my router is set to port forwarding on port 443, though it doesn't matter since I'm inside the network.
View 2 Replies
View Related
Apr 17, 2011
In Gnome Places->Connect To Server dialog, I am having problem using the Custom Location Service Type. I enter in the URI as
Code:
smb://username:password@ipaddress/share_name
I get an pop up error message that says:
Quote:
Cannot Connect To Server. You must enter a name for the server.
Which would be fine if there was actually a place for me to enter the name which there is not. What am I doing wrong. This is the first time I have tried using the Connect To Server dialog. Normally I just use a script I wrote to mount my share in a folder on my local drive as some programs cannot access the mounted network folder. In a browser all I have to do is:
Code:
smb://ipaddress/share_name
I tried using Windows Shares, but that did not work either. It does work if I click on network and access the share that way, but some programs like firefox and a few others that I want to save a file to my network drive do not show the network unless the share is mounted in a folder. So, I wrote a script:
Code:
#!/bin/sh
#mount ext storage drive
mount -t cifs //192.168.0.2/files -o username="username",password="password" /mnt/files
This works and I can use this, but it would be handy if I could just use the Connect To Server dialog.
View 3 Replies
View Related
Nov 3, 2010
For some years now I have been able to use openssl (apache-mod_ssl) to process encrypted traffic because I had, in effect, only one host - the main server - as the sole entry in our ssl_vhost.conf file.
Now we are working toward serving a couple of more secure sites for closely related organizations, but with their own distinct identities. This, in the past, would have meant additional static IPs with matching nic cards for starters. But my understanding is that since 2007/8 we have been able to use gnutls (apache-mod_gnutls) which gets around the old problem of Apache not being able to direct name-based traffic because that would not yet have been decoded. This is referred to as SNI - Server Name Indication.
Here my confusion begins. Is there an overlap between SSL and TLS? For instance, I would have generated RSA keys and a self-signed certificate with the genrsa command. Is this sufficient for gnutls or does it need to generate its own keys and certificates? I realize gnutls is relatively a new kid on the block but it is appealing and I'd like to give it a try.
I am working with the Mandriva/Mageia cooker with an x86_64 architecture so all packages are up-to-the-minute.
View 3 Replies
View Related
Mar 28, 2010
Im getting this error when i try to run mysql from a shell
Code:
ERROR 2002 (HY0000): can't connect to local MySQL server through socket
I have installed MySQL over yum on fedora.
but the path and file /var/lib/mysql/mysql.sock does not exist on my system?
View 3 Replies
View Related
Apr 11, 2010
I've tried /etc/init.d/mysql start, and it actually starts, or at least, it doesn't error out. But when I do pgrep mysql I get nothing, and when I try to login with mysql -p as root, I get
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
None of my other logins work, either, but since pgrep mysql didn't work, it's clear that MySQL just isn't running. I tried uninstalling and reinstalling mysql-server via apt-get, but I get the same thing. The logs in /var/log/syslog show this:
Apr 11 14:31:26 /etc/init.d/mysql[9774]: #007/usr/bin/mysqladmin: connect to server at 'localhost' failed
Apr 11 14:31:26 /etc/init.d/mysql[9774]: error: 'Can't connect to local MySQL server
[code].....
View 3 Replies
View Related
Jul 28, 2010
I am not able to connect samba server from other linux pc giving error: NT Authentication Failure
But am able to access through anonymous login from linux Same is working fine will all smb users through windows. I am using rhel 5.
View 3 Replies
View Related
Apr 24, 2011
I have an e-mail production server that has been running fine for almost two years.
Notice mail was not serving today and login to a bunch of errors in messages
However, I think they are all from not being able to access MySQL and when I:
mysql -u root -p
I get:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (111)
View 5 Replies
View Related
Jul 27, 2010
use any browser and go to gmail. i can't get gmail to load. if i browse on videos, links to videos don't work. they appear to be taking a long time to buffer, then a message appears saying to try again. sometimes, links on google search pages are all dead. yahoo mail loads as far as logging me in, then i get a page with all dead links.
i'm using a laptop at several locations that have free public wifi. at some places, everything works perfectly normally. at other places, google and yahoo are almost useless. the "bad" places work just fine under ms windows.
so i figure it's a networking/handshaking issue, but that's all i can figure. i need help to troubleshoot it further. if it's happening to me, it has to be happening to other people, and i consider it a major hassle.
View 9 Replies
View Related
Nov 8, 2010
My college internet providers shifted to a different setting.. defined in the changing lan proxy settings on the user end. I.e.ip - 192.168.0.200 and port to 3000. This to reduce misuse of the net connection ..The thing is, since then, every other website is working, except GMail. It isnt blocked, the Nebero page shows up for blocked sites. When attempting to open gmail, the default internet page shows up for unavailability of page owing to no or slow response from the server, or the firewall or proxy settings not appropriately configured. I cannot open gmail, the connection on empathy im. I cant ping gmail either. No response. What can be the problem.
View 9 Replies
View Related
Feb 7, 2010
I have openssh installed and it works great right out of the box. However, I don't want people accessing everything on my machine. My machine is behind NAT and ufw firewall. I have configured both so that port 22 is open. I've added the new users I want to have limited access and assigned them to group "sambashare" (just because its convenient.)
When the bottom bit of my config file "/etc/ssh/sshd_config" is set as shown below, everything works great:
Quote:
#Subsystem sftp /usr/lib/openssh/sftp-server
Subsystem sftp internal-sftp
UsePAM yes
Match Group sambashare
[code]...
Whenever I make the change to enable "ChrootDirectory" so that it limits the users access, I simply remove the # and it looks like this:
Quote:
#Subsystem sftp /usr/lib/openssh/sftp-server
Subsystem sftp internal-sftp
UsePAM yes
Match Group sambashare
[code]...
However, thats when I start running into problems. When I try logging in with Filezilla; I am not able to connect and this is the response I get from Filezilla:
Quote:
Status: Connecting to ##.###.###.###...
Response: fzSftp started
Command: open "user@##.###.###.###" 22
[code]....
Error: Could not connect to server
View 6 Replies
View Related
Jan 5, 2011
The problem is here:When I was open gmail in my system Certificate Error is coming. The error details:
This Connection is Untrusted You have asked Firefox to connect securely to url, but we can't confirm that your connection is secure. Normally, when you try to connect securely, sites will present trusted identification to prove that you are going to the right place. However, this site's identity can't be verified.
What Should I Do? If you usually connect to this site without problems, this error could mean that someone is trying to impersonate the site, and you shouldn't continue.
code....
View 7 Replies
View Related
Oct 11, 2010
I have implemented SugarCRM on a SUSE 10 box . Every thing goes ok but in the SugarCRM ,it's saying :
Error: Could not connect to the Sugar Server. Please check your Proxy Settings value in the System Settings admin panel. Last attempted connection @ 10/11/2010 06:37pm and unable to setup email inside that.
But the system is neither have proxy setting and internet runs fine outside SugarCRM. In RHEL, CentOS all run ok but not in SUSE ?
View 4 Replies
View Related
Mar 22, 2011
I am getting this error when I try to connect to my MySQL database from a PHP page. MySQL is working fine on it's own and PHP is working on it's own. "Fatal error: Call to undefined function mysql_connect() in /usr/local/htdocs/test.php on line 11" I have found instances on the Internet where other people had the same problem but from everything I've read, none of it appears to do anything for me. I have read that I need the "extension=mysql.so" in my php.ini file and to uncomment it but it's not in there and I don't even have the "mysql.so" file. Many people have said to install the MySQL "devel" package, which I have also done and it is still not adding the file. (Tried "rpm -i php-mysql") I have also tried running the PHP ./configure again with the "--with-mysql". After all of these I still can't seem to get any further than I was when I found out I had a problem
View 10 Replies
View Related
Feb 23, 2010
We have Exchange as our Mailbox server > Qmail as our SMTP server > and we use postini for filtering. We recently got word from a customer that he received a "451 error - can't connect to server" message from Postini - stating that the server is unreachable. This does not happen often so obviously Postini can connect to the qmail server. Are there logs that I can look at to find out why and when these would occur?
View 1 Replies
View Related
May 6, 2010
I get this error ALL THE TIME after a reboot if I try to print. Going to the printing applet to add the printer does no good because Lucid is not connected to the CUPS server. I found that the work-around below fixes the issue for the current session.
Code:
sudo aa-complain cupsd
sudo /etc/init.d/cups restart
[code]....
View 9 Replies
View Related
Oct 11, 2010
I have implimented SugarCRM on a SUSE 10 box . Every thing goes ok but in the SugarCRM ,it's saying :
Quote:
Error: Could not connect to the Sugar Server. check your Proxy Settings value in the System Settings admin panel. Last attempted connection @ 10/11/2010 06:37pm and unable to setup email inside that. But the system is neither have proxy setting and internet runs fine outside SugarCRM. IN RHEL,CentOS all run ok but not in SUSE ?
View 3 Replies
View Related