Hướng dẫn xampp mongodb
Bài viết được sự cho phép của smartjob.vn Show
Nội dung chính
MongoDB hỗ trợ rất nhiều Driver cho các ngôn ngữ lập trình khác nhau. Trong bài viết này, SmartJob trình bày về việc kết nối, truy vấn từ PHP. Máy tính sử dụng: Windows 10,
64 bit, sử dụng bộ tích hợp XAMPP. Việc làm php và việc làm mongoBD hấp dẫn Bước 1. Tải về tập tin mở rộng dll tại đường link: Bước 2. Giải nén. Copy file php_mongodb.dll vào thư mục ext, ví dụ trên máy của tác giả là: C:\xampp\php\ext Bước 3. Tìm file php.ini , ví dụ, trên máy tác giả là: C:\xampp\php\php.ini . Chèn vào cuối tập tin này: extension=php_mongodb.dll Bước 4. Giả sử có thư mục: C:\xampp\htdocs\vy\mongo–php Gõ lệnh: composer require "mongodb/mongodb=^1.0.0" để tải thư viện bằng Composer về. Composer tự động tải về và thư mục có thêm 1 thư mục và 2 tập tin mới: Tạo 3 tập tin info.php, add.php, find.php để kiểm tra các tính năng mà thư viện MongoDB PHP cung cấp: Tập tin info.phpTập tin add.phpTập tin find.phpBước 5. Khởi chạy máy chủ PHP dựng sẵn php -S localhost:1111 -t C:\xampp\htdocs\vy\mongo-php Bước 6. Truy cập http://localhost:1111/info.php xem kết quả để thấy rằng extension MongoDB đã được cài đặt thành công trong PHP. Bước 7. Thêm dữ liệu bằng cách truy cập đường dẫn Bước 8. Tìm kiếm dữ liệu, bằng cách truy cập đường dẫn Để thực hiện nhiều thao tác đa dạng khác (đọc, ghi, sửa, xóa), bạn hãy xem thêm tài liệu như bên dưới. TÀI LIỆU THAM KHẢO 1. http://php.net/manual/en/mongodb.installation.windows.php Tải mã nguồn từ server SmartJob: mongo-php Bài viết gốc được đăng tải tại smartjob.vn Có thể bạn quan tâm:
Xem thêm tuyển dụng nhân viên it hấp dẫn trên TopDev Learn how to install MongoDB on Windows OS and configure with PHP on XAMPP. Nội dung chính
There are a couple of tutorials out there already, but neither of them helped me set everything up 100%. Some of them are missing key explanations, some of them are a bit old. My tutorial presumes you know your way around XAMPP on Windows and you have it installed already. Here’s how to install MongoDB on your local Windows machine with XAMPP in 5 easy steps: Step 1. Download mongo driverTo download mongo driver for Windows visit pecl.php.net Download the latest stable release by clicking on the DLL link. I used the latest stable release at the time, 2017-05-04, version 1.2.9. On the next page there is a DLL list. It is vital to pick the right version. You need to pick depending on three things:
Here’s where to find out that information:
Below that, in the table, you will see list of other information. You need to find the value for the Architecture (x86 or x64) and Thread Safety (enabled or disabled). Finally, you can choose a proper DLL to download.
When Thread Safety is enabled, you need to download Thread Safe (TS) version. So I downloaded file: 7.0 Thread Safe (TS) x86 Step 2. Unzip downloaded mongo driver version and copy .dll file to XAMPPAfter successful download, unzip and find the .dll file. Copy it to ext directory of your XAMPP installation. If you installed XAMPP to C drive, full path to the ext folder would be C:\xampp\php\ext Step 3. Register mongo .dll file within php.iniAdd following line into php.ini file:
If your .dll file name is different, it’s ok, just make sure you call it like that within php.ini file. For example, if you added a file with a name of php_mongo.dll in the ext folder, you need to put that in the php.ini file. Step 4. Restart XAMPP and refresh phpinfo.php pageWhen you restart XAMPP and refresh the phpinfo page, something like this should appear when you CTRL+F and type mongo: If you don’t see that on your phpinfo page, you did something wrong so try to go back through previous steps. a) Download latest MongoDB server version. That is it, you successfully installed MongoDB on Windows and configured it in XAMPP! Step 6. Download and install RoboMongoAs an extra step I would recommend installing MongoDB management tool, such as RoboMongo, (it’s called Robo 3T now) to easily manage MongoDB on your machine. Just create connection and you are set to go. Conclusion and additional resourcesHope you found this tutorial useful in the process of installing and configuring MongoDB on your Windows machine with XAMPP. For the next step, I recommend checking out the following MongoDB online courses on Pluralsight: Introduction to MongoDB MongoDB Administration These fantastic courses by Nuri Halperin helped me to learn a lot more about MongoDB. Can we use XAMPP for MongoDB?By default, PHP in XAMPP has no mongodb support. So we have to download mongodb extension from PECL (PHP extension repository) and configure it in xampp. How do I install MongoDB on Windows locally?Step 1 — Download the MongoDB MSI Installer Package. Head over here and download the current version of MongoDB. ... . Step 2 — Install MongoDB with the Installation Wizard. A. ... . Step 3— Create the Data Folders to Store our Databases. A. ... . Step 4 — Setup Alias Shortcuts for Mongo and Mongod. ... . Step 5 — Verify That Setup was Successful.. Can MongoDB be installed on Windows?Starting in version 4.0, you can install and configure MongoDB as a Windows Service during installation. The
MongoDB service starts upon successful installation. Configure the MongoDB instance with the configuration file How use MongoDB with PHP on Windows?Get started with MongoDB and PHP with XAMPP on Windows. Copy the extracted php_mongodb. dll file into Open XAMPP php. ini and add the line: extension=php_mongodb. dll.. Restart the Apache server in XAMPP. You're good to go.. |