From 9677db0d553d552c73a5c22c8d3fd09c5d251e79 Mon Sep 17 00:00:00 2001 From: Chris Paul Date: Tue, 25 Oct 2016 07:17:22 -0700 Subject: [PATCH] Update README.md Add `ldconfig` to finalize the update to find the .so file in /usr/local/lib --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b7deb9a..8c515ff 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,12 @@ echo "/usr/local/lib" >> /etc/ld.so.conf.d/librd.conf Or simply type `vim /etc/ld.so.conf.d/librd.conf`, when the editor opens, tap _":"_ (colon), and run the command `read !locate librdkafka.so.1`, delete the filename from the path (move your cursor to the last `/` of the line that just appeared in the file and type `d$` (delete until end of line). Save and close the file (`:wq`). +Once updated, run the following: + +```bash +sudo ldconfig +``` + _Note:_