博客日历
2024年11月 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 七 |
28 | 29 | 30 | 31 | 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 1 |
存档
2024年03月 04月 05月 2021年
01月 02月 11月 12月 2020年
02月 03月 04月 05月 06月 07月
09月 2018年
09月 2017年
01月 02月 07月 2016年
01月 04月 07月 08月 11月 12月
2015年
01月 02月 03月 05月 09月 10月
11月 2014年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2013年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2012年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2011年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2010年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2009年
03月 04月 05月 06月 07月 08月
09月 10月 11月 12月
Linux下获取可执行程序或.so的路径
#include <unistd.h> #include <dlfcn.h> // 需要定义 _GNU_SOURCE,链接:-ldl // 获取可执行程序或.so的路径 string GeCurrentModuleDir() { string sPath = "./"; Dl_info dlinfo; int ret = dladdr((void*)GeCurrentModuleDir, &dlinfo); if (ret != 0) { sPath = dlinfo.dli_fname; } std::size_t pos = sPath.find_last_of('/'); if (pos != string::npos) { sPath = sPath.substr(0,pos); } return sPath; } // 获取可执行程序的路径 string GeCurrentExeDir() { char szExePath[500]; strcpy(szExePath,"./"); int cnt = readlink("/proc/self/exe", szExePath, 500); string sPath = szExePath; std::size_t pos = sPath.find_last_of('/'); if (pos != string::npos) { sPath = sPath.substr(0, pos); } return sPath; }
分类:Linux 查看次数:12613 发布时间:2016/12/29 12:03:20
修改Redis集群的密码
修改Redis集群中各节点的redis.conf并重启:
masterauth 1234!5
requirepass 1234!5
参考:http://blog.csdn.net/jtbrian/article/details/53691540
分类:杂谈随感 查看次数:6328 发布时间:2016/12/20 10:00:15