* [ 1652376 ] Silent install and web port <> 80
This commit is contained in:
parent
95700fa18e
commit
9476cf2687
|
@ -928,8 +928,11 @@ public class ConfigurationData
|
||||||
p_panel.fJavaType.setSelectedIndex(0);
|
p_panel.fJavaType.setSelectedIndex(0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (getJavaHome() == null)
|
||||||
m_javaConfig[index].init();
|
m_javaConfig[index].init();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test Java
|
* Test Java
|
||||||
|
@ -1047,9 +1050,16 @@ public class ConfigurationData
|
||||||
p_panel.fAppsType.setSelectedIndex(0);
|
p_panel.fAppsType.setSelectedIndex(0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (getAppsServerDeployDir() == null ||
|
||||||
|
getAppsServerJNPPort() <= 0 ||
|
||||||
|
getAppsServerSSLPort() <= 0 ||
|
||||||
|
getAppsServerWebPort() <= 0)
|
||||||
m_appsConfig[index].init();
|
m_appsConfig[index].init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test Apps Server
|
* Test Apps Server
|
||||||
* @return error message or null of OK
|
* @return error message or null of OK
|
||||||
|
@ -1333,7 +1343,9 @@ public class ConfigurationData
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if (getDatabasePort() <= 0)
|
||||||
m_databaseConfig[index].init();
|
m_databaseConfig[index].init();
|
||||||
|
|
||||||
if (p_panel != null)
|
if (p_panel != null)
|
||||||
{
|
{
|
||||||
String[] databases = m_databaseConfig[index].discoverDatabases(selected);
|
String[] databases = m_databaseConfig[index].discoverDatabases(selected);
|
||||||
|
|
Loading…
Reference in New Issue