View Single Post
  #1  
Old 11-21-2024, 03:52 AM
Derfie
Fire Beetle
 
Join Date: Feb 2010
Location: California, USA
Posts: 3
Default Linux Server Install Stall

After two days and a few video on Linux (apt, git & make) I got docker installed using:
https://docs.eqemu.io/akk-stack/installation

I do the
Code:
sudo make install
and it hangs and doesn't go past the below script...

Code:
eq@eq:~/akk-stack$ sudo make install
[sudo] password for eq: 
docker-compose  pull
[+] Pulling 8/8
 ✔ mariadb Skipped - No image to be pulled                                 0.0s 
 ✔ fail2ban Skipped - No image to be pulled                                0.0s 
 ✔ phpmyadmin-proxy Skipped - No image to be pulled                        0.0s 
 ✔ ftp-quests Pulled                                                       1.1s 
 ✔ eqemu-server Pulled                                                     1.3s 
 ✔ backup-cron Pulled                                                      1.2s 
 ✔ phpmyadmin Pulled                                                       1.1s 
 ✔ peq-editor Pulled                                                       1.2s 
Wrote [IP_ADDRESS] = [192.168.1.3] to [.env]
Wrote [PORT_RANGE_HIGH] = [7030] to [.env]
docker-compose  build mariadb fail2ban
[+] Building 0.8s (17/17) FINISHED                               docker:default
 => [fail2ban internal] load build definition from Dockerfile              0.0s
 => => transferring dockerfile: 108B                                       0.0s
 => [fail2ban internal] load metadata for docker.io/crazymax/fail2ban:lat  0.4s
 => [fail2ban internal] load .dockerignore                                 0.0s
 => => transferring context: 2B                                            0.0s
 => [fail2ban internal] load build context                                 0.0s
 => => transferring context: 32B                                           0.0s
 => [fail2ban 1/2] FROM docker.io/crazymax/fail2ban:latest@sha256:f0fc7ed  0.0s
 => CACHED [fail2ban 2/2] COPY jail.local /etc/fail2ban/jail.local         0.0s
 => [fail2ban] exporting to image                                          0.0s
 => => exporting layers                                                    0.0s
 => => writing image sha256:cb179f1f897417b467adabd695c705539a9202e01108f  0.0s
 => => naming to docker.io/library/akk-stack-fail2ban                      0.0s
 => [fail2ban] resolving provenance for metadata file                      0.0s
 => [mariadb internal] load build definition from Dockerfile               0.0s
 => => transferring dockerfile: 341B                                       0.0s
 => [mariadb internal] load metadata for docker.io/library/mariadb:10.5.4  0.4s
 => [mariadb internal] load .dockerignore                                  0.0s
 => => transferring context: 2B                                            0.0s
 => [mariadb internal] load build context                                  0.0s
 => => transferring context: 28B                                           0.0s
 => [mariadb 1/3] FROM docker.io/library/mariadb:10.5.4@sha256:812d3a450a  0.0s
 => CACHED [mariadb 2/3] COPY my.cnf /etc/mysql/conf.d/my.cnf              0.0s
 => CACHED [mariadb 3/3] RUN echo "[mysqld]" >> /etc/mysql/conf.d/my.cnf   0.0s
 => [mariadb] exporting to image                                           0.0s
 => => exporting layers                                                    0.0s
 => => writing image sha256:afb8972c56a48bfdc34ea46fa03652f9d9a3df74fd5be  0.0s
 => => naming to docker.io/library/akk-stack-mariadb                       0.0s
 => [mariadb] resolving provenance for metadata file                       0.0s
make up detached
COMPOSE_HTTP_TIMEOUT=1000 docker-compose  up -d eqemu-server mariadb 
[+] Running 3/0
 ✔ Container akk-stack-mariadb-1       Running                             0.0s 
 ✔ Container akk-stack-eqemu-server-1  Running                             0.0s 
 ✔ Container akk-stack-fail2ban-1      Started                             0.0s 
make up-info
----------------------------------
> Web Interfaces
----------------------------------
> PEQ Editor  | http://192.168.1.3:8081
> PhpMyAdmin  | http://192.168.1.3:8082
> EQEmu Admin | http://192.168.1.3:3000
----------------------------------
Use 'make info' to see passwords
----------------------------------
assets/scripts/env-set-var.pl variable value
docker-compose  exec mariadb bash -c 'while ! mysqladmin status -uroot -pWp2I0iBi2zcMeoFjv1P232Xc70lUB56 -h "localhost" --silent; do sleep .5; done; sleep 5'
Reply With Quote