The following errors occurred when installing the software:
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.
ERROR: ` phpize ‘failed
Solutions:
yum install m4 autoconf
div>
How to Fix Failed to start service jboss.deployment.unit.”jboss-as-bmt.war”.INSTALL: org.jboss.msc.service.S
Failed to start the service jboss. Deployment. Unit.and “jboss – as – BMT. War. INSTALL: org. Jboss. MSC. Service. StartException service in jboss. Deployment. Unit.and” jboss – as – BMT. War. INSTALL: Failed to Process Phase INSTALL of DE…

If there is a file of type WAR.Failed in the red box location above it will have failed changed to Deployed and restart JBoss.
If there is a file of type WAR.Failed in the red box location above it will have failed changed to Deployed and restart JBoss.
Error installing NX10.0 in win10. Tip: ZeroGu6: Windows DLL failed to load
The original machine installed, upgrade before uninstall, and then can not install, from the Internet to find what solution, it seems to encounter few people.

All the advice online is, through my computer:
Right click on splmlicenseserver_v7.0.0 _win64_setup.exe and select Properties. On the Compatibility menu, Select the ‘Compatibility’ TAB

You can also test compatibility, and the system will automatically set the compatibility

But none of these methods work on my machine.

Go here and search for Java to delete all related programs
Reproduced in: https://www.cnblogs.com/ouyang800/articles/6061367.html
mdt wds deployment windows Litetouch deployment failed, Return Code = -2147467259 0x80004005
It’s deployments that turn out to be wrong.
Litetouch deployment failed, return code = -2147467259 0x80004005
It’s been a long day, but I finally got the results back. Write it down.
Method 1
On your Windows 7 reference PC, open the registry editor. Navigate to the HKLM \ system \ settings. Look for a multi-string value called “CloneTag”. I’m guessing it’s not there. Add a new multistring value named “CloneTag”. The actual value doesn’t matter. I’m not sure if the case on the name matters, so I mimicked the error message. Export the HKLM\system\settings key and save it to the .reg file. Edit the .reg file and remove all other entries except for the CloneTag value.
Run cscript to start the task sequence selector. Select your Sysprep and capture the Task Sequence. Enter your credentials and start.
When it gets to the part where the sysprep is executed, run the .reg file to quickly import the CloneTag multi-string value. If you see that it continues to sport, then you should be clear.
Method 2
Go to the Scripts folder in your DS box and create a backup of the LTISysprep file somewhere on your desktop so you will have a copy and if anything goes wrong open the LTISysprep file with Notepad and remove osshell. MACHINE\System\Setup\CloneTag’ line off and save the file to update your deployment share continues by logging in to the referenced computer and on your DS machine.
Run the LiteTouch script to capture p_w_picpath on
Method 3.
The reason for this failure is that the registry key CloneTag under HKLM\system\settings was deleted during sysprep startup:
1.
Enter your sysprep and capture the task sequence, execute sysprep, Options tab, Add, Registry Settings. Enter “System\Settings” in the “Key” box, and enter the CloneTag in the “Value Name” box, and place the “Value” in the CloneTag. ” box is left blank. The whole step is to add the registry entry back to the HKLM\system\setup after the sysprep is complete.
2. (Same approach as suggested by Jimmy lami)
You can also modify the script to prevent deletion of registry entries. Go to the deploymentshare folder and look for the script named LITSysprep in the scripts folder. Right-click on edit to make changes in the script. You can remove the oShell.RegDelete “HKEY_LOCAL_MACHINE\SystemSetup\CloneTag” or you may want to add. // infront to convert it to a comment.
twrp failed to mount system
Android 9 twrp3.3.1
Installation error display solution:
Go into data clear is the second button in the first row;
Then select advanced and check all but external storage if you want to keep internal storage
You can then re-enter the new image.
My magic fun:
https://www.mokeedev.com/
[Unity] Solve the problem of IOException: Failed to Copy… in Unity packaging apk
1: error screenshot

2:
First of all, the problem is not packaged when will now, said the reasons for this error is the Temp folder file already exists, leading to conflict with Unity android packaging bag, delete the Temp folder, then repack (Temp file is Unity runtime generated temporary folder, delete will not affect the other project files, the following chart) 
conclusion
if this blog has helped you, welcome to click the link below, and more like-minded partners to communicate, together with progress.
![]()
Ubuntu18 “Activation of network connection failed” cannot access the Internet 【Solution】
Ubuntu18 “Activation of Network Connection Failed “cannot connect to the Internet [Solution]
System environment: Windows 10 and Ubuntu18.04 dual systems
Activation of network connection failed. The Activation of network connection failed was reported by Ubuntu18.04 today. The Activation of network connection failed.
Plug in the wireless card, the wireless card can surf the Internet normally.
computer to Win10 environment, wired can be normal Internet. Explain the hardware is good. The problem is only the driver, or network card configuration problem.
The Internet tried all kinds of solutions, including computer rebooting, router rebooting and so on, to no avail.
Finally, the computer shuts down. Let it sit for a few minutes, then turn it on, and Ubuntu18 will be able to surf the web normally.
Ha ha, solution: computer shut down, and then wait to start . It’s amazing.
February 5, 2020 sijing, Shanghai
CentOS Liunx 7 uses rdesktop to remotely connect to the Alibaba Cloud server and it appears Failed to connect, CredSSP required by server.
CredSSP Required by Server fails to connect when Liunx connects to Window server.
1. Connect to the server remotely on the web side. 2. Right click on my computer -> Property – & gt; Remote setting -& GT; 3. Uncheck computer connections that allow running remote desktops using network sector authentication only (recommended)(N)
The exact reason is not clear, but this operation successfully connected to the Aliyun server. Note: the image of ali cloud Server system is: Windows Server 2012 D2 Datacenter

Write in the last
I am a pure white, and the blog I write is also written because of the problems encountered in learning to use to find information and then solve the problem. If there are some mistakes, or involving infringement, please contact me.
QQ: 994961015
E-mail: [email protected]
WeChat: this can not be given.
SQLServerException: The server failed to resume the transaction. Desc:ab00000002
public void runSp(List<String> params, DataSource dataSource, String spName) throws SQLException {
StringBuffer sb = new StringBuffer("{call " + spName + " (");
for (int i = 0; i < params.size() - 1; i++) {
sb.append("?,");
}
sb.append("?)}");
String callString = sb.toString();
LOGGER.info("[runSp] Running statement: " + callString);
Connection conn = getConnection(dataSource);
conn.setAutoCommit(false);
CallableStatement cs = conn.prepareCall(callString);
for (int i = 0; i < params.size(); i++) {
cs.setString(i + 1, params.get(i));
}
try {
cs.execute();
conn.commit();
LOGGER.info("sp completed successfully");
} catch (Exception e) {
LOGGER.info("sp failed", e);
conn.rollback();
} finally {
cs.close();
conn.close();
}
}
This exception is thrown when the method is called while the program is running. The program needs to call SQL Server’s stored procedure during the run, but there is already a commit of the item in the store.
I also added Java code to Java code to throw out this one. After I tried to remove control from the Java code, there were no errors. The specific reasons are still in the learning process, I hope you can give me some advice.
How to Fix Pandoc wasn’t found.pdflatex not found on PATH
Nbconvert failed: Pandoc Wasn’t found resolved. Nbconvert Failed: PDFlatex Not Found on PATH resolved
Problem 1 Description
500: Internal Server Error
nbconvert failed: Pandoc wasn’t found.
Please check that Pandoc is installed:

Problem 2 Description
500 : Internal Server Error
nbconvert failed: pdflatex not found on PATH
http://pandoc.org/installing.html

Solutions:
1. Install pandoc
Download pandoc official download http://pandoc.org/installing.html
Other available CSDN resources download address
click to install directly, the default installation is ok, you can choose the installation location.
then configure the environment variable to configure the installation path to the system path. For example, I put E:\IDE\Pandoc into the PATH.
2. Install miktex
Click installation directly, the default installation can be selected, and the installation location can be selected.
(if the program does not automatically configure environment variables) requires manual configuration of environment variables to configure the installation path to the system path. If mine is put E:\IDE\MiKTeX 2.9\ MiKTeX \bin\x64 in path.

3. Install various macro packages
Select Convert PDF

Automatic prompt to install various macro packages can be directly click to install (install several times, until the installation is complete…)


Can choose to remove the check box, each installation does not need popup, automatic installation, will be much faster, also save trouble.

Completed, you can successfully convert English content, including images, code highlights, and so on.

Attention! , but if it contains Chinese content, it will report an error, and the Chinese cannot be converted.
To solve the problem of unable to convert the Chinese method, others did not test the time of the follow-up Chinese support problems, personally solved after updating the content of the blog.
MongoNetworkError: failed to connect to server [localhost:27017]
MongoNetworkError: failed to connect to server [localhost:27017] on first connect [MongoNetworkError: connection 0 to localhost:27017 timed out
at Socket.<anonymous> (D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\connection.js:355:7)
at Object.onceWrapper (events.js:427:28)
at Socket.emit (events.js:321:20)
at Socket._onTimeout (net.js:478:8)
at listOnTimeout (internal/timers.js:549:17)
at processTimers (internal/timers.js:492:7) {
name: 'MongoNetworkError'
}]
at Pool.<anonymous> (D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\topologies\server.js:438:11)
at Pool.emit (events.js:321:20)
at D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\pool.js:562:14
at D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\pool.js:995:11
at callback (D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\connect.js:97:5)
at D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\connect.js:124:7
at _callback (D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\connect.js:349:5)
at Connection.errorHandler (D:\Desktop\node\mongodblearn\07_student_list\node_modules\mongodb\lib\core\connection\connect.js:365:5)
at Object.onceWrapper (events.js:428:26)
at Connection.emit (events.js:321:20) {
name: 'MongoNetworkError'
}
The above error indicates that Mongodb is not started
InternalError: Failed to create session. Error and solution
InternalError: Failed to create session. Errors and solutions
Introduction Error message solution
preface
This error occurred at the beginning of training Keras (using the TensorFlow as Backend) model.
Python version: 3.5.2
Keras version: 2.1.3
TensorFlow version: 1.9.0
Error message
InternalErrorTraceback (most recent call last)
< ipython-input-4-d4cc2ca313a3> in < module>
10 model.compile(loss= ‘mse’, optimizer= ‘Adam’)
11 # fit network
— > 12 history = model.fit(X_train, y_train, epochs=3000, batch_size=16, validation_data=(x_test, y_test), verbose=2, shuffle=False)
13 #history = model.fit(X,y, epochs=3000, batch_size=16, Verbose = 2, shuffle = False)
14 # plot history
/usr/local/lib/python3.5/dist – packages/keras/models. Py fit in (self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, **kwargs)
963 initial_epoch=initial_epoch,
964 steps_per_epoch=steps_per_epoch,
— > 965 validation_steps = validation_steps)967 966 def the evaluate (self, x = None, y = None,
/usr/local/lib/python3.5/dist – packages/keras/engine/training. Py fit in (self, x, y, batch_size, epochs, verbose, callbacks, validation_split, validation_data, shuffle, class_weight, sample_weight, initial_epoch, steps_per_epoch, validation_steps, **kwargs)
1667 initial_epoch=initial_epoch,
1668 steps_per_epoch=steps_per_epoch,
-> 1669 validation_steps = validation_steps)1671 1670 def the evaluate (self, x = None, y = None,
/usr/local/lib/python3.5/dist – packages/keras/engine/training. Py in _fit_loop (self, f, ins, out_labels, batch_size, epochs, verbose, callbacks, val_f, val_ins, shuffle, callback_metrics, initial_epoch, steps_per_epoch, validation_steps)
1204 ins_batch[i] = ins_batch[i].toarray()
1205
-> 1206 outs = f (ins_batch)
1207 if not isinstance (outs, a list) :
1208 outs = [outs]
/usr/local/lib/python3.5/dist – packages/keras/backend/tensorflow_backend py in the call (self, inputs)
2471 feed_dict[tensor] = value
2472 fetches = self.outputs + [self.updates_op] + self.fetches
-> 2473 session = get_session()
2474 updated = session.run(fetches=fetches, Feed_dict = feed_dict,
2475 * * self session_kwargs)
/usr/local/lib/python3.5/dist – packages/keras/backend/tensorflow_backend py in get_session ()
config = 174 Tf. ConfigProto (intra_op_parallelism_threads = num_thread,
175 allow_soft_placement = True)
– & gt; 176 _SESSION = tf. The Session (config = config)
177 Session = _SESSION 178 if not _MANUAL_VAR_INIT:/usr/local/lib/python3.5/dist – packages/tensorflow/python/client/Session. Py in init (self, Target, graph, config)
1561
1562 “”
-& gt; 1563 super(Session, self).init(target, graph, config=config)
1564 # NOTE(mrry): Create these on first__enter__to avoid a reference cycle.
1565 self._default_graph_context_manager = None
/usr/local/lib/python3.5/dist – packages/tensorflow/python/client/session. Py in init (self, target, graph, the config).
631 if self _created_with_new_api:
632 # pylint: Disable = protected – access
– & gt; 633 self._session = tf_session.TF_NewSession(self._graph._c_graph, opts)
634 # pylint: enable=protected-access
635 else:
InternalError: Failed to create session.
The solution


found that GPU memory has been occupied by other programs.
try to close these programs, then reruns the code (no need to restart kernel) and find the problem solved!