Islandora-Devops / isle-dc

ISLE 8 - Dockerized Islandora 8 Deployment orchestrated with docker-compose
MIT License
23 stars 57 forks source link

issue with Installing ISLE Docker Compose #257

Closed tkdhanasekar closed 2 months ago

tkdhanasekar commented 2 years ago

first time installing ISLE Docker compose followed the link to install , https://islandora.github.io/documentation/installation/docker-prereq/ install all dpendencies and

# git clone https://github.com/islandora-devops/isle-dc
# make demo-install-profile

got the error

ERROR 1045 (28000): Access denied for user 'root'@'isle-dc_matomo_1.isle-dc_default' (using password: YES)
make[1]: *** [Makefile:128: drupal-database] Error 1
make[1]: Leaving directory '/root/isle-dc'
make: *** [Makefile:369: demo-install-profile] Error 2

any clues to resolve the issue

noahwsmith commented 2 years ago

Hi there - we're in the middle of fixing some issues, so could you please test with this branch? https://github.com/Islandora-Devops/isle-dc/tree/fixing_initial_install_options referencing https://github.com/Islandora-Devops/isle-dc/pull/248

tkdhanasekar commented 2 years ago
# git clone https://github.com/Islandora-Devops/isle-dc
:~/isle-dc# make demo_islandora_install_profile
make: *** No rule to make target 'demo_islandora_install_profile'.  Stop.

give make error, for

# make demo

or

# make local

or

# make local-install-profile

all gives make error sorry , can i get some clear steps to workout for demo installation

ajstanley commented 2 years ago

after you cd into your new directory run

git fetch *git checkout fixing_*initial_install_options

On Fri, May 13, 2022 at 6:53 AM tkdhanasekar @.***> wrote:

git clone https://github.com/Islandora-Devops/isle-dc

:~/isle-dc# make demo_islandora_install_profile make: *** No rule to make target 'demo_islandora_install_profile'. Stop.

give make error, for

make demo

or

make local

or

make local-install-profile

all gives make error sorry , can i get some clear steps to workout for demo installation

— Reply to this email directly, view it on GitHub https://github.com/Islandora-Devops/isle-dc/issues/257#issuecomment-1125865015, or unsubscribe https://github.com/notifications/unsubscribe-auth/AADY2JYM2YY5XB7WOXZAJVLVJYQ73ANCNFSM5VYHNCEA . You are receiving this because you are subscribed to this thread.Message ID: @.***>

-- Alan Stanley Community Outreach Coordinator Spinal Cord Injury, PEI

902-393-0017

tkdhanasekar commented 2 years ago
:~/isle-dc# git fetch
:~/isle-dc# git checkout fixing_initial_install_options
:~/isle-dc# # make demo
ERROR: for traefik  Cannot start service traefik: driver failed programming external connectivity on endpoint traefik (0639c254c77b6aefdffc80c4ef5c5d9ae6ed5be97dbae1531af60c4d635bc2ed): Error starting userland proxy: listen tcp4 0.0.0.0:80: bind: address already in use
ERROR: Encountered errors while bringing up the project.
make[1]: *** [Makefile:340: local] Error 1
make[1]: Leaving directory '/root/isle-dc'
make: *** [Makefile:326: demo] Error 2

any make command will lead to make error

# make local-install-profile
ERROR: for traefik  Cannot start service traefik: driver failed programming external connectivity on endpoint traefik (e0036732ac8a5b454b1b96a3434152f9c8d0988a2769137a91879d728cb4b759): Error starting userland proxy: listen tcp4 0.0.0.0:80: bind: address already in use

ERROR: for traefik  Cannot start service traefik: driver failed programming external connectivity on endpoint traefik (e0036732ac8a5b454b1b96a3434152f9c8d0988a2769137a91879d728cb4b759): Error starting userland proxy: listen tcp4 0.0.0.0:80: bind: address already in use
ERROR: Encountered errors while bringing up the project.
make: *** [Makefile:369: local-install-profile] Error 1

any more clues , we need some workable documentation to install islandora , kindly provide if i m troubling you sorry

ajstanley commented 2 years ago

Something else is using port 80 on your system - make sure you don't have Apache running, or anything else that might be using that port. There are different ways of determining this depending on your operating system.

tkdhanasekar commented 2 years ago

yes apache using port 80 , stopped it . now the no make error , demo installation went successfully i got message

=========== LOGIN ===========
http://islandora.traefik.me/user/reset/1/secrets/secrets/login
=============================

make[1]: Leaving directory '/root/isle-dc'

but url not opening

http://islandora.traefik.me/user/reset/1/secrets/secrets/login This site can’t be reachedislandora.traefik.me refused to connect. or http://192.46.225.135/user/reset/1/secrets/secrets/login 404 page not found

the installation completes successfully but not opening in browser

ajstanley commented 2 years ago

getting closer! Are you building on your local machine, and if so Windows or Mac?

tkdhanasekar commented 2 years ago

i am building islandora server on cloud instance (linode) and its ubuntu 20.04, any clues resolve the last step thanks for inputs to resolve the make file error

ajstanley commented 2 years ago

This one should be easy - if you want to start over, run make clean, then in your sample.env, change DOMAIN=islandora.traefik.me to DOMAIN=myAWSAddress and rebuild. You should also be able to edit your docker-compose.yml and change every instance of islandora.traefik.me to whatever address AWS gave you, then run docker-compose down, followed by docker-compose up -d.

tkdhanasekar commented 2 years ago

i changed DOMAIN=islandora.hashlabs.in it works fine

Even though i got error in make

Error: Content type islandora_object not defined on https://islandora.traefik.me.

make[1]: *** [Makefile:396: demo_content] Error 1
make[1]: Leaving directory '/root/isle-dc'
make: *** [Makefile:327: demo] Error 2

but my islandora demo server works fine , Thanks for the inputs

$ make demo

only works but below command

$ make demo_islandora_install_profile

not working , plz kindly help in this regard , thanks

rosiel commented 2 years ago

I think the command you want is $ make demo-install-profile

I think it was mis-documented in https://github.com/Islandora-Devops/isle-dc/issues/258

ajstanley commented 1 year ago

This one should be easy - if you want to start over, run make clean, then in your sample.env, change DOMAIN=islandora.traefik.me http://islandora.traefik.me to DOMAIN= and rebuild. You should also be able to edit your docker-compose.yml and change every instance of islandora.traefik.me http://islandora.traefik.me to whatever address AWS gave you, then run docker-compose down, followed by docker-compose up -d.

On Mon, May 16, 2022 at 12:59 PM tkdhanasekar @.***> wrote:

i am building islandora server on cloud instance (linode) and its ubuntu 20.04, any clues resolve the last step thanks for inputs to resolve the make file error

— Reply to this email directly, view it on GitHub https://github.com/Islandora-Devops/isle-dc/issues/257#issuecomment-1127851218, or unsubscribe https://github.com/notifications/unsubscribe-auth/AADY2J3PQBKISVX4PGTWQNDVKJWHNANCNFSM5VYHNCEA . You are receiving this because you commented.Message ID: @.***>

-- Alan Stanley Community Outreach Coordinator Spinal Cord Injury, PEI

902-393-0017

joecorall commented 2 months ago

The make (demo|local) command has been replaced by documentation.

$ make demo
make demo has been removed. To create a demo site, please follow the instructions at https://islandora.github.io/documentation/installation/docker-local/