Search the Community
Showing results for tags 'Connect'.
-
Hello, Could I have, please, remote access to the postgresql database from any IP? Server: johnny.heliohost.org Host: mvivanco.heliohost.us Postgresql users: "mvivanco_gisnet_adm". Postgresql database: "mvivanco_gisnet_db". Thanks in advance.
-
Hi, Good morning! I have the problem that I can't connect remotely to the postgres database I made. My connection parameters are: Host: johnny.heliohost.org Port: 5432 dbname: shion_whaticancook Username: shion Password: (correct password) I want access from all IPs Thank you so much for your time and help. I really appreciate it!
- 6 replies
-
- postgresql
- remote
-
(and 1 more)
Tagged with:
-
Hello, I'd like to connect to my database remotely. database: eitan27_<removed> user: eitan27_<removed> host: ricky I am getting: OperationalError: FATAL: no pg_hba.conf entry for host "...", user "eitan27_<removed>", database "eitan27_<removed>", SSL off This should mean that this user needs to be whitelisted for remote access. I would also request that this post be removed or edited after be issue is resolved. (I'm happy to do that, so long as I have privileges to, in order to not expose the host & username to the broader internet). Thanks!
- 2 replies
-
- postgresql
- connect
-
(and 1 more)
Tagged with:
-
Have a nice day. I have the problem that I can't connect remotely to the postgres database I've made My connection parameters are database: enesonme_upcycling user: enesonme_local host: johnny.heliohost.org And the command from debian I'm using is: psql -h johnny.heliohost.org -p 5432 -U enesonme_local -W pwd -d enesonme_upcycling Then the connection responds: psql: FATAL: no pg_hba.conf entry for host "your ip", user "enesonme_local", database "enesonme_upcycling", SSL off I need help. Thanks
- 6 replies
-
- postgresql
- connect
-
(and 2 more)
Tagged with:
-
Hi... Sorry if it's not the rigth forum... Please I need help on this: I'm trying to connect to my postgres database from outside with DBeaver. tommy.heliohost.org:5432 and database, user, etc. from my databse. I get this error: FATAL: no pg_hba.conf entry for host "139.47.19.46", user "urquiza_postgres", database "urquiza_gestoria", SSL on Thanks in advance...
- 2 replies
-
- connect
- postgresql
-
(and 2 more)
Tagged with:
-
Hello I have the problem that I can't connect remotely to the postgres database I've made My connection parameters are database: iamdocto_cerbero user: iamdocto_root host: johnny.heliohost.org
-
HelloI have the problem that I can't connect remotely to the postgres database I've madeMy connection parameters are database: iamdocto_cerberohost: johnny.heliohost.org
- 4 replies
-
- postgresql
- database
-
(and 2 more)
Tagged with:
-
Have a nice day. I have the problem that I can't connect remotely to the PostgresSQL database I've made My connection parameters are: database: divid3d_test user: divid3d_admin host: johnny.heliohost.org getting error: 28000:no pg_hba.conf entry for host "95.49.223.167", user "divid3d_admin", database "divid3d_test", SSL off
- 6 replies
-
- PostgreSQL
- remote
-
(and 1 more)
Tagged with:
-
I have the problem that I can't connect remotely to the postgres database I've made My connection parameters are database: gabriele_postgresuser: gabriele_gianninahost: johnny.heliohost.orgThen the connection responds: psql: FATAL: no pg_hba.conf entry for host "your ip", user "gabriele_giannina", database "gabriele_postgres", SSL off I need help. Thanks
- 12 replies
-
- postgre
- postgresql
-
(and 3 more)
Tagged with:
-
Hello! Please help me to enable remote access to my PostgreSQL.User: tu3sd4yDatabase: tu3sd4y_triply_dataServer: johnny.heliohost.orgThanks
- 3 replies
-
- postgresql
- connect
-
(and 2 more)
Tagged with:
-
Dear HelioNet I have the problem that I can't connect remotely to the postgresql database I've made My connection parameters are database: hadinih_md user: hadinih_user host: johnny.heliohost.org The connection responds: psql: FATAL: no pg_hba.conf entry for host "your ip", user "hadinih_user", database "hadinih_md", SSL off I need help. Thanks
- 4 replies
-
- postgresql
- connect
-
(and 1 more)
Tagged with:
-
Have a nice day. I have the problem that I can't connect remotely to the postgres database I've made My connection parameters are database: ilich_secultura user: ilich_secultura_user host: johnny.heliohost.org And the command from debian I'm using is: psql -h johnny.heliohost.org -p 5432 -U ilich_secultura_user -W pwd -d ilich_secultura Then the connection responds: psql: FATAL: no pg_hba.conf entry for host "your ip", user "ilich_secultura_user", database "ilich_secultura", SSL off I need help. Thanks **edit: host is johnny NOT jhonny. But still not working
- 4 replies
-
- postgresql
- connect
-
(and 1 more)
Tagged with:
-
I am currently using helio to host my database as my other provider doesn't allow me to have remote connections. I require remote connections for my SQL database as i am currently working on a project. This project is a program. The program must be able to access the database and pull and submit values from my database. I am currently making the program in Microsoft Visual C# 2010 Express and i am having issues connecting to the database. here is my current code: static void Main() { using (SqlConnection myConnection = new SqlConnection("user id=lachee_admin;" + "password=SECRETWORDS;server=johnny.heliohost.org;" + "Trusted_Connection=yes;" + "database=lachee_BrutalGame; " + "connection timeout=2")) { try { myConnection.Open(); } catch { MessageBox.Show("Could Not Connect To Database", "Connection Error 001", MessageBoxButtons.OK, MessageBoxIcon.Error); } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Lobby()); } } For some reason, it cannot connect to the database. It states (when not surrounded my try and catch): I am sure that i have allowed remote connection to my database because I have inputted the wildcard (%). Is there anyway to connect? Does helio even support external program connection?
-
i got an error when using mysql_connect() function, this is my code and error info: <?php $conn = mysql_connect('118.114.134.59:3307', 'test', '123456'); if (!$conn) echo mysql_error(); else echo "OK!"; ?> Warning: mysql_connect() [function.mysql-connect]: Can't connect to MySQL server on '118.114.134.59' (4) in /home1/chglove/public_html/test.php on line 2 Can't connect to MySQL server on '118.114.134.59' (4) but if i change the server port to 3306, mysql_connect('118.114.134.59', 'test', '123456'); it worked, and i can connect to my server use port 3307 from other sites, what's the problem? you can use http://blog.chglove.tk/test.php to see this error
-
Warning: mysql_connect() [function.mysql-connect]: User **** already has more than 'max_user_connections' active connections in /home1/*****/public_html/***** on line ** Failed to connect to server. I get this error when I'm trying to access my site. Hosted @ Stevie. When I quickly checked phpMyAdmin, it said that max user connections = 3. I think that is way too low number, even a little forum takes about 10.