Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kobby

Pages: [1]
1
Backup / Re: Remote Backup with rsync - Problems
« on: May 03, 2015, 02:12:09 PM »
I have checked the access to Hidrive manually:

# rsync -rltD -e "ssh -i /root/.ssh/backup/id_rsa.pub" /backup/ user1@rsync.hidrive.strato.com:/users/user1/server99
Enter passphrase for key '/root/.ssh/backup/id_rsa.pub':
user1@rsync.hidrive.strato.com's password:

-> there is a question for the password of the certificate, but there is no password set during creation of cert
-> there is a question for the password of Hidrive, but there is the certificate

Any ideas?

2
Backup / Remote Backup with rsync - Problems
« on: May 03, 2015, 01:22:55 PM »
Hello,
I am using Strato Hidrive for backup and cannot connect, I get an error:

This I entered in the fields:

Remote Backup:    enabled
Temp Folder:    /tmp
Server IP:    rsync.hidrive.strato.com:/users/user0001/server99
Username: user0001
SSH-Port:    22
Access-Key: (generated)

I uploaded the access key to Strato Hidrive.

When I click on "test connection" I get a error, but I think it is because SSH and RSYNC handle directories in a differrent way:
Connection_Failed

Anyone can tell me, what is wrong?
Is there a way to test the remote backup manually with commandline?

Thank you
Kobby

3
Hello,

I found out, that the problem was the internal IP of Amazon Web Services AWS and EC2 and the elastic IP.
This has to be done:

vi /usr/local/cwpsrv/conf.d/cwp-ssl.conf

Listen 2031
<VirtualHost 123.456.789.012:2031>
        ServerName 123.456.789.012
        SSLEngine on
        SSLCertificateKeyFile /etc/pki/tls/cwp-123.456.789.012.key
        SSLCertificateFile /etc/pki/tls/cwp-123.456.789.012.cert
        SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>

change to:

Listen 2031
<VirtualHost *:2031>
        ServerName *
        SSLEngine on
        SSLCertificateKeyFile /etc/pki/tls/cwp-123.456.789.012.key
        SSLCertificateFile /etc/pki/tls/cwp-123.456.789.012.cert
        SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>

service cwpsrv restart

Now it works fine with https.

regards
Kobby

4
Installation / Access to Centos Web Panel not working with SSL / https
« on: April 29, 2015, 11:36:00 PM »
Hi,

I did fresh install Centos 6 on Amazon EC2, then installed CWP and I can access the webpanel with http.
But not with https. I am using Firefox 37.0.2 on Mac. I get the error message, that the secure connection failed, the connection was interrupted. I also tried with IE and Safari. Same problems.

AWS security is switched off (all traffic allowed) and if try with telnet I get a connection to the port 2031.
I also tried to switch of iptables.

The certificate is in /etc/pki/tls and the config file seems to be okay?
In the panel, I cannot see other problems or errors.

Any ideas?

Thank you
Kobby

Pages: [1]