Non Standard password on configurator during upgrade...

Hi,
As specified in the recommendations, the Configurator password has been changed from its default.
Now, upgrading to 8.1.0 (and then on to the latest and greatest) I wonder if its possible to add the password
to the install command as you can do with a manual one?
i.e.
install -nodisplay -U configurator -P <password>
or something similiar... I cant find it in the documentation, but I can see that the install script do send the given arguments on to the install class as it sends the exec java on...
If I run it without specifying the password, it seems to upgrade it, but it stops logging what it does so I cant be sure...
Anyone?

I got around this problem by changing the Configurator password back to its default... configurator
However, the current password policy stopped me from doing so and I could not start the service up again because
of local reasons (i.e. I did not have the websphere to run it under, just access via lh console)
I went in to lh console with
# lh console -u Configurator -p <myoldsafepassword>
Configurator> changePassword Configurator configurator
that responded with a java exception due to the policy violation (i.e. accountid etc etc not part of password)
Configurator> listObjects Policy
that listed the various policys in question
I looked them through, using the java output as a guide to which was in question...
Configurator> getObject Policy '<name on policy from listObjects>'
when I got the one I needed to change i checked it out to a local file
Configurator> checkout Policy '<name of policy to change>' policy_to_change.xml
I then edited that xml file to lighten the rules so that the password would pass...
i.e. removed all reserved words except email :D
I then checked the policy in again...
Configurator> checkin policy_to_change.xml
and then the password change went through afterwords...So I am ok to upgrade now... :D
Edited by: Dhurgan on Jul 26, 2011 12:05 PM

Similar Messages

  • How to track changes made to the standard objects by SAP during upgrade ?

    Hi All,
    Can any one of you please let me know if there is any straight forward method to find any change made to the standard objects by SAP in different versions ?
    Like for eg, during upgrade from 4.6c to ECC 6.0.
    Thanks in advance.

    > For eg , if SAP has made any change in the standard  transaction IE02,  in ECC 6.0 how will we come to know those changes?
    There are two sources for that:
    The "Solution Browser" (http://solutionbrowser.erp.sap.fmpmedia.com/) which lists the differences between source and destination release and the release notes (http://service.sap.com/releasenotes). You'd need to read here all those from 4.6 to ERP 6.0 (so 4.7, ECC 5.0 and ERP 6.0) to find out the behaviour changes.
    Markus

  • Using non-standard sshd port after 10.8 upgrade

    After spending hours tracking down this solution as a result of losing my ssh settings after the upgrade to Mountain Lion, I thought it might be useful to post the steps taken to restore the configuration I used with Snow Leopard.
    Changing the sshd default listening port
    Disclaimer: This tutorial is specific to Mountain Lion (OS X 10.8). I was able to accomplish this using Snow Leopard (OS X 10.6) in fewer steps, but upgrading required this more involved solution. 
    Steps:
    1.) You must first enable the root user account in order to change the relevant files. This can be done from the terminal, or by going to System Preferences --> Users & Groups. Once there, click on 'Login Options' at the bottom of the Current User list, and 'Join' where it says 'Network Account Server'.
    This will bring up a smaller window. Click on 'Open Directory Utility' at the bottom. You will be prompted for your admin password. Now go to the 'Edit' tab at the top of the screen and toggle down to 'Enable Root User'.  You will be prompted to enter your admin password twice.
    2.) Log out of your regular user account. At the log in screen you will now see an additional entry for 'other'. Click on that and log in with the username 'root' and your admin password. If are inexperienced as a root-level user, be careful as you can cause problems to your system can be difficult to undo.
    Once in your root account, the first step is to create a new 'service definition' in the etc/services file. Open the file with text editor of choice and scroll to the current entry for sshd listening port, which will look like this:
    ssh    22/udp    # SSH Remote Login Protocol
    ssh    22/tcp     # SSH Remote Login Protocol
    Overwrite the '22' with the port number you would like sshd to listen on:
    ssh    12345/udp   # SSH Remote Login Protocol
    ssh    12345/tcp    # SSH Remote Login Protocol
    *12345 being our hypothetical, non-standard port.
    It is important to note that the new port number will not take by simply adding a new uncommented line to the file (I tried), unless of course you comment the original ssh entries. Easiest way is just to overwrite what is there already. Save changes.
    3.) You now need to edit the ssh.plist file, which is located at /System/Library/LaunchDaemons/ssh.plist. A word to those familiar with Linux/BSD environments: changing the default port in the sshd_config file, which exists in OS X, does NOT change the listening port. Simply changing the default port, saving the config file, and restarting the server (the sensible way) won't work. The OS X sshd server (openssh) is configured to get launch instructions from the ssh.plist file, as opposed to sshd_config. If you are more interested in this aspect of OS X, read up on LaunchDaemons (e.g. launchd).
    Before altering the ssh.plist file, you should save a backup copy in case of mistakes, or if you need to revert back to it in the future. Name your backup file something like original.ssh.plist, etc.
    In the ssh.plist file, locate the SocksServiceName entry and change it from the default:
    <key>SockServiceName</key>
    <string>ssh</string>
    To the following:
    <key>SockServiceName</key>
    <string>$alternate port number</string>
    In our example from above this value would be 12345.
    4.) Save your changes, and exit ssh.plist. You now need to move the backup file you created (original.ssh.plist) out of the System/Library/LaunchDaemons path.
    The updated sshd port will not take until you have only one ssh.plist file in the LaunchDaemons directory - this has to do with how launchd is configured to load files which is outside the scope of the current discussion.  (*If you've found a way around this, please share.) 
    5.) Restart the sshd server. Easiest way to accomplish this is going to System Preferences --> Sharing and clicking off 'Remote Login', then clicking back on it. 
    6.) Test the configuration by logging into the machine running the sshd server from another host using:
    ssh username@ipaddress -p 12345
    There are a few good tutorials out there that capture some of these steps, but many are dated and/or incomplete. If you are running a standard setup of OS X 10.8, this should work for you.
    Of course, don't be fooled into thinking that changing the default listening port from the ubiquitously-probed 22 equates to actual security. At best, it will cut down on the number of dubious connection attempts and probing.

    Hi all, above helped me change the sshd port number, thank you very much.
    Just upgraded to OS X 10.9.3 on my macbook pro.
    My findings were:
    Step 1(become a root user or sudo)
    Step 2 (/etc/services)
    This may not be required unless you want ssh to work without the "-p XXXX" option to connect to other ssh hosts.  I favor such as "ssh -p 2222 user@hostname" just to be sure I know what I am doing and also to leave ssh known port as its default "22".
    Step 3 (/System/Library/LaunchDaemons/ssh.plist)
    This is required if you want to change the sshd port number, I changed both "ssh" to "2222" in this file.
    Step 4 (launchctl)
    Below is a must as I understood:
    launchctl unload /System/Library/LaunchDaemons/ssh.plist
    launchctl load /System/Library/LaunchDaemons/ssh.plist
    it should be already working with the new port number.
    You can "ssh -p 2222 user@localhost" in the console terminal and see if its working.
    Since I am no expert on MacOS X, and it is a macbook pro that I am using, I also rebooted the system and changes were reflected permanantly.
    Thank you guys!

  • Non-standard configuration macbook Pro in Apple Store

    After a few weeks I'll be in a tourist trip in Hong Kong. And I want to buy a macbook pro 13' non-standard configuration (i7 256gb 16gb RAM). All configurations are sold at the apple store? If not, can I have something to pre-book macbook and pick up on arrival? Or to apple brought him to the hotel?
    (через несколько недель я буду в туристической поездке в гонк конге. И я хочу купить macbook pro 13' нестандартной комплектации (i7 256gb 16gb RAM). Все ли configurations продаются в apple store? Если нет, то смогу ли я как нибудь заранее заказать macbook и забрать по приезду? Или чтобы apple доставили его в hotel?)

    I had to open my Macbook to change hard drives today. I used one of these guides. http://eshop.macsales.com/installvideos/
    While I had it open I thought of cleaning the dust. I used a dust blower and a vaccum but I could see the fan was still dirty. I deciced to remove it. It was just 3 screws, I didn't disconnect any wires, just moved it to the side. There I saw 1/4 inch thick dust on the grill that separates the fan from the external. Looked something like this
    Dust sticks on the grill like lint on a dryer and there is no way to remove it without removing the fan. Now that it's clean I can't hear the fan anymore unless I put my ear on the keyboard, plus it doesn't have to run all the time because when it runs it's much more effective.

  • How To Configure non-standard SMTP port

    My ISP has blocked port 25. I have a service that will deliver mail to the port of my choosing. How do I configure Leopard Server to listen on a non-standard SMTP port? 2525 for example.
    Also, I assume all I have to do on my Airport Express is set up NAT to rake external port 2525 and point it to the private address of my email server on port 2525. Is this correct?
    Thanks,
    -ernie

    Assuming such is offered, look to acquire a business-class ISP service level, and move on to the next issue? The business-class services typically provide static IP address(es), opens up server ports, and sets up DNS and ISP-side server connections for your hosts. And you can call your ISP or other assistance when your network craters; non-standard connections are (as you've found) harder to support.
    One subtlety here: in a number of cases, simply having a business-class service means you're supported by a different group within (larger) ISPs. This can be a significant advantage at times, given that the scripts and tools and such that are available for the business group will be rather more targeted than the scripts that are available for the residential services group at the ISP.
    There are a number of folks that have sought and have tried this (try a few Google searches for SMTP and non-standard port), and it mostly works. But it is fragile, and tends to be derailed when something goes weird, or when the ISP spots and shapes or blocks the server traffic.
    Also check your ISP's terms of service here, lest your network pipe be subject to summary disconnection.
    The other option is to VPN or tunnel into to a co-lo or dedicated server or a virtual hosting service; to run your servers or virtual servers somewhere without firewalls blocking the standard ports.

  • File overwritten by upgrade tool EHPI during upgrade configuration step

    Hello,
    During upgrade using EHPI the upgrade pauses with an error  that says to replace R3trans with a newer version into the EHPI/abap/exenew directory. After copying the file and continuing with the upgrade it pauses again with the same error.
    I see in the log that after continuing that the upgrade kernel file is unpacked again and thus overwites the new R3trans file with an older version.
    My solution has been to restart the upgrade and simultaneously copy the file multiple times with the cp command so that a new R3trans is in exenew directory after the extraction and before the check.
    I know similar errors have occurrd in previous upgrades, migrations etc.
    Regards,
    Robert

    You could always copy the new files over to exenew ahead of time  right at the start of the upgrade.
    exenew is not looked at until the new exes are copied
    Pravin

  • Error while runnning autoconfig on apps tier during upgrade

    Hi,
    Error while runnning autoconfig on apps tier during upgrade from 11.5.9 to 11.5.10.2
    below is the error message.
    Enter the APPS user password :
    The log file for this session is located at: /u01/app/tinst/tinstappl/admin/TINST_dba5/log/05031134/adconfig.log
    AutoConfig is configuring the Applications environment...
    AutoConfig will consider the custom templates if present.
    Using APPL_TOP location : /u01/app/tinst/tinstappl
    Classpath : /u01/app/tinst/tinstcomn/util/java/1.6/jdk1.6.0_18/jre/lib/rt.jar:/u01/app/tinst/tinstcomn/util/java/1.6/jdk1.6.0_18/lib/dt.jar:/u01/app/tinst/tinstcomn/util/java/1.6/jdk1.6.0_18/lib/tools.jar:/u01/app/tinst/tinstcomn/java/appsborg2.zip:/u01/app/tinst/tinstcomn/java
    Using Context file : /u01/app/tinst/tinstappl/admin/TINST_dba5.xml
    Context Value Management will now update the Context file
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/jdbc/OracleDriver
    at oracle.apps.ad.util.DBUtil.registerDriver(DBUtil.java:153)
    at oracle.apps.ad.util.DBUtil.<init>(DBUtil.java:102)
    at oracle.apps.ad.tools.configuration.FileSysDBCtxMerge.getDBConnection(FileSysDBCtxMerge.java:759)
    at oracle.apps.ad.tools.configuration.FileSysDBCtxMerge.initializeParams(FileSysDBCtxMerge.java:147)
    at oracle.apps.ad.tools.configuration.FileSysDBCtxMerge.setParams(FileSysDBCtxMerge.java:128)
    at oracle.apps.ad.context.CtxValueMgt.mergeCustomInFiles(CtxValueMgt.java:1762)
    at oracle.apps.ad.context.CtxValueMgt.processCtxFile(CtxValueMgt.java:1579)
    at oracle.apps.ad.context.CtxValueMgt.main(CtxValueMgt.java:709)
    Caused by: java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    ... 8 more
    ERROR: Context Value Management Failed.
    Terminate.
    The logfile for this session is located at:
    /u01/app/tinst/tinstappl/admin/TINST_dba5/log/05031134/adconfig.log
    Please let me know your suggestions to resolve this issue.
    Regards,
    Sreenivasulu.

    Hi,
    DB tier autoconfig was successfully completed.
    We have already checked the above mentioned metalink ID's, but still the issue is same.
    Can you please advice any other solutions.
    Regards,
    Sreenivasulu.

  • What is current CommSuite support for non-ASCII passwords?

    Hello all,
    Some of our users managed to change their passwords to non-ASCII strings (via replication from MSAD by ISW) and no longer have access to their communications services.
    While replicating the problem, I have set a (UTF-8 non-ASCII) string as my password in DSEE directly, and *can* log in to Convergence with this password. However, if I change the working password to a non-ASCII string from Convergence itself - it is accepted during the secondary password check, there is no error returned, SOME password is apparently saved into the LDAP directory, but neither of the original non-ASCII plaintext strings can be used for login back into Convergence. Restoration of access is only doable by admin at this point.
    Checking email by IMAP from Thunderbird no longer works with a changed non-ASCII password (including the state when it still works for Convergence).
    Delegated Admin has an explicit check for non-ASCII characters in the password and refuses to set a misbehaving one.
    I see that among the standards supported by CommSuite, there is IMAP4rev1, and RFC 5255 refers to it as the reason that non-ASCII passwords and usernames are for now not supported, though this is expected to be a temporary state of things, and software can prepare for the future by implementing checks for valid UTF-8 strings as well.
    https://wikis.oracle.com/display/CommSuite/Messaging+Server+Supported+Standards
    http://tools.ietf.org/html/rfc5255
    5.1.  Unicode Userids and Passwords
       IMAP4rev1 currently restricts the userid and password fields of the
       LOGIN command to US-ASCII.  The "userid" and "password" fields of the
       IMAP LOGIN command are restricted to US-ASCII only until a future
       standards track RFC states otherwise.  Servers are encouraged to
       validate both fields to make sure they conform to the formal syntax
       of UTF-8 and to reject the LOGIN command if that syntax is violated.
       Servers MAY reject the LOGIN command if either the "userid" or
       "password" field contains an octet with the highest bit set.
       When AUTHENTICATE is used, some servers may support userids and
       passwords in Unicode [RFC3490] since SASL (see [RFC4422]) allows
       that.  However, such userids cannot be used as part of email
       addresses.
    So, the main question at this point is: does or does not all of the CommSuite stack support non-ASCII passwords?
    If no - please confirm, so we can instruct the users to not create problems for themselves (and maybe manage to set up some policy to not accept non-ASCII passwords to MSAD/DSEE in the first place).
    If yes - what should be done to enable support in Convergence/IMAP/SMTP/XMPP/WCAP/WABP/... services - perhaps, setting the LANG/LC_ALL locale environment variables or equivalent JVM flags for UTF-8 in server startup scripts, etc.? (I know that DSEE ldapsearch requires either envvars or a command-line flag for charset encoding of values, so I figure similar quirks may be relevant for some other software)
    Thanks in advance for either response,
    //Jim Klimov

    I can't respond for the suite, but the Messaging Server product should work with UTF-8 usernames and passwords as long as the standard SASL authentication mechanisms that are documented to use UTF-8 are used (e.g. SASL PLAIN). IMAP LOGIN may work fine with UTF-8 as well even though that's non-standard. We do not implement SASLprep, however, so the strings provided by the client to the server must be identical UTF-8 strings for authentication to succeed. If they are provided in a different decomposition, different canonical form or non-standard charset, that's not supported and will fail. We don't test this scenario extensively, so you may encounter bugs (that we'd have to prioritize and fix as with other bugs). Messaging Server recently implemented a restricted option (broken_client_login_charset) for a customer who was stuck with broken clients that sent ISO-8859-1 for the IMAP login command arguments.

  • Integration Repository during upgrade to ECC

    Hi all,
    Do you know of sap documentation regarding the SLD configuration and especially the "Integration Repository", When upgrading SAP system to ECC.
    Thanks,
    Naama

    Upgrading to ECC system wont affect XI much, So I don't think you have to do anything in Integration Repository.
    In SLD configuration you have to reconfigure Business System if the host name changes during upgrade.
    And accordingly you have to change host name/ip address, user and password in RFC maintained in XI system which will point to ECC system.
    In Integration Directory you have to change the business System name for ECC.
    Regards,
    Sarvesh

  • How to increate the  R3trans processes during upgrade ...

    Dears,
    I'm doing a Sap upgrade to ECC6+EHP4 and I selected the scenario "High resource use (minimal downtime, fast import, archiving off)" in the Configuration module.
    The Downtime module is started  but I saw the gui does not allow to modify the number of processes it's going to use like :
    > MAXIMUM UPTIME PROCESS
    > R3TRANS PROCESSES
    I saw the XPRA_UPG phase is using 1 batch only, despite there are a lot of resources available.
    As I'm planning others upgrade run in the next future for this sistem, I would like to know if there a way to increase the number of these processes, without changing the Scenario "High resource use (minimal downtime, fast import, archiving off)."
    In this run the parameter MAXIMUM UPTIME PROCESS I suspect is set to 1; I would like at least to set it to 2 in the next run .
    But I would like to continue to use this scenario "High resource use (minimal downtime, fast import, archiving off)." in the future, but increasing these parameters MAXIMUM UPTIME PROCESS and R3TRANS PROCESSES.
    I read the 'Troubleshooting and Admistration Guide' but it's not described here; it seems the only way to change these parameter is to choose a completely different scenario (so called "Manual Selection")
    How they can be changed ? Are they written in some file into the upgrade directory ?
    best regards

    Hello Roberto,
    with this option ("High resource use (minimal downtime, fast import, archiving off)") it is not possible to change the key parameters that you're looking for.
    For your case you should select the option "Manual selection of parameters". Please check the piece of log below to see the parameters you can change with this option:
    >> 2009/05/27 15:12:57  START OF PHASE PREP_EXTENSION/INITSUBST
    >>>> Choose configuration <<<<
    Select configuration
    01)  -  Standard resource use (archiving off)
    02)  -  High resource use (archiving off)
    03)  -  High resource use (archiving on)
    04)  *  Manual selection of parameters
    : Manual selection of parameters
    >>>> Archive Mode <<<<
    Choose an upgrade phase for disabling the archive mode. For more information,
    see the upgrade guide.
    If the archive mode is disabled, all production operation has to be stopped.
    01)  -  No disabling of the archive mode (Archiving on)
    02)  *  The archive mode should be disabled in phase STOPSAP_TRANS
    Choose the archive mode:: The archive mode should be disabled in phase STOPSAP_TRANS
    >>>> SGEN Execution Mode <<<<
    Choose an execution strategy for SGEN. For more information, see the upgrade
    guide.
    01)  -  Do not start SGEN during the upgrade.
    02)  *  Fill table GENSETC with relevant loads, but do not run SGEN.
    03)  -  Fill table GENSETC and run SGEN with low resource consumption.
    04)  -  Fill table GENSETC and run SGEN with high resource consumption.
    Choose the SGEN execution mode:: Fill table GENSETC with relevant loads, but do not run SGEN.
    >>>> Batch Configuration and Upgrade Processes <<<<
    You need to supply information about the batch server and the number of
    processes used.
    Enter the host name of your batch server:
    BATCH HOST: SAP_EXAMPLE
    Enter the maximum number of batch processes during the upgrade:
    BATCH PROCESSES: 5
    Enter the maximum number of parallel processes during uptime:
    MAXIMUM UPTIME PROCESSES: 1
    Enter the number of parallel import processes during downtime:
    R3TRANS PROCESSES: 3
    As you can see, all these parameters are editable with this option. You should consider it in your future upgrades, in my opinion.
    Best regards,
    Tomas Black

  • Reverse proxing on non-standard ports

    Hi,
    I want to create a new Reverse proxy mapping between an application and a GlassFish instance running on non standard port (not 80 / 443). Creating a mapping for HTTP works fine, but I can't find a way to map both the http and the https ports to the mapping.
    I have an application SecurityTest running on instance
    http://links.mycompany.com:38081/rsd/SecurityTest
    https://links.mycompany.com:38182/rsd/SecurityTest
    I want a mapping for the application
    http://www.mycompany.com/rsd/SecurityTest/ -> http://links.mycompany.com:38081/rsd/SecurityTest
    https://www.mycompany.com/rsd/SecurityTest/ -> https://links.mycompany.com:38182/rsd/SecurityTest
    The application is more or less a hello world servlet that is secure (form login) so it switch from HTTP to HTTPS when not logged in to ask for the username / password. Mapping to the http port works for the public page, the redirect gives an error:
    Gateway Timeout
    Processing of this request was delegated to a server that is not functioning properly.
    Can anyone tell me how to configure the Web Server to make it work?
    thanks

    Hi,
    I still get the same error:
    [12/Nov/2007:14:34:50] failure (16473) rsdts.mycomp.com: for host i78473.mycomp.com trying to GET http:/lidip/, service-http reports: HTTP7765: error reading response header (Server closed connection)
    And:
    Bad Gateway
    Processing of this request was delegated to a server that is not functioning properly.
    I don't get any logs on the other side...

  • Kvirc from SVN {NON-Standard-Install-Method} and Overcoming 2 Problems

    Hello, everyone.  Firefishe here.
    There are certain programs I like to compile from source code, outside of the normal arch hierarchy of PKGBUILD's.  One such program is the Internet Relay Chat client, "KVIRC".
    I've been using kvirc for years, and I like to keep it as up-to-date as possible, just like Arch!
    This is why I like to use the svn version, so I can update it quickly and uniformly.  I like--as a user--to contribute back to the project.  (I had one of my bug reports translated into an instant commit by the main project author, himself, once.  That made me feel quite good, so it really does help to do a few things like this now and again.
    Okay, on to the main topic.
    I'm writing this to alleviate a nagging problem that had been plaguing me for months in 2013.  Qt5 just wasn't compiling kvirc very well back then.  The fact is, the echoing strains of "qt5 is broken in kvirc" from the #kvirc channel on Freenode, resounded soundly throughout that entire year.  Qt5 was still a bit buggy, and not all the libraries (32bit or 64bit) were quite finished.
    Move forward to (now) July, 2014!  I have now compiled kvirc successfully on my 64bit (with 32bit multilib installation) laptop, and kvirc is purring away with a current svn build of kvirc.
    However, I ran into some issues, which I would like to share with you, below:
    I usually go about compiling kvirc from svn like this: (I usually start from my /home/userNameHere directory.)
    {arch@homedir}$ svn co https://svn.kvirc.de/svn/trunk/kvirc
    {arch@homedir}$ cd kvirc
    {arch@homedir}$ mkdir release
    {arch@homedir}$ cd release
    {arch@homedir}$ ccmake ..
    [At this point, the 'ccmake ..' command invokes cmake-gui, an ncurses-like graphical user interface, with a list of menu items pertaining to various libraries and flags that can be set.  cmake-gui makes selecting these flags and libraries quite easy, and also gives a clear indication of what directories may not have been found (which will be discussed a bit later.) ]
    Press the 'C' Letter Key -- (This runs the Configure Routine.  I sometimes do this twice, just to be sure it configured properly. I've had it miss a few times for unknown reasons.)
    Press the 'G' Letter Key -- This 'Generates' Cmake files.
    After the 'G' command, the system takes you back to the command prompt.
    {arch@homedir}$ make ***WAIT A WHILE, COULD TAKE A BIT LONGER ON SLOWER SYSTEMS!***
    {arch@homedir}$ sudo make install  (Or 'su -' to root, then do 'make install'; your preference.  I prefer using sudo.)
    {arch@homedir}$ sudo ldconfig  (Or 'ldconfig' if still at root prompt #)
    {arch@homedir}$ kvirc (or 'kvirc &' if you don't want the terminal window to hold onto the process.)
    Kvirc should run at this point, but I ran into a couple of problems.  Once during the ccmake configuration (which prevented ccmake from configuring), and at the end, which prevented kvirc from running.)
    The first had to do with two (2) packages that were not installed.  The were, as follows:
    qt5-webkit
    qt5-multimedia
    I installed those files, then did the  'ccmake ..' portion.   That ran fine, as well as the 'make' and 'sudo make install' and 'sudo ldconfig' parts.
    What didn't work was when I tried to run kvirc.  I got the following error:
    {arch@homedirc}$ kvirc
    kvirc: error while loading shared libraries: libkvilib.so.4: cannot open shared object file: No such file or directory
    I remember, back when kvirc was wanting Qt4, and not Qt5, that if I didn't do the first 'sudo ldconfig' command before trying to run kvirc, it would give something similar.  However, since this compile run was wanting Qt5, and not qt4, I was puzzled.
    Well, it turned out to be something quite simple.  This is a non-standard process of software installation on a new(er) arch system.  The 'uname -r' command on my system yields the following:  3.15.4-1-ARCH .  It is no surprise, then, that at this late date, Qt5 is complete (or at least more complete) than back in 2013 when I had the original problems, and had to select the 'WANTS-QT4' section during the 'ccmake ..' command.
    **** Building kvirc this way places the kvirc binary in /usr/local/bin, and a certain 'libkvilib.so.4' library in /usr/local/lib ****.
    This is to be expected from a standard source compile on most gnu/linux systems; and this *is* a standard compile, even though we're using the 'ccmake ..' command to do the preliminary configuration and cmakefile generation.)
    The problem is, is that Arch is looking for libkvilib.so.4 in /usr/lib, and not /usr/local/lib.  So the following was, for me, the solution that got everything squared away:
    I made a symlink in /usr/lib to /usr/local/lib/libkvilib.so.4, like this:
    {arch@homedir}$ cd /usr/lib
    {arch@homedir}$ sudo ln -s /usr/local/lib/libkvilib.so.4 libkvilib.so.4
    After doing this, I did:
    {arch@homedir}$ kvirc (or kvirc &)
    And It Ran Beautifully! :-)
    I hope you've enjoyed this HOWTO.  I know most people may just want to use the 4.2.x version of kvirc, currently residing safely in the standard repositories.  However, if you're like me, and want a bit of bleeding edge, Qt5 goodness with kvirc, I might suggest doing the above!
    I can be reached at firefishe At gmail DOT com if anyone has any questions.
    Last edited by Firefishe (2014-07-11 09:23:20)

    Hi Dareen,
    Looking at the information shared and also the error message ( Update Failed,Updates could not be applied.Please contact your Administrator if you wish to apply updates on your machine. Updates have been suppressed by the Administrator.If the problems persist, contact customer support for further assistance" ),
    It suggests that the updates were to be managed by the Admin only. Lets try the following step and suggest if this was able to resolve the concern that you have or not.
    1) Navigate to C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0 and you will find a .dat file ( AdobeUpdaterAdminPrefs.dat).
    2) Please open the file in question and you will find a line item : <Suppressed>1</Suppressed> .
    3) Please change the Value from 1 to 0 and save the file back in the same location.
    post the above step, try the installation once again and share the end result please.
    Cheers,
    Kartikay Sharma

  • LDIF Importing a user with a non-encrypted password fails, anywork arounds?

    I was able to import a group without issue:
    dn: cn=Authenticated,cn=Groups,dc=oraclelinux,dc=com
    description: test group
    objectClass: top
    objectClass: groupOfUniqueNames
    uniqueMember: cn=orcladmin,cn=People,dc=oraclelinux,dc=com
    cn: Authenticated
    But when I try to import a standard user:
    dn: cn=testuser2,cn=Users, dc=oraclelinux, dc=com
    userpassword:: password1
    description: test user
    objectClass: top
    objectClass: person
    sn: testuser2
    cn: testuser2
    It fails if I remove the password field then I can import the user without issue, but I need to include the password field as it is part of what was exported from the old LDAP Server.
    If I create a user in an ldif import it then add a password using oracle's Directory Manager upon exporting it the entry loks like:
    dn: cn=testuser, cn=Users, dc=oraclelinux, dc=com
    authpassword;orclcommonpwd: {MD5}fGoYCzaJagqMAnh+6vsOTA==
    authpassword;orclcommonpwd: {X- ORCLLMV}E52CAC67419A9A2238F10713B629B565
    authpassword;orclcommonpwd: {X- ORCLNTV}5835048CE94AD0564E29A924A03510EF
    authpassword;oid: {SASL/MD5}tUquh+Duowh2aWSEwONtcQ==
    authpassword;oid: {SASL/MD5-DN}lcQ7Z5O5vcwzXMeaZ65fYw==
    authpassword;oid: {SASL/MD5-U}AAWzkmDDCJLbs9mxoWBTiw==
    userpassword:: e1NIQX00NHJTRkpROXF0SFdUQkF2cnNLZDVLL3AyajA9
    description: test user
    objectclass: top
    objectclass: person
    sn: testuser
    cn: testuser
    Changing my imported ldif to look like the following WORKS:
    dn: cn=testuser2,cn=Users, dc=oraclelinux, dc=com
    userpassword:: e1NIQX00NHJTRkpROXF0SFdUQkF2cnNLZDVLL3AyajA9
    description: test user
    objectClass: top
    objectClass: person
    sn: testuser2
    cn: testuser2
    So the password must be encrypted then?, if so how to I generate a password hash on the command-line and through JAVA?
    Can an import be forced with a plain text password (Tivoli, SUN both support this functionality).
    Can I change the constraint that the password must contain a numeric char? (Found in document: http://download-uk.oracle.com/docs/cd/B28196_01/idmanage.1014/b15991/pwdpolicies.htm#g1051713)
    After fixing the constaints I can import a non-encrypted password from an ldif, but it can not be verified and only the authpassword;oid entries are created not the authpassword;orclcommonpwd entries.
    Thanks for your assistance,
    ERIC GANDT

    Eric, my first guess would be that the OID password policy prevents loading of the password i.e. the password doesn't match the existing password policy.
    What version is your "old" OID and what is the version of the current OID you're using?
    What is the error msg you get?
    regards,
    --Olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • When I try to open an .ai/pdf file received through my email, it won't open and asks for a password. I have never set up any kind of password for email security, but have tried typing in my standard passwords. Nothing works. I wonder if it has anything to

    When I try to open an .ai/pdf file received through my email, it won't open and asks for a password. I have never set up any kind of password for email security, but have tried typing in my standard passwords. Nothing works. I wonder if it has anything to do with the use of my Wacom3 Tablet...I've been having trouble with it and was getting the same message when trying to open the User's Manual in my Applications/WacomTablet file on my hard drive. Any suggestions? I just downloaded the latest version for the Wacom and recently upgraded to Snow Leopard 10.6.7 (which I hate, and my CS3 hates, etc.)

    It sounds like you have a a password-protected PDF. The password was set by the person who encoded it.

  • Can the adobe reader mobile app open standard password protected AES256 encrypted files (not Livecycle) made by Acrobat XI?

    I downloaded the adobe mobile reader for iOS just now and tried opening a pdf file created by Acrobat XI and optimized (no errors reported) for web and mobile devices the file was password encrypted  (*not livecycle*) using 256AES, compatibility acrobat X with restrictions allow: none, printing  allowed low rez.
    when acrobat mobile reader launched the pdf it required a password and even with the correct password used for changing security settings failed to open.
    how can people secure pdf's from unauthorized editing their work in Acrobat XI using (Acrobat X compatibility), standard password protection using AES256 bit encryption and open using the adobe mobile reader app ?

    I actually need at least three people to successfully open my free pdf using the Adobe Free acrobat viewer for mobile devices or my client want to remove the access for mobile devices link.
    Can anyone test please the free pdf that it opens on iOS or Android ?
    the guest checkout is enabled just need to put shipping info to access the Download File 2
    The wordpress link is below image
    mahalo in advance
    Source Supreme pdfSource Supreme

Maybe you are looking for