2022-10-22 20:02:47 +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 6.4 MiB
Languages
PHP 46.7%
JavaScript 28.6%
Dockerfile 8.7%
CSS 8.2%
Shell 4.1%
Other 3.7%