Alfresco服务器启动挂起

Alfresco服务器启动挂起,alfresco,Alfresco,我正在尝试启动Alfresco服务器,但它被挂起,请参见下面的屏幕截图,我已将Alfresco实例从一台服务器复制到另一台服务器,我还对Alfresco-global.properties进行了必要的更改 请帮忙 要备份数据库和alf_数据,您可以下载并运行以下脚本。 注意:您必须手动备份solr4文件夹和其他定制(如amps和jar部署)中的索引 遵循露天还原步骤 1.安装新的alfresco实例。不要启动服务器 2.使用以下命令启动postgresql ./alfresco.sh启动post

我正在尝试启动Alfresco服务器,但它被挂起,请参见下面的屏幕截图,我已将Alfresco实例从一台服务器复制到另一台服务器,我还对Alfresco-global.properties进行了必要的更改

请帮忙


要备份数据库和alf_数据,您可以下载并运行以下脚本。 注意:您必须手动备份solr4文件夹和其他定制(如amps和jar部署)中的索引

遵循露天还原步骤
1.安装新的alfresco实例。不要启动服务器
2.使用以下命令启动postgresql
./alfresco.sh启动postgresql
3.转到/postgresql/bin
4.运行以下命令
psql-U露天-h-p端口
e、 g.psql-U alfresco-h localhost-p 5422
5.它会要求您设置密码,输入密码并记住它
6.运行以下命令
psql-U alfresco-h-p端口<转储文件
e、 g.psql-U alfresco-h localhost-p 5422 alfresco
您是如何复制实例的?您必须将alf_数据、索引和数据库以及自定义项迁移到新的alfresco实例。我将已安装的alfresco文件夹从c驱动器复制到所需服务器的c驱动器,并将alf数据文件夹复制到相应的文件夹中。然后启动了服务器。为什么会有这么旧的Tomcat版本?这是什么版本的露天?谢谢你的回答。有一个问题,我可以为content store的dir.root变量提供alfresco-global.properties中的共享驱动器路径吗。
Follow the alfresco restore steps 
1. Install new alfresco instance. Do not start server
2. Start postgresql using the following command
    ./alfresco.sh start postgresql
3. Go to the <ALF-HOME>/postgresql/bin
4. Run the following commmand
    psql -U alfresco -h <hostname> -p port
    e.g.  psql -U alfresco -h localhost -p 5422
5. It will ask you to set the password, enter the password and remember it
6. Run the following command

     psql -U alfresco -h <host> -p port <dbname> < dumpFile
     e.g.     psql -U alfresco -h localhost -p 5422 alfresco < /opt/migration-backup/01-10-2018-15-54-47/database/alfresco_db_dump

7. You will notice the multiple tables and index are created
8. Start the tomcat using the following command

     ./alfresco.sh start tomcat

9. Test your migration.