I'm having some difficulty getting WinSCP to connect to my server can anyone help?
Printable View
I'm having some difficulty getting WinSCP to connect to my server can anyone help?
Some details would be neat...
http://i182.photobucket.com/albums/x...3/6f1aad08.png
http://i182.photobucket.com/albums/x...3/aa5c79c8.png
=D there ya go lol
have tried several usernames and passwords.....
Check if your release is set to that IP, and if apache is started.
And what do you mean with "I tried multiple IPs" ?!
Dude, I think you dont really know what your doing, inform yourself about the password of the release you use.
For hrace009 release, password is hrace009.
I have already logged into my server and played the game.
I have already had someone else log into my server and play.
I have not tried multiple IPs, other than the servers local and public IPs, I have tried multiple Usernames and Passwords be cause I don't know what password it is asking for.
This is 343's release "¤ The Complete PW Package ¤" and I have looked at his post for usernames and passwords, most of them are "root, root" or "pwAdmin, root", however they have not worked.
I have tried my username and password "root, ***********" and it failed to connect.
If you have anymore questions please ask. :):
lol everything is running, how do i start something that is already running? xD
---------- Post added at 04:40 PM ---------- Previous post was at 03:28 PM ----------
:glare: and now im apparently blocked because
:(: really need some helpCode:1129 - Host '192.168.1.10' is blocked because of many connection errors;
unblock with 'mysqladmin flush-hosts'
Okay, first in order to connect WinSCP, which uses port 22 you need to have the openssh server running, you can check by:
ps -aux |grep ssh
if you do not see openssh running, install one by:
apt-get install openssh-server
Once installed you can try reconnecting again.
For MySQL default install does not permit root to be accessed outside localhost (127.0.0.1), you might want to add a user that has privilege to that database, connecting to your IP only.
If all else fails, go:
ufw allow 22
ufw allow from YOUR_IP_HERE
then optionally:
ufw allow from YOUR_IP_HERE to any port 22
MAKE SURE ALL PASSWORDS ARE CORRECT.
make sure ssh is installed, and use sftp to connect, try command
apt-get install openssh-server
this should let you connect.
------------------
edit:
i just noticed fluxbox's comment, so yeah exactly what he said.
and for me when i couldnt connect to mysql even when i added approved login credentials and stuff, it was because mysql was preset to local host connections only.
for further reminder just remember
apt-get install openssh-client
apt-get install openssh-server
login with root and the password for root.
should work right away
didnt read alot of the comments as it lost interest
hopefully this helps for a reminder
I can't help but notice that some of you are running things in linux very insecure. One, do not connect to ssh or logon as root, two, secure your MySQL, do not connect as root (again), do not open it to the public. Three, make good use of firewall, iptables (search here, I think I posted a basic firewall rules to get you started).