-
Posts
25,373 -
Joined
-
Last visited
-
Days Won
909
Everything posted by Krydos
-
Well, since I already deleted the block I don't know when for sure it happened. If you get blocked again let us know, and make sure you say in your post not to delete the block before Krydos has a chance to look at the logs. Any admin can remove the block for you, but figuring out why you're being blocked is going to take some log reading. I looked through the logs a bit and I found a couple messages from facebook and twitter to you, but no failed logins. If I knew the time that you were blocked I could try to figure out why.
-
Out of curiousity I looked up the exact time that your account was suspended and compared it to the server monitor for Johnny. Even without the black line marking when your account was suspended you can see the difference.
-
Deployed. http://rajesha1.heliohost.org/FINTECH-PROJECTS/
-
Do you know if you got blocked while your account was inactive or before or after?
-
/home/mediaku/public_html/video-download/getvideo.php Why not download your videos directly to your computer instead of getting suspended over and over?
-
Tommy blocked you for too many failed IMAP logins. Make sure you have the right password saved in any mail clients you may be using. I removed the block for you. Can you connect now?
-
I'm Getting An Error Trying To Connect To A Postgresql Database
Krydos replied to dranser's topic in Customer Service
Does it work now? -
The show processlist command will show something like this: mysql> show processlist; +---------+----------+-----------+----------+---------+------+-------+------------------+ | Id | User | Host | db | Command | Time | State | Info | +---------+----------+-----------+----------+---------+------+-------+------------------+ | 6039687 | cmh_user | localhost | cmh_data | Sleep | 9001 | | NULL | | 6039688 | cmh_user | localhost | cmh_data | Sleep | 9002 | | NULL | | 6275255 | cmh_user | localhost | cmh_data | Sleep | 9003 | | NULL | | 6396731 | cmh_user | localhost | cmh_data | Sleep | 9004 | | NULL | +---------+----------+-----------+----------+---------+------+-------+------------------+ Then to close the connection type kill 6039687; Where that number is the ID of the connection. However, if you already have the maximum number of connections open you won't be able to connect to issue those commands... So, just close your connections in your code.
-
Deployed. http://rajesha1.heliohost.org/FINTECH-PROJECTS/
-
Log in to mysql and run the query: show processlist; Depends on the language you're using. In php you could do something like // open the connection $con = new mysqli('localhost', $db_user, $db_pass, $db_data); // query // close the connection $con->close();
-
Deployed. http://rajesha1.heliohost.org/FINTECH-PROJECTS/
-
Well, the most common reason for the max_user_connections error is if you don't close your open mysql connections. For instance, right now you have four open connections that haven't transfered any data in almost two and a half hours! If you would just close those connections after the query then you wouldn't get that error. Don't worry I closed them all for you so you shouldn't be getting that error right now (until you open them all up again without closing them.) As far as the cronjob goes I would create the cron with a command similar to 23 23 * * * /bin/bash /home/cmh/public_html/cron.sh That means at 23:23 each day it will run that command and email you any output. And inside cron.sh put something like #!/bin/bash mysql --host=localhost --user=cmh_user --database=cmh_db --password=bestpasswordever --execute="update mytable set mytable.somedata = '1' where mytable.id = '1'" Let us know if you have any other questions.
-
Deployed. http://rajesha1.heliohost.org/FINTECH-PROJECTS/
-
How To Connect Jsp With Mysql Database In Heliohost
Krydos replied to national's topic in Website Management and Coding
Did you notice that this thread was from almost 4 years ago? It's highly unlikely he's spent the last 4 years trying to figure it out, but I guess if anyone searches and finds this thread it is good advice. -
What is the exact error?
-
The postgresql user akaboshi_admin can now connect remotely to the postgresql akaboshi_test from any IP.
-
Python 3.6.1 is installed on Ricky at /usr/bin/python3.6 Flask is installed. You should be able to follow this little tutorial http://www.helionet.org/index/topic/27822-how-do-i-use-flask-on-johnny/?p=128919 to get a flask webapp that looks like this https://krydos1.heliohost.org/flask/ Have fun, and let me know if you have any issues.
-
On June 2nd Johnny blocked for too many failed ftp logins. I have removed the block. Are you able to connect now? The most common reason for failed FTP logins is if you save your password in your FTP client and then change your password without updating the FTP client. A lot of clients will just try the wrong password over and over like that. Let us know if you need any other help.
-
It should be fixed now. If you're still seeing the inactive message be sure to clear your browser cache.
-
Yeah, apache has been kind of wonky the last 24 hours. Too many restarts probably with the new archived state.
-
Does this help? http://www.helionet.org/index/topic/27730-jsp-and-mysql-question/?p=126685
-
There you go http://rovapps.heliohost.org/
-
Ok, FINTECH-PROJECTS.war does exist. Fintech-Projects.war as you said before does not exist. Deployed. http://rajesha1.heliohost.org/FINTECH-PROJECTS/
-
# ./deploy_java rajesha1 Fintech-Projects User rajesha1 found. Unable to find file: Fintech-Projects.war Usage: deploy_java <username> <.war file> Make sure /home/rajesha1/Fintech-Projects.war exists.
-
I have no idea what 159.233.244.50 is. Tommy is 65.19.143.6. I wonder if the library has something blocking you?
