我是新手,当我尝试配置数据库时,我遇到了问题。我从这里开始执行步骤,但它不起作用,我仍然得到一个错误:无法在此服务器上找到Alfresco。(此应用程序是否可以访问alfresco global.properties?此应用程序是否具有跨上下文权限?)
here is alfresco-global
###############################
## Common Alfresco Properties #
###############################
dir.root=C:/Alfresco/alf_data
alfresco.context=alfresco
alfresco.host=127.0.0.1
alfresco.port=8088
alfresco.protocol=http
share.context=share
share.host=127.0.0.1
share.port=8088
share.protocol=http
### database connection properties ###
db.driver=org.postgresql.Driver
db.username=alfresco
db.password=testinsa
db.name=alfresco
db.url=jdbc:postgresql://172.20.0.71:5433/${db.name}
# Note: your database must also be able to accept at least this many connections. Please see your database documentation for instructions on how to configure this.
db.port=5433
db.pool.max=275
db.pool.validate.query=SELECT 1
# The server mode. Set value here
# UNKNOWN | TEST | BACKUP | PRODUCTION
system.serverMode=UNKNOWN
### FTP Server Configuration ###
ftp.port=21
### RMI registry port for JMX ###
alfresco.rmi.services.port=50500
### External executable locations ###
ooo.exe=C:/ALFRES~1/LIBREO~1/App/libreoffice/program/soffice.exe
ooo.enabled=true
ooo.port=8100
img.root=C:\\alfresco-community\\imagemagick
img.coders=${img.root}\\modules\\coders
img.config=${img.root}
img.gslib=${img.root}\\lib
img.exe=${img.root}\\convert.exe
jodconverter.enabled=false
jodconverter.officeHome=C:/ALFRES~1/LIBREO~1/App/libreoffice
jodconverter.portNumbers=8100
### Initial admin password ###
alfresco_user_store.adminpassword=e32bca6e6d84b73a6278c84bff8242df
### E-mail site invitation setting ###
notification.email.siteinvite=false
### License location ###
dir.license.external=C:/ALFRES~1
### Solr indexing ###
index.subsystem.name=solr4
dir.keystore=${dir.root}/keystore
solr.host=localhost
solr.port.ssl=@@BITROCK_SOLR_SSL_PORT@@
### Allow extended ResultSet processing
security.anyDenyDenies=false
### Smart Folders Config Properties ###
smart.folders.enabled=false
### Remote JMX (Default: disabled) ###
alfresco.jmx.connector.enabled=false发布于 2017-05-19 16:45:12
Alfresco安装程序随PostgreSQL一起提供。安装后,它会将PostgreSQL驱动程序(postgresql-9.4-1201-jdbc41.jar)放在$TOMCAT_HOME/lib中。如果这个库不在那里,那么把它放进去。
发布于 2017-05-30 22:46:46
当您启动
此外,发布来自堆栈跟踪的代码片段通常有助于更快地确定根本原因。
希望这能有所帮助!侧边
发布于 2019-06-12 14:53:43
看起来alfresco global.properties不在正确的位置。将alfresco-global.properties文件放在
<alfresco-home>/tomcat/shared/classeshttps://stackoverflow.com/questions/43996420
复制相似问题