How to install mongoDB on Manjaro 21 Ornara
- Enable AUR
- Make sure system is up to date
sudo pacman -Syu
- To install, use the following command:
pamac build mongodb-bin
pamac build mongodb-tools-bin
pamac build mongodb-compass
function checkProperties(obj, email) { | |
let fullname = ""; | |
for (var key in obj) { | |
if (obj[key] !== null && obj[key] != "") | |
fullname = obj[key]; | |
break; | |
} | |
if (fullname != "") { |
How to install mongoDB on Manjaro 21 Ornara
sudo pacman -Syu
pamac build mongodb-bin
pamac build mongodb-tools-bin
pamac build mongodb-compass
sudo apt-get remove nginx-core nginx-full nginx-light nginx-extras nginx-common |
Error Message: | |
"refusing to merge unrelated histories" | |
Fix: | |
git checkout master | |
git merge origin/master --allow-unrelated-histories | |
git add -A . | |
git commit -m "Upload" | |
git push |
https://cloud.google.com/sdk/docs/#deb | |
https://cloud.google.com/sdk/docs/quickstart-debian-ubuntu | |
https://console.developers.google.com/apis | |
https://cloud.google.com/bigquery/docs/bq-command-line-tool | |
https://cloud.google.com/bigquery/docs/reference/bq-cli-reference | |
https://cloud.google.com/sdk/gcloud/ | |
https://cloud.google.com/bigquery/docs/quickstarts | |
https://cloud.google.com/bigquery/quickstart-command-line | |
https://cloud.google.com/bigquery/docs/how-to |
Error message: | |
mysqldump: Error: 'Can't create/write to file '/var/tmp/#sql_662_2.MAI' (Errcode: 2)' when trying to dump tablespaces | |
mysqldump: Couldn't execute 'show fields from `cdef`': Can't create/write to file '/var/tmp/#sql_662_0.MAI' (Errcode: 2) (1) | |
Solution: | |
https://prabuddha.me/fix-mariadb-error-innodb-error-unable-create-temporary-file/ | |
In Centos 7, service name of mysql is mariadb |