Skip to content

Instantly share code, notes, and snippets.

View SofijaErkin's full-sized avatar
🎯
Focusing

Vittore Marcas SofijaErkin

🎯
Focusing
View GitHub Profile
@SofijaErkin
SofijaErkin / MongoDB_macOS_Sierra.md
Created December 4, 2021 12:37 — forked from nrollr/MongoDB_macOS_Sierra.md
Install MongoDB on Sierra using Homebrew

Install MongoDB on macOS Sierra

This procedure explains how to install MongoDB using Homebrew on macOS Sierra 10.12.
Official MongoDB install documentation: here

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
@SofijaErkin
SofijaErkin / mac-redis-cluster.md
Created December 8, 2021 06:36 — forked from ochim/mac-redis-cluster.md
Mac OS X で Redis Clusterを組む

開発環境

  • Mac:10.12.6
  • redis:4.0.0
  • ruby:2.0.0p648

1サーバで3台のRedis Clusterを作る(最低3台かららしい)

1.ディレクトリの用意

@SofijaErkin
SofijaErkin / nginx_config.md
Created December 9, 2021 10:59 — forked from Mioke/nginx_config.md
Mac OS下安装及配置nginx
@SofijaErkin
SofijaErkin / 0_reuse_code.js
Created December 9, 2021 12:32 — forked from WouterPeeters/0_reuse_code.js
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@SofijaErkin
SofijaErkin / install_nginx_macos_source.md
Created December 9, 2021 13:59 — forked from beatfactor/install_nginx_macos_source.md
Install Nginx on Mac OS from source (without brew)

Install Nginx on Mac OS from source

no Homebrew required

1. Download Nginx

$ cd /usr/local/src
$ curl -OL http://nginx.org/download/nginx-1.12.2.tar.gz
$ tar -xvzf nginx-1.12.2.tar.gz && rm nginx-1.12.2.tar.gz
@SofijaErkin
SofijaErkin / nginx_manually_mac.md
Last active May 5, 2023 00:47
Mac install Nginx mannually Or Nginx manually mac

Nginx manually(mac)

Why download Nginx manually?

My mac system is too low! My Xcode software version is too low!

My homebrew does not support downloading Nginx (because homebrew requires me to upgrade the computer system and Xcode software version, but I don’t want it, I just don’t)!

@SofijaErkin
SofijaErkin / redis_manually_mac.md
Created December 13, 2021 11:13
Mac manually install redis Or Redis manually mac

Redis manually(mac)

0.Please enter the redis installation directory

cd /usr/local/

@SofijaErkin
SofijaErkin / mongodb_manually_mac.md
Last active December 14, 2021 02:39
Mac manually install mongodb Or MongoDB manually mac

MongoDB manually(mac)

1.download mongodb;

MongoDB provides a 64-bit installation package on the OSX platform, you can

download the installation package on the official website.

@SofijaErkin
SofijaErkin / mysql_manually_mac.md
Last active December 14, 2021 03:32
Mac manually install mysql Or MySQL manually mac

MySQL manually(mac)

1.download

There are three ways to install MySQL on MacOS: Install using Docker; Use

Homebrew to run brew install mysql to install; Use the installation package

@SofijaErkin
SofijaErkin / compile_c++11_manually.md
Last active December 27, 2021 06:39
Configure C++11 compilation environment Or Manually compile C++11

Compile C++11 manually

Have you ever encountered such a problem?

Take mine as an example:

#include <iostream>