2022-10-03 19:11:52 +02:00
2022-10-03 19:11:52 +02:00
2022-09-26 16:38:19 +02:00
2022-08-27 15:15:32 +02:00
2022-09-26 16:38:19 +02:00
2022-09-25 22:24:13 +02:00

inception

  • change host file in virtual machine to connect to hulamy.42.fr instead of localhost
  • need to put the virtual machine on sgoinfre/goinfre/user/hulamy

questions

  • ? will healthcheck continue after success, every 1 secondes ?
  • ? why http to https redirection doesn't works ?

docker :


nginx


openssl


mariadb

Can't connect to local server through socket '/run/mysqld/mysqld.sock'

sudo / find -type s
/var/lib/mysql/mysql.sock
  • mysqld

    mariadb basic commands :
    • create user :
      # mysql -u root
      use mysql;
      CREATE USER 'some_user'@'%' IDENTIFIED BY 'some_pass';
      GRANT ALL PRIVILEGES ON *.* TO 'some_user'@'%' WITH GRANT OPTION;
      
    • show users :
      SELECT User, Host, plugin FROM mysql.user;
      
    • delete user :
      DROP USER <name>;
      
    • show databases :
      SHOW DATABASES;
      
    • delete database :
      DROP DATABASE <name>;
      

wordpress

Description
No description provided
Readme 2.9 MiB
Languages
Dockerfile 62.6%
Makefile 20.3%
Shell 15.4%
Assembly 1.6%
HTML 0.1%