user import elenaciezka "cn=Elena Ciężka,ou=1,ou=2,ou=3,O=myorg,C=PL"
Could not perform the administration request
Error: HPDMG0755W The specified Distinguished Name (DN) does not exist. (status 0x14c012f3)
As you can easily add these users with Web Portal Manager, that means there is *the way* to do it with pdadmin, which is useful if you want to import more than ten-s of users...
A little googling and the solution to this problem is to use command files as input to pdadmin, which contain UTF-8 characters of your choice. but that's a little peculiar as you need to prepare the command file as ANSI type :)
So, that's what you need to do:
- prepare command file, setting UTF-8 encoding first so you get:
user import elenaciezka "cn=Elena Ciężka,ou=1,ou=2,ou=3,O=myorg,C=PL"
- change the encoding to ANSI and you see:
user import elenaciezka "cn=Elena Ciężka,ou=1,ou=2,ou=3,O=myorg,C=PL"
- save the file (say: tam_import.txt) and copy it to your target system using binary mode (most safe in terms of transmission of some strange stuff)
- before running pdadmin set shell to use your locale:
export LANG=pl_PL.utf-8
- and you can finally use your file:
pdadmin -a sec_master -p your_password tam_import.txt
Good luck guys, and come back for more.
No comments:
Post a Comment