Hướng dẫn cài đặt Thunderbird trên windows
Thunderbird là ứng dụng email được hỗ trợ trên các nền tảng windows ,mac,linux ,có hỗ trợ các giao thức gửi mail cơ bản như...
30/11/2020 17:06 | Luợt xem : 33
MongoDB là một cơ sở dữ liệu NoSQL hàng đầu thường được sử dụng trong các ứng dụng web hiện đại. Bài này BKNS sẽ hướng dẫn các bạn cài đặt MongoDB trên CentOS-7, các bạn cùng tiến hành cài đặt nhé.
Cài đặt MongoDB với trình quản lý gói YUM
Bước 1: Tạo tệp /etc/yum.repos.d/mongodb-org-4.4.repo cho MongoDB.
vi /etc/yum.repos.d/mongodb-org-4.4.repo
[mongodb-org-4.4]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4.4/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-4.4.asc
yum install -y mongodb-org
systemctl start mongod.service systemctl enable mongod.service mongo exit
mongo
db.createUser({
user: "bkns_us",
pwd: "Bknsmongo@123",
roles: [
{
role: "readWrite",
db: "bkns_db"
}
]
});
exit vi /etc/mongod.conf
vi /etc/mongodb.conf
security:
authorization: enabled
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1
systemctl restart mongod.service
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |