fail to connect to local host

User: "dass"
New Altair Community Member
Updated by Jocelyn

Hi everyone,

 

After successfully completing the installation, when i try to login to the browswer, it says the site can't be reached. Can anyone tell me what is the problem??thank you

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "rfuentealba"
    New Altair Community Member
    Accepted Answer

    Hi @dass,

     

    Some will say I'm partial to PostgreSQL. That's an understatement: I'm all in for PostgreSQL. And the reason is that MySQL changes too much. Version 8.0 has changed so many things on the metadata structure that certain software applications that work with that structure stopped working. This piece of code, for example:

     

    09:55:35,715 ERROR [org.hibernate.tool.hbm2ddl.SchemaUpdate] (ServerService Thread Pool -- 52) HHH000388: Unsuccessful: create table ra_ent_dbconnectionentry (id integer not null auto_increment, databaseSchema varchar(255), host varchar(255), name varchar(255), passwd varchar(255), port varchar(255), system varchar(255), usrname varchar(255), propertiesMap_id integer, primary key (id))

     

    It contains a field named system but now it is a reserved keyword, so MySQL cannot create a field with that name. (Try creating a field named CREATE and you will experience the same kind of rejection. Or probably not.). The other errors are derived from this and the fact that MySQL engineers decided not to allow secure connections on untrusted servers.

     

    A piece of advice: use PostgreSQL if you can. If you can't, go with MariaDB. MySQL 8.0 is too flawed to be usable.

     

    Sorry for the bad news, mate! Hope this helps.