2022-10-22 14:15:43 +02:00
2022-10-22 14:15:43 +02:00
2022-10-22 14:15:43 +02:00
2022-10-22 14:15:43 +02:00
2022-10-22 14:15:43 +02:00
2022-10-22 14:15:43 +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 32 MiB
Languages
PHP 62.3%
JavaScript 28.3%
CSS 8.1%
Makefile 1.3%