Alfresco 服务器启动时挂起
Alfresco server gets startup gets hung
我正在尝试启动一个 Alfresco 服务器,但它挂在中间,请看下面的截图,我已经将 Alfresco 实例从一个服务器复制到另一个服务器,我也在 Alfresco 中进行了必要的更改-global.properties.
请帮忙解决这个问题
要备份您的数据库,alf_data您可以下载并运行以下脚本。
http://www.contcentric.com/alfresco-backup/
注意:您必须手动备份 solr4 文件夹中的索引和其他自定义项(如部署的 amps 和 jar)
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.
我正在尝试启动一个 Alfresco 服务器,但它挂在中间,请看下面的截图,我已经将 Alfresco 实例从一个服务器复制到另一个服务器,我也在 Alfresco 中进行了必要的更改-global.properties.
请帮忙解决这个问题
要备份您的数据库,alf_data您可以下载并运行以下脚本。 http://www.contcentric.com/alfresco-backup/ 注意:您必须手动备份 solr4 文件夹中的索引和其他自定义项(如部署的 amps 和 jar)
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.