Here's the manual:
- walk in
- pick your stuff
- walk out
Could not create directory '/home/myuser/.ssh'.Reason is that ssh does not find your home directory. Easiest solution is to point it to your windows home directory. To do this, add this line to your_cygwin_install_dir\etc\nsswitch.conf file:
The authenticity of host 'myserver (168.250.1.174)' can't be established.
ECDSA key fingerprint is SHA256:eSpqYAq2c7k843RfqpbpvK9F118XsKCArBdBheRN8c0.
Are you sure you want to continue connecting (yes/no)?
db_home: /%H
VBoxExtPackHelperApp.exe: error: Failed to rename the temporary directory to the final one: VERR_ACCESS_DENIED ('D:\Program Files\Oracle\VirtualBox\ExtensionPacks\Oracle_VM_VirtualBox_Extension_Pack-_-inst-4288' -> 'D:\Program Files\Oracle\VirtualBox\ExtensionPacks\Oracle_VM_VirtualBox_Extension_Pack')After seeing several people on the net pointing to the antivirus, I disabled the McAfee real time virus scanning that came for 1 year with my Dell PC:
SQL> alter system set LOCAL_LISTENER='(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))' scope=both;
SQL> alter system register;
class Japavapa implements Callable, ManagedTask, ManagedTaskListener { String word; LocalTime submit; public Japavapa(String word) { this.word = word; } public String toString() { return ":P " + word; } @Override public String call() throws Exception { Random rand = new Random(); Thread.currentThread().sleep(rand.nextInt(1000)); Matcher match = Pattern.compile("([AEIOUYaeiouy]+)").matcher(word); return match.find() ? match.replaceAll(match.group(1) + "p" + match.group(1)) : word; } @Override public ManagedTaskListener getManagedTaskListener() { return this; } @Override public Map<String, String> getExecutionProperties() { return null; } @Override public void taskSubmitted(Future<?> future, ManagedExecutorService executor, Object task) { submit = LocalTime.now(); logger.info("SUBMIT " + task + " AT " + submit + " ON " + executor); } @Override public void taskAborted(Future<?> future, ManagedExecutorService executor, Object task, Throwable exception) { logger.info("ABORTED " + task + " AFTER " + Duration.between(submit, LocalTime.now()).toMillis() + "ms ON " + Thread.currentThread().getName()); } @Override public void taskDone(Future<?> future, ManagedExecutorService executor, Object task, Throwable exception) { logger.info("DONE " + task + " AFTER " + Duration.between(submit, LocalTime.now()).toMillis() + "ms"); } @Override public void taskStarting(Future<?> future, ManagedExecutorService executor, Object task) { logger.info("STARTING " + task + " AFTER " + Duration.between(submit, LocalTime.now()).toMillis() + "ms ON " + Thread.currentThread().getName()); } }
java.io.FileNotFoundException: C:\WINDOWS\system32\config\systemprofile\soapui-settings.xml (Access is denied)Uninstall and reinstall from the zip installer (from alternate platforms downloads). That one works from your user home directory as it should.
Native Library(terminalio) to read the password securely from commandline is not foundIt appears that this is a different symptom of the same error I had working with Weblogic 12.1.1: the native libraries delivered with WebLogic are not in the PATH. My system is a 64 bit windows system, so i need to add the libraries for this platform to avoid this error.
set WL_HOME=C:\wl12120If you do this, the installation and the configuration of a default domain run smoothly. As explained in my previous post, after the domain creation, also add this line to the domain envionment setup file %domain_dir\bin\setDomainEnv.cmd. If you don't you'll get warnings about Weblogic reverting to less efficient file reading libraries etc.
@REM added the next line
set PATH=%WL_HOME%\server\native\win\x64;%PATH%
alter user user_name identified by "new_password" replace "old_password"
> java -jar fmw_12.2.1.0.0_wls.jar
During the install you can choose to install WebLogic, Coherence or both.Checking if CPU speed is above 300 MHz. ...Passed
Checking monitor: must be configured to display at least 256 colors. ...Passed
Checking swap space: must be greater than 512 MB ...Passed
Checking if this platform requires a 64-bit JVM. Actual 32 Passed (64-bit not required)
%WL_HOME%\
oracle_common\common\bin (in earlier releases this is
%WL_HOME%\
wlserver
\common\bin
) and ran
> config.cmd
This launches the domain create/update GUI, another easy sequence of steps.@REM Set DERBY_FLAG, if derby is available.
if "%DERBY_FLAG%"=="" (
if exist %WL_HOME%\common\derby\lib\derby.jar (
set DERBY_FLAG=true
)
)
Settings > System > About > Advanced System Settings > Environment Variables
Alternatively, use the search in the task bar:
When editing the Path System variable, you get a list editor for the entries (instead of the semicolon separated list inherited from Unix). For editing an entry you have an optional directory browser.